# HG changeset patch # User ht # Date 1178457757 -3600 # Node ID 1675d4eff896fb6ec12809869b49c3f4f8d502c3 # Parent 78b62941da11f80a3b498249ea7c691236922e6c *** empty log message *** diff -r 78b62941da11 -r 1675d4eff896 mail-from-markup.el --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mail-from-markup.el Sun May 06 14:22:37 2007 +0100 @@ -0,0 +1,19 @@ +;;; Edit and load to send mail as from ... +(setq mail-append-host "markup.co.uk") +(setq user-full-name "Henry S. Thompson") +(setq user-mail-address "ht@markup.co.uk") +(setq mail-host-address "markup.co.uk") +(setq mail-signature-file "~/.sig.markup") +(defun system-name () "gregory") + +;; 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 "markup.co.uk") +(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 diff -r 78b62941da11 -r 1675d4eff896 mail-from.el --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mail-from.el Sun May 06 14:22:37 2007 +0100 @@ -0,0 +1,19 @@ +;;; 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