diff options
author | Amin Bandali <aminb@gnu.org> | 2018-06-19 21:09:40 -0400 |
---|---|---|
committer | Amin Bandali <aminb@gnu.org> | 2018-06-19 21:09:40 -0400 |
commit | 7a8b023b7ffbe50e651c2af50753b56da2249188 (patch) | |
tree | 869069a3593da9e17d16f3be10e640aa61aa5c46 | |
parent | 4aaf6f7ad3a70c23b86fef1b15eb2f3a5967945b (diff) | |
download | configs-7a8b023b7ffbe50e651c2af50753b56da2249188.tar.gz configs-7a8b023b7ffbe50e651c2af50753b56da2249188.tar.xz configs-7a8b023b7ffbe50e651c2af50753b56da2249188.zip |
[emacs] change message fqdn, remove webmasters tag as well when spam
Diffstat (limited to '')
-rw-r--r-- | init.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1254,7 +1254,7 @@ Emacs package that displays available keybindings in popup message-send-mail-function 'message-send-mail-with-sendmail message-sendmail-envelope-from 'header message-directory "drafts" - message-user-fqdn "aminb.org") + message-user-fqdn "fencepost.gnu.org") (add-hook 'message-mode-hook (lambda () (setq fill-column 65 message-fill-column 65))) @@ -1336,13 +1336,13 @@ Emacs package that displays available keybindings in popup ("S" . (lambda () "Mark message as spam" (interactive) - (notmuch-search-tag '("-unread" "-inbox" "+spam")) + (notmuch-search-tag '("-unread" "-inbox" "-webmasters" "+spam")) (notmuch-search-archive-thread)))) (:map notmuch-tree-mode-map ; TODO: additional bindings ("S" . (lambda () "Mark message as spam" (interactive) - (notmuch-tree-tag '("-unread" "-inbox" "+spam")) + (notmuch-tree-tag '("-unread" "-inbox" "-webmasters" "+spam")) (notmuch-tree-archive-thread)))) ) |