From 8a0cddac7c7b78039d73e78f730d93700c68cf55 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 21 Jun 2023 22:38:50 -0700 Subject: [oni-sendmail] Split my config to send email into separate package I haven't been using Gnus for a while and have been using notmuch instead. Having my email sending settings be a part of the gnus configuration makes it impossible to send email without loading gnus. --- oni-sendmail.el | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 oni-sendmail.el (limited to 'oni-sendmail.el') diff --git a/oni-sendmail.el b/oni-sendmail.el new file mode 100644 index 0000000..d45f1d7 --- /dev/null +++ b/oni-sendmail.el @@ -0,0 +1,38 @@ +;;; oni-sendmail.el --- Configuration for sending mail -*- lexical-binding: t; -*- + +;; Copyright (C) 2023 Tom Willemse + +;; Author: Tom Willemse +;; Keywords: local + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; Configuration for sending mail through Emacs. + +;;; Code: + +(require 'message) +(require 'sendmail) + +(setq send-mail-function 'send-mail-send-it + message-send-mail-function 'message-send-mail-with-sendmail + sendmail-program "msmtp" + mail-envelope-from 'header + message-sendmail-envelope-from 'header + mail-specify-envelope-from t) + +(provide 'oni-sendmail) +;;; oni-sendmail.el ends here -- cgit v1.2.3-54-g00ecf