Tweak Gnus setup.
[~bandali/configs] / .emacs.d / lisp / bandali-message.el
CommitLineData
4c05c418
AB
1;;; bandali-message.el --- bandali's message.el setup -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2018-2020 Amin Bandali
4
5;; Author: Amin Bandali <bandali@gnu.org>
6;; Keywords: mail, news
7
8;; This program is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or
11;; (at your option) any later version.
12
13;; This program is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with this program. If not, see <https://www.gnu.org/licenses/>.
20
21;;; Commentary:
22
23;; My setup for message.el.
24
25;;; Code:
26
c84be134
AB
27(with-eval-after-load 'message
28 ;; :bind (:map message-mode-map ("<C-return>" . b/insert-asterism))
2087ae39
AB
29 ;; redefine for a simplified In-Reply-To header
30 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
31 (defun message-make-in-reply-to ()
32 "Return the In-Reply-To header for this message."
33 (when message-reply-headers
34 (let ((from (mail-header-from message-reply-headers))
35 (msg-id (mail-header-id message-reply-headers)))
36 (when from
37 msg-id))))
38
39 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
40 (defconst message-cite-style-bandali
41 '((message-cite-function 'message-cite-original)
42 (message-citation-line-function 'message-insert-formatted-citation-line)
43 (message-cite-reply-position 'traditional)
44 (message-yank-prefix "> ")
45 (message-yank-cited-prefix ">")
46 (message-yank-empty-prefix ">")
47 (message-citation-line-format
48 (if b/message-cite-say-hi
49 (concat "Hi %F,\n\n" b/message-cite-style-format)
50 b/message-cite-style-format)))
51 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
c84be134
AB
52 (csetq
53 message-elide-ellipsis "[...]\n"
54 ;; message-cite-style 'message-cite-style-bandali
8486a0d6
AB
55 message-citation-line-format "%N writes:\n"
56 message-citation-line-function 'message-insert-formatted-citation-line
57 message-kill-buffer-on-exit t
58 message-send-mail-function 'message-send-mail-with-sendmail
59 message-sendmail-envelope-from 'header
60 message-subscribed-address-functions
61 '(gnus-find-subscribed-addresses)
62 message-dont-reply-to-names
c84be134 63 "\\(\\(amin@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|bandali@fsf\\.org\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\|amin\\.bandali@savoirfairelinux\\.com\\)")
2087ae39 64 ;; (require 'company-ebdb)
c84be134
AB
65 ;; (custom-set-faces
66 ;; '(message-header-subject
67 ;; ((t (:foreground "#111" :weight semi-bold))))
68 ;; '(message-header-to
69 ;; ((t (:foreground "#111" :weight normal))))
70 ;; '(message-header-cc
71 ;; ((t (:foreground "#333" :weight normal))))
72
73 ;; footnote
74 (with-eval-after-load 'footnote
75 ;; (csetq footnote-start-tag ""
76 ;; footnote-end-tag ""
77 ;; footnote-style 'unicode)
78 (when (featurep 'which-key)
79 (which-key-add-major-mode-key-based-replacements 'message-mode
80 "C-c f n" "footnote")))
81
82 ;; orgalist
83 (add-hook 'message-mode-hook
84 (lambda ()
85 ;; work around incompatibility between
86 ;; orgalist and yasnippet
87 (yas-minor-mode -1)
88 (orgalist-mode 1)
89 (yas-minor-mode 1)))
90
23eb0d7a
AB
91 ;; custom newline & reformat function
92 (defun b/message-newline-or-asterism (arg)
93 "Create newlines per my liking or insert asterism if ARG is
94non-nil."
95 (interactive "P")
96 (if arg
97 (b/insert-asterism)
98 (progn
99 (beginning-of-line)
100 (delete-region (point) (line-end-position))
101 (newline)
102 (open-line 1))))
103 (define-key message-mode-map
104 (kbd "M-RET") #'b/message-newline-or-asterism)
105
c84be134
AB
106 ;; local key bindings
107 (defvar b/footnote-prefix-map)
108 (define-prefix-command 'b/footnote-prefix-map)
109 (define-key message-mode-map (kbd "C-c f n")
110 'b/footnote-prefix-map)
111 (define-key b/footnote-prefix-map (kbd "a")
112 #'footnote-add-footnote)
113 (define-key b/footnote-prefix-map (kbd "b")
114 #'footnote-back-to-message)
115 (define-key b/footnote-prefix-map (kbd "c")
116 #'footnote-cycle-style)
117 (define-key b/footnote-prefix-map (kbd "d")
118 #'footnote-delete-footnote)
119 (define-key b/footnote-prefix-map (kbd "g")
120 #'footnote-goto-footnote)
121 (define-key b/footnote-prefix-map (kbd "r")
122 #'footnote-renumber-footnotes)
123 (define-key b/footnote-prefix-map (kbd "s")
124 #'footnote-set-style))
125;; hooks
126;; (add-hook 'message-setup-hook #'mml-secure-message-sign-pgpmime)
127(add-hook 'message-mode-hook #'flyspell-mode)
128(add-hook 'message-mode-hook
129 (lambda ()
130 ;; (setq-local fill-column b/fill-column
131 ;; message-fill-column b/fill-column)
132 (eval-when-compile (defvar company-idle-delay))
133 (make-local-variable 'company-idle-delay)
134 (setq company-idle-delay 0.2)))
5df34463
AB
135(add-hook 'message-mode-hook
136 (lambda ()
137 (local-unset-key (kbd "C-c C-s"))))
2087ae39 138
927b50b7
AB
139;; (with-eval-after-load 'message-x
140;; (csetq
141;; message-x-completion-alist
142;; '(("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:"
143;; . gnus-harvest-find-address)
144;; ((if
145;; (boundp
146;; (quote message-newgroups-header-regexp))
147;; message-newgroups-header-regexp message-newsgroups-header-regexp)
148;; . message-expand-group))))
149
150;; (require 'gnus-harvest)
151;; (if (featurep 'message-x)
152;; (gnus-harvest-install 'message-x)
153;; (gnus-harvest-install))
1eb20313 154
2087ae39 155(provide 'bandali-message)
4c05c418 156;;; bandali-message.el ends here