Mercurial > hg > xemacs
view mail-from-markup.el @ 68:4ceed38beaa4
Vba macros for Outlook to save appointments as sent by diary.el
| author | Henry Thompson <ht@markup.co.uk> |
|---|---|
| date | Mon, 09 Jun 2025 12:21:43 +0100 |
| parents | 1675d4eff896 |
| children |
line wrap: on
line source
;;; 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
