-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwl
More file actions
40 lines (35 loc) · 1.38 KB
/
wl
File metadata and controls
40 lines (35 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
;; IMAP, gmail:
(setq elmo-imap4-default-server "imap.gmail.com"
elmo-imap4-default-user "andreas.marschke@gmail.com"
elmo-imap4-default-authenticate-type 'clear
elmo-imap4-default-port '993
elmo-imap4-default-stream-type 'ssl
;;for non ascii-characters in folder-names
elmo-imap4-use-modified-utf7 t)
;; SMTP
(setq wl-smtp-connection-type 'starttls
wl-smtp-posting-port 587
wl-smtp-authenticate-type "plain"
wl-smtp-posting-user "andreas.marschke"
wl-smtp-posting-server "smtp.gmail.com"
wl-local-domain "gmail.com"
wl-message-id-domain "smtp.gmail.com")
(setq wl-from "Andreas Marschke <andreas.marschke@gmail.com>"
;;all system folders (draft, trash, spam, etc) are placed in the
;;[Gmail]-folder, except inbox. "%" means it's an IMAP-folder
wl-default-folder "%inbox"
wl-draft-folder "%[Gmail]/Drafts"
wl-trash-folder "%[Gmail]/Trash"
wl-fcc "%[Gmail]/Sent"
;; mark sent messages as read (sent messages get sent back to you and
;; placed in the folder specified by wl-fcc)
wl-fcc-force-as-read t
;;for when auto-compleating foldernames
wl-default-spec "%")
(setq wl-message-ignored-field-list (quote ("^.*:")))
(setq wl-message-visible-field-list (quote ("^From:"
"^Subject:"
"^Cc:"
"^To:"
"^Date:"
)))