Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
From: Slackat <slackrat4Q@azurservers.com>
Subject: Re: Learning gnus for email only
Date: Tue, 02 Jan 2007 07:48:23 +0100	[thread overview]
Message-ID: <87lkklq5zc.fsf@azurservers.com> (raw)
In-Reply-To: <1167716422.116591.181630@i12g2000cwa.googlegroups.com>

"harel barzilai" <barzilai@gmail.com> writes:

> Thanks again for the updated gnus tutorial web page...I think I have
> most of the "Set-up"
> figured out except the mail source..and the tutorial has a broken link
> for more information
> on mail sources, unfortunately..
>
> The tutorial in http://my.gnus.org/tutorial/Mail.html#Mail I was able
> to follow until then, and so far I've put in my .gnus.el the following
>
>  (setq user-mail-address "usera@harelbarzilai.org")
> (setq user-full-name "Harel's Test Account")
>
> (add-to-list 'gnus-secondary-select-methods '(nnmaildir ""))
>
> (setq smtpmail-local-domain "harelbarzilai.org")
> (setq smtpmail-sendto-domain "harelbarzilai.org")
> (setq smtpmail-debug-info t) ; only to debug problems
>
> though the internal "CCC Anyone out there who can give more info?"
> comment next to listing "nnmaildir" , made by the author(s) of the
> Tutorial has me a tad worried.. The broken link is to "See Mail Source
> Specifiers (Gnus)," which points at
> http://my.gnus.org/gnus/Mail-Source-Specifiers.html#Mail-Source-Specifiers"
> which doesn't exist. Perhaps I should notify the tutorial authors? In
> any case, the only examples they give for mail-sources are of the form,
>
>  (setq mail-sources '((pop :server "frumple" :user "jrl")))
>
> Let me preface my next and last question by saying: I must confess I've
> been living in a cave as far as pop servers..have just ssh'd into shell
> and used "Mail" or rmail since 1989..emacs fan
> since then (well rmail  plus university's preinstalled software, plus
> now gmail) but never
> ever used outlook eudora etc,  only shell or emacs commands..now my
> question: somewhere in its docs dreamhost tells me "mail.mydomain.com"
> (or in this case "mail.harelbarzilai.org") is the pop mail server..but
> dont' I somehow need to tell gnus to go looking at ~/Maildir/ for mail?
> I'm running gnus from inside emacs, of course and emacs from the shell,
> and the shell I'm accessing via ssh via a simple text terminal
> program..I know the web browser says it can't find
> mail.harelbarzilai.org....so pardon me if I'm confused
> but since dreamhost (though ways I don't know and have never needed to
> know) have all my
> incoming mail delivered to /home/username/Maildir/ also known as
> ~/Maildir/  , for
> each "user" I create for my account, don't I need to just tell gnus to
> go look at ~/Maildir?
> I think by default it looks in (and/or creates) ~/Mail/ ...how can I
> change this to ~/Maildir?
>
> Since the link is broken and I don't know elisp formatting I'd need the
> exact line to copy
> paste into .gnus.el instead of the above "frumple" example... Sorry if
> I'm missing something
> but I've read the my.gnus.org tutorial chapter 7 entirely though
> including 7.2 (and
> earlier portions which gave user-mail-address etc) and need this last
> piece to finish
> the set-up of .gnus.el for reading email, it seems.
>
> Wishing everyone a safe and fulfilling 2007 :-)
>
> Harel

Personally I use fetchmail to bring in mail from pop servers

Basically I use my own azurservers.com for mail, but it's nice to
have backup facilities, so storing it in /root and ignoring the groans
from the system: '.fetchmailrc'

poll pop.MY_POP-SERVER.fr proto POP3 user 'william.henderson' password 'PASSWORD' is 'billhenderson'  here
poll pop.MY_POP-SERVER.fr proto POP3 user 'billhenderson'     password 'PASSWORD' is 'billhenderson'  here
poll pop.MY_POP-SERVER.fr proto POP3 user 'slackrat'          password 'PASSWORD' is 'slackrat'       here
poll pop.MY_POP-SERVER.fr proto POP3 user 'daveycrockett'     password 'PASSWORD' is 'daveycrockett'  here
poll pop.MY_POP-SERVER.fr proto POP3 user 'joannevalliere'    password 'PASSWORD' is 'joannevalliere' here
poll pop.MY_POP-SERVER.fr proto POP3 user 'lysrossitier'      password 'PASSWORD' is 'lysrossitier'   here
poll pop.MY_POP-SERVER.fr proto POP3 user 'meggydupres'       password 'PASSWORD' is 'meggydupres'    here
poll pop.MY_POP-SERVER.fr proto POP3 user 'avatarazur'        password 'PASSWORD' is 'avatarazur'     here


## NOTHER-POP-SERVER.COM
#poll mail.NUTHER_POP-SERVER.com  proto POP3 user 'slackrat'          password 'PASSWORD' is 'inconnu'  here
#poll mail.NUTHER_POP-SERVER.com  proto POP3 user 'henderson_we'      password 'PASSWORD' is 'inconnu'  here
#poll mail.NUTHER_POP-SERVER.com  proto POP3 user 'daveycrockett'     password 'PASSWORD' is 'inconnu'  here

=================

/etc.rc.d/rc.local starts fetchmail

# Bring in the Mail
echo "  "
echo INFORMATION: Starting FetchMail
/usr/bin/fetchmail -f /root/.fetchmailrc -d 600 -K

========================

/home/inconnu/.gnus or .emacs since I'm not fussy

;; WHERE  ARE THE INBOUND MESSAGES STORED AND WHERE SHOULD GNUS PUT THEM
;; #####################################################################
(setq nnmail-spool-file '(  
   (file :path "/var/spool/mail/inconnu")  
   (directory :path "/home/inconnu/Mail")  
)


-- 
Slackrat
AKA Bill Henderson
[No _4Q_ for direct email]
emacs/gnus config [http://azurservers.com/gnus]

  reply	other threads:[~2007-01-02  6:48 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1167115181.099537.35020@a3g2000cwd.googlegroups.com>
     [not found] ` <85vejxndbo.fsf@robf.de>
2006-12-29  5:20   ` Emacs Mailer Options harel barzilai
2006-12-29  9:08     ` Reiner Steib
2006-12-29 12:13       ` Slackat
2006-12-29 16:38     ` Giorgos Keramidas
2006-12-31  6:55       ` harel barzilai
2007-01-01  7:14 ` Learning gnus for email only (Was: Re: Emacs Mailer Options) harel barzilai
2007-01-01 17:28   ` Learning gnus for email only Reiner Steib
2007-01-02  4:41     ` harel barzilai
2007-01-02  5:40     ` harel barzilai
2007-01-02  6:48       ` Slackat [this message]
2007-01-02 20:36       ` harel barzilai
2007-01-02 22:51         ` Reiner Steib
2007-01-05  2:35           ` harel barzilai
2007-01-05 10:54             ` Springfield
2007-01-06  5:22               ` harel barzilai
2007-01-06 13:09                 ` Reiner Steib
2007-01-06 13:40                   ` Slackrat
2007-01-06 14:20                     ` Reiner Steib
2007-01-05 12:23             ` Reiner Steib
     [not found] ` <1167547830.044677.30770@v33g2000cwv.googlegroups.com>
     [not found]   ` <1168062671.653432.216140@i15g2000cwa.googlegroups.com>
     [not found]     ` <87k5zzyhfy.fsf@kobe.laptop>
2007-01-12  5:53       ` Emacs Mailer Options harel barzilai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87lkklq5zc.fsf@azurservers.com \
    --to=slackrat4q@azurservers.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).