diff options
Diffstat (limited to '.gnus')
| -rw-r--r-- | .gnus | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -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"))) |
