Emacs: Open claws-mail messages in mail-mode.

This commit is contained in:
tastytea 2020-01-26 21:46:17 +01:00
parent 8342589400
commit 5acc814905
1 changed files with 9 additions and 1 deletions

View File

@ -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