-
Notifications
You must be signed in to change notification settings - Fork 14
/
.mew.el
28 lines (23 loc) · 840 Bytes
/
.mew.el
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
(autoload 'mew "mew" nil t)
(autoload 'mew-send "mew" nil t)
(setq read-mail-command 'mew)
(autoload 'mew-user-agent-compose "mew" nil t)
(if (boundp 'mail-user-agent)
(setq mail-user-agent 'mew-user-agent))
(if (fboundp 'define-mail-user-agent)
(define-mail-user-agent
'mew-user-agent
'mew-user-agent-compose
'mew-draft-send-message
'mew-draft-kill
'mew-send-hook))
;ismail.ansari@citustech.com
(setq mew-name "Ismail Ansari")
(setq mew-user "ismail.ansari@citiustech.com")
(setq mew-mail-domain "secure.emailsrvr.com")
(setq mew-smtp-user "ismail.ansari@citiustech.com")
(setq mew-smtp-server "secure.emailsrvr.com")
(setq mew-proto "%")
(setq mew-imap-user "ismail.ansari@citiustech.com")
(setq mew-imap-server "secure.emailsrvr.com")
(setq mew-use-cached-passwd t)