home · contact · privacy
Set up mail sending via emacs.
[config] / buster / home_files / user_eeepc / .emacs.d / init.el
index 81359f971de418985d91c35160c4c7b5e150a978..389126ccc5717b60aa51a2c8d307631716389894 100644 (file)
 
 
 
+;; mail setup
+;; ==========
+
+(setq send-mail-function 'smtpmail-send-it)
+(setq smtpmail-smtp-server "core.plomlompom.com")
+(setq smtpmail-smtp-service 465)
+(setq smtpmail-stream-type 'ssl)
+(setq smtpmail-smtp-user "plom")
+(setq mail-host-address "plomlompom.com")
+
+;; otherwise notmuch becomes extremely slow in some cases
+(setq-default notmuch-show-indent-content nil)
+
+
 ;; org mode
 ;; ========