Mercurial > hg > xemacs
view mail-from.el @ 75:0508101db40f
get new-white working (on maritain only??
| author | Henry S Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Mon, 09 Jun 2025 13:40:01 +0100 |
| parents | 1675d4eff896 |
| children |
line wrap: on
line source
;;; Edit and load to send mail as from ... (setq mail-append-host "hst.name") (setq user-full-name "Henry S. Thompson") (setq user-mail-address "hst@hst.name") (setq mail-host-address "hst.name") (setq mail-signature-file "~/.sig.pers") (defun system-name () "francis.hst.name") ;; sending mail on the road (setq send-mail-function 'smtpmail-send-it) (setq message-send-mail-function 'smtpmail-send-it) (setq smtpmail-default-smtp-server "localhost") (setq smtpmail-smtp-service "smtp") (setq smtpmail-local-domain "hst.name") (setq smtpmail-debug-info t) (load "smtpmail" nil t) (setq smtpmail-code-conv-from nil) ;; tunnel: ssh -L 25:p15135390.pureserver.info:25 markup.co.uk
