diff options
| author | Tomi Ollila <tomi.ollila@iki.fi> | 2015-11-02 17:13:10 +0200 |
|---|---|---|
| committer | Tomi Ollila <tomi.ollila@iki.fi> | 2015-11-02 17:13:10 +0200 |
| commit | 792fd375db0281ef388914709f68cfc2a2743610 (patch) | |
| tree | 5e2f01b82ee6803038ed6ef7e002ddb2ef0bca95 | |
| parent | 3400946503bcb3831dd0230c97f7a732763b3db1 (diff) | |
Add smtpmail
| -rw-r--r-- | emacstips.mdwn | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn index 91c1cb0..84d6161 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -274,6 +274,41 @@ With that in place, you need a `.msmtprc` with the accounts configured for the domains you want to send out using specific SMTP servers and the rest will go to the default account. +## sending mail using smtpmail + +another option is to use remov + +<!-- By default message mode will use the system `sendmail` command to send +mail. However, on a typical desktop machine there may not be local SMTP +daemon running (nor it is configured to send mail outside of the system). --> + +If setting up local `sendmail` or `msmtp` is not feasible or desirable, +the Emacs `smtpmail` package can be used to send email by talking to remote +SMTP server via TCP connection. It is pretty easy to configure: + +1. `M-x customize-group smtpmail` + + as as minimum, 'Smtpmail Smtp Server' needs to be set. + + - then continue with `M-x load-library message` and + `M-x customize-variable message-send-mail-function` + -- choose `message-smtpmail-send-it` for that. + +1. Set some variables in .emacs or in [notmuch init file](/notmuch-emacs#notmuch_init_file) + + (setq smtpmail-smtp-server "smtp.server.tld" ;; <-- edit this !!! + ;; smtpmail-smtp-service 25 ;; 25 is default -- uncomment and edit if needed + ;; smtpmail-stream-type 'starttls + ;; smtpmail-debug-info t + ;; smtpmail-debug-verb t + message-send-mail-function 'message-smtpmail-send-it) + +More information for smtpmail is available: + +* In Emacs: `M-x info-display-manual smtpmail` +* At http://www.emacswiki.org/emacs/SendingMail + + ## <span id="address_completion">Address completion when composing</span> There are currently three solutions to this: |
