10
|
1 ;;; Edit and load to send mail as from ...
|
|
2 (setq mail-append-host "hst.name")
|
|
3 (setq user-full-name "Henry S. Thompson")
|
|
4 (setq user-mail-address "hst@hst.name")
|
|
5 (setq mail-host-address "hst.name")
|
|
6 (setq mail-signature-file "~/.sig.pers")
|
|
7 (defun system-name () "francis.hst.name")
|
|
8
|
|
9 ;; sending mail on the road
|
|
10 (setq send-mail-function 'smtpmail-send-it)
|
|
11 (setq message-send-mail-function 'smtpmail-send-it)
|
|
12 (setq smtpmail-default-smtp-server "localhost")
|
|
13 (setq smtpmail-smtp-service "smtp")
|
|
14 (setq smtpmail-local-domain "hst.name")
|
|
15 (setq smtpmail-debug-info t)
|
|
16 (load "smtpmail" nil t)
|
|
17 (setq smtpmail-code-conv-from nil)
|
|
18
|
|
19 ;; tunnel: ssh -L 25:p15135390.pureserver.info:25 markup.co.uk
|