summaryrefslogtreecommitdiff
path: root/.gnus
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2024-12-23 11:14:16 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2024-12-23 11:16:13 +0100
commit155e13dd7d4b7b321818ac737d8f4943aef2c371 (patch)
tree0ceeac677fbac03f125fa763cd8bad1fbdd2fc1b /.gnus
parent6a2d7479e360544c982957594604b9167ac5aeee (diff)
downloaddotfiles-155e13dd7d4b7b321818ac737d8f4943aef2c371.tar.xz
Dust off .gnus commentary
Make it outline-friendlier, wordsmith commentary.
Diffstat (limited to '.gnus')
-rw-r--r--.gnus22
1 files changed, 13 insertions, 9 deletions
diff --git a/.gnus b/.gnus
index b978dc8..2c9c122 100644
--- a/.gnus
+++ b/.gnus
@@ -1,12 +1,16 @@
-;; -*- lexical-binding: t -*-
-;; user-full-name: from /etc/passwd, chfn(1).
-;; user-mail-address: from EMAIL variable, ~/.profile & ~/.xsessionrc.
+;;; -*- lexical-binding: t -*-
-;; In ~/.authinfo.gpg:
+;;; Externalities.
+
+;; user-full-name from /etc/passwd; set with chfn(1).
+;; user-mail-address from EMAIL variable; set with ~/.profile,
+;; ~/.xsessionrc, DE's convention-du-jour.
+
+;; ~/.authinfo.gpg:
;; machine imap.gmail.com login LOGIN password PASSWORD port 993
;; machine smtp.gmail.com login LOGIN password PASSWORD port 587
-;; machine irc.freenode.net login LOGIN password PASSWORD
-
+
+;;; Þe Olde Setq.
(setq gnus-select-method
'(nnimap "gmail"
(nnimap-address "imap.gmail.com")
@@ -109,9 +113,9 @@
;;
;; The only way I can find to tell the Gnus summary code to
;; canonicalize all that cruft away is by tweaking this regexp, but
-;; setting its global value causes message mode to elide stuff it
-;; shouldn't. Therefore, chase down the best Gnus hook for the job,
-;; and set the regexp locally.
+;; setting its global value causes message-mode to elide stuff it
+;; shouldn't when crafting subjects. Therefore, chase down the best
+;; Gnus hook for the job, and set the regexp locally.
(defun my/gnus-reply-prefixes ()
(mapcan (lambda (prefix) (list prefix (upcase prefix) (capitalize prefix)))
'("re" "aw" "sv" "fw" "fwd")))