Commit | Line | Data |
---|---|---|
4c05c418 AB |
1 | ;;; bandali-message.el --- bandali's message.el setup -*- lexical-binding: t; -*- |
2 | ||
78d731e1 | 3 | ;; Copyright (C) 2018-2022 Amin Bandali |
4c05c418 AB |
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 ">") | |
f1b31451 AB |
47 | (message-citation-line-format b/message-cite-style-format)) |
48 | "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.") | |
78d731e1 | 49 | (setq |
c84be134 AB |
50 | message-elide-ellipsis "[...]\n" |
51 | ;; message-cite-style 'message-cite-style-bandali | |
8486a0d6 AB |
52 | message-citation-line-format "%N writes:\n" |
53 | message-citation-line-function 'message-insert-formatted-citation-line | |
5efecfcd | 54 | message-confirm-send t |
1bc92270 AB |
55 | message-fill-column 70 |
56 | message-forward-as-mime t | |
8486a0d6 | 57 | message-kill-buffer-on-exit t |
a220fb5b | 58 | message-send-mail-function #'smtpmail-send-it |
8486a0d6 AB |
59 | message-subscribed-address-functions |
60 | '(gnus-find-subscribed-addresses) | |
61 | message-dont-reply-to-names | |
f1b31451 | 62 | "\\(\\(bandali@kelar\\.org\\)\\|\\(amin@shemshak\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\|amin\\.bandali@\\(canonical\\|savoirfairelinux\\)\\.com\\)") |
c84be134 AB |
63 | ;; (custom-set-faces |
64 | ;; '(message-header-subject | |
65 | ;; ((t (:foreground "#111" :weight semi-bold)))) | |
66 | ;; '(message-header-to | |
67 | ;; ((t (:foreground "#111" :weight normal)))) | |
68 | ;; '(message-header-cc | |
69 | ;; ((t (:foreground "#333" :weight normal)))) | |
70 | ||
23eb0d7a AB |
71 | ;; custom newline & reformat function |
72 | (defun b/message-newline-or-asterism (arg) | |
73 | "Create newlines per my liking or insert asterism if ARG is | |
74 | non-nil." | |
75 | (interactive "P") | |
76 | (if arg | |
77 | (b/insert-asterism) | |
78 | (progn | |
79 | (beginning-of-line) | |
80 | (delete-region (point) (line-end-position)) | |
81 | (newline) | |
82 | (open-line 1)))) | |
83 | (define-key message-mode-map | |
84 | (kbd "M-RET") #'b/message-newline-or-asterism) | |
85 | ||
c84be134 | 86 | ;; local key bindings |
f1b31451 AB |
87 | ;; (define-key message-mode-map |
88 | ;; [remap next-line] #'mail-abbrev-next-line) | |
89 | ;; (define-key message-mode-map | |
90 | ;; [remap end-of-buffer] #'mail-abbrev-end-of-buffer) | |
91 | ) | |
c84be134 AB |
92 | ;; hooks |
93 | ;; (add-hook 'message-setup-hook #'mml-secure-message-sign-pgpmime) | |
94 | (add-hook 'message-mode-hook #'flyspell-mode) | |
5df34463 AB |
95 | (add-hook 'message-mode-hook |
96 | (lambda () | |
97 | (local-unset-key (kbd "C-c C-s")))) | |
2087ae39 AB |
98 | |
99 | (provide 'bandali-message) | |
4c05c418 | 100 | ;;; bandali-message.el ends here |