From 5acc814905df253adc8b25238f539b6560b42870 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 26 Jan 2020 21:46:17 +0100 Subject: [PATCH] Emacs: Open claws-mail messages in mail-mode. --- init.d/text/misc.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/init.d/text/misc.el b/init.d/text/misc.el index a1907e2..9e2e9cc 100644 --- a/init.d/text/misc.el +++ b/init.d/text/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-12-26T20:30:46+0100> +;; Time-stamp: <2020-01-26T21:44:47+0100> ;;; Commentary: @@ -148,5 +148,13 @@ ) ) +(use-package sendmail + :mode + ("/.claws-mail/tmp/tmpmsg\\." . mail-mode) ; claws-mail messages. + + :hook + (mail-mode . (lambda () (set-fill-column 72))) ; Leave space for quoting. + ) + (provide 'text/misc) ;;; misc.el ends here