]> git.earman.xyz Git - emacsinit.git/commitdiff
More settings for smtp
authorrush <rush@Thonkbook.com>
Thu, 12 Mar 2026 10:42:27 +0000 (06:42 -0400)
committerrush <rush@Thonkbook.com>
Thu, 12 Mar 2026 10:42:27 +0000 (06:42 -0400)
re/re-mu4e.el

index af4a7c9d5f719059c1e1d0cb77a7c22d95a2d0ce..be749fb1a3d2a1d51ac58928401ef8507d1aca66 100644 (file)
@@ -9,6 +9,9 @@
   (setq mu4e-get-mail-command "mbsync -a"
        mu4e-update-interval (* 10 60)
        mu4e-change-filenames-when-moving t
+       mu4e-use-fancy-chars t
+       mu4e-attachment-dir "~/downloads"
+       mu4e-compose-reply-to-address "iv@earman.xyz"
        mu4e-maildir "~/mail"
        mu4e-drafts-folder "/iv/Drafts"
        mu4e-sent-folder "/iv/Sent"
                                 (:maildir "/iv/Trash" :key ?t)
                                 (:maildir "/iv/Drafts" :key ?d))))
 
+(setq mail-user-agent 'mu4e
+      message-send-mail-function 'smtpmail-send-it
+      message-citation-line-format "Quoth %f :\n"
+      smtpmail-default-smtp-server "mail.earman.xyz"
+      smtpmail-smtp-server "mail.earman.xyz"
+      smtpmail-smtp-service 587
+      smtpmail-stream-type 'starttls
+      smtpmail-local-domain "earman.xyz"
+      smtpmail-queue-mail nil
+      smtpmail-queue-dir "~/mail/iv/outbox/cur")
+
+(setq user-mail-address "iv@earman.xyz"
+      user-full-name "Rush N. Earman IV"
+      message-signature "-- \nRush Earman IV, PE"
+      message-kill-buffer-on-exit t)
+
 (provide 're-mu4e)
 ;;; re-mu4e.el ends here