Access mail through local IMAP server
I use offlineimap. * emacs.d/mail.org: Local IMAP server for mail.master
parent
5bc644d18c
commit
fed57789da
|
@ -60,9 +60,9 @@ necessarily mean that I'm speaking on behalf of the GNU Project.
|
||||||
|
|
||||||
GNU hosts a POP server on =fencepost=. I have a =fetchmail= cronjob running
|
GNU hosts a POP server on =fencepost=. I have a =fetchmail= cronjob running
|
||||||
on my server that periodically fetches mail from fencepost onto my own
|
on my server that periodically fetches mail from fencepost onto my own
|
||||||
mailserver, to which I connect via IMAP; all my mail is then conveniently
|
mailserver, and an =offlineimap= job that copies all messages to my local
|
||||||
mixed into one account, and all GNU mail is also run through my Sieve rules
|
box; all my mail is conveniently mixed into one account, and all GNU mail is
|
||||||
and any other scripts.
|
also run through my Sieve rules and any other scripts.
|
||||||
|
|
||||||
For sending mail, privacy is an important consideration: I really do not
|
For sending mail, privacy is an important consideration: I really do not
|
||||||
want my home IP Address and hostname appearing in the header of every e-mail
|
want my home IP Address and hostname appearing in the header of every e-mail
|
||||||
|
@ -89,10 +89,11 @@ can yield a good result, but if I forget to do so, that's a problem.]
|
||||||
smtpmail-smtp-server "localhost" ; tunnel
|
smtpmail-smtp-server "localhost" ; tunnel
|
||||||
smtpmail-smtp-service 5587
|
smtpmail-smtp-service 5587
|
||||||
|
|
||||||
gnus-select-method '(nnimap "mail.mikegerwitz.com"
|
gnus-select-method '(nnimap "localhost"
|
||||||
(nnimap-inbox "INBOX")
|
(nnimap-inbox "INBOX")
|
||||||
(nnimap-record-commands t)
|
(nnimap-record-commands t)
|
||||||
(nnimap-stream tls))))
|
(nnimap-stream network)
|
||||||
|
(nnimap-authenticator login))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* <<<Gnus>>>
|
* <<<Gnus>>>
|
||||||
|
|
Loading…
Reference in New Issue