2013年2月15日 星期五

在emacs上用gnus收信、讀新聞群組的~/.gnus.el設定

參 http://whereofwecannotspeak.wordpress.com/2009/07/15/getting-gnus-to-read-mail-over-imap/

http://srlog.blogspot.com/2012/04/yahoo-mail-free-imap.html
_________________________________________________
(setq user-mail-address "user@yahoo.com.tw")

(setq user-full-name "name")

;; GMANE is about the only free news server I've seen.
;; I set it to my primary server so I can read a few Free software mailing lists.
(setq gnus-select-method
     '(nntp "news.gmane.org"))
;; Mostly, though, I just want to read my mail.
;; This setup uses a standard SSL-based connection to read the mail for the accounts I have through
;; UC Berkeley:
(setq gnus-secondary-select-methods
      '((nnimap "yahoo mail" ; primary email
        (nnimap-address "imap.mail.yahoo.com")
        (nnimap-server-port 993)
        (nnimap-authenticator login)
        (nnimap-expunge-on-close 'never)
        (nnimap-stream ssl))
;     (nnimap "ocf" ; secondary account
;         (nnimap-address "mail.ocf.berkeley.edu")
;         (nnimap-server-port 993)
;         (nnimap-authenticator login)
;         (nnimap-expunge-on-close 'never)
;         (nnimap-stream ssl))
)
)

沒有留言:

張貼留言