diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-13 15:55:40 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-13 15:55:40 -0400 |
commit | 262483ba87fa38bdce7e971a9040096c1ae12d94 (patch) | |
tree | 4dfbac3473da322c0e9867f1d6307fa27ca861e7 | |
parent | 06ee5a0033010d8ebac2a50dcb9eb1e666879c7b (diff) | |
download | configs-262483ba87fa38bdce7e971a9040096c1ae12d94.tar.gz configs-262483ba87fa38bdce7e971a9040096c1ae12d94.tar.xz configs-262483ba87fa38bdce7e971a9040096c1ae12d94.zip |
emacs: gnus: uw: only put INBOX-originated replies into Sent Items
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6d8d086..31b5158 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1650,7 +1650,9 @@ For disabling the behaviour for certain buffers and/or modes." ("gnu.*" (gcc-self . t)) ("gnu\\." - (subscribed . t))) + (subscribed . t)) + ("nnimap\\+uw:.*" + (gcc-self . t))) gnus-large-newsgroup 50 gnus-home-directory (no-littering-expand-var-file-name "gnus/") gnus-directory (concat gnus-home-directory "news/") @@ -1723,7 +1725,8 @@ For disabling the behaviour for certain buffers and/or modes." (body "Added to 2019supporters.html.\n\nMoving to campaigns.\n\n-amin\n") (eval (setq a/message-cite-say-hi nil))) ("nnimap\\+uw:.*" - (address "abandali@uwaterloo.ca") + (address "abandali@uwaterloo.ca")) + ("nnimap\\+uw:INBOX" (gcc "\"nnimap+uw:Sent Items\"")) ("nnimap\\+csc:.*" (address "abandali@csclub.uwaterloo.ca") |