22
|
1 ;;; Edit and load to send mail as from ...
|
|
2 (setq mail-append-host "home.hst.name")
|
|
3 (setq user-full-name "Henry S. Thompson")
|
|
4 (setq user-mail-address "ht@home.hst.name")
|
|
5 (setq mail-host-address "home.hst.name")
|
|
6 (setq mail-signature-file "/home/ht/.sig.pers")
|
|
7 (setq mail-signature t)
|
|
8 (setq message-signature-file "/home/ht/.sig.pers")
|
|
9 (setq message-signature t)
|
|
10 (defun system-name () "home.hst.name")
|
|
11
|
|
12 ;; sending mail on the road
|
|
13 ;(setq send-mail-function 'smtpmail-send-it)
|
|
14 ;(setq message-send-mail-function 'smtpmail-send-it)
|
|
15 ;(setq smtpmail-default-smtp-server "localhost")
|
|
16 ;(setq smtpmail-smtp-service "smtp")
|
|
17 ;(setq smtpmail-local-domain "home.hst.name")
|
|
18 (setq smtpmail-debug-info t)
|
|
19 (load "smtpmail" nil t)
|
|
20 (setq smtpmail-code-conv-from nil)
|
|
21
|
|
22 (provide 'mail-from-m)
|