summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-11-09 20:25:56 +0000
committerjao <jao@gnu.org>2021-11-09 20:25:56 +0000
commit94142fbc1499a0526538ece4ea6566123929bbc4 (patch)
tree7e2ee912a0f9ff694831d9c979890b2262c325eb /email.org
parenta777ad484dbc5433dc862222cf92f2290a323b88 (diff)
downloadelibs-94142fbc1499a0526538ece4ea6566123929bbc4.tar.gz
elibs-94142fbc1499a0526538ece4ea6566123929bbc4.tar.bz2
email: opensmtpd works so well
Diffstat (limited to 'email.org')
-rw-r--r--email.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/email.org b/email.org
index 44f4627..1232bbd 100644
--- a/email.org
+++ b/email.org
@@ -179,6 +179,7 @@
(setq smtpmail-smtp-service 587))
(defun jao-sendmail-local ()
+ (setq send-mail-function 'sendmail-send-it)
(setq smtpmail-auth-supported nil) ;; (cram-md5 plain login)
(setq smtpmail-smtp-server "127.0.0.1")
(setq smtpmail-smtp-service 25))
@@ -190,7 +191,7 @@
message-sendmail-envelope-from 'header
mail-envelope-from 'header))
- (jao-sendmail-msmtp)
+ (jao-sendmail-local)
#+end_src
* mailcap
#+begin_src emacs-lisp