diff options
Diffstat (limited to '.gnus')
| -rw-r--r-- | .gnus | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -40,7 +40,18 @@ ((gnus-seconds-year) . "%b %d") (t - . "%F"))) + . "%F")) + ;; Add to the list of reply prefixes: + ;; - AW + ;; - no-break spaces + ;; - bug#NNN + ;; - [External] + message-subject-re-regexp (rx bol (+ (* space) + (or "re" "Re" "RE" + "aw" "Aw" "AW" + (seq "bug#" (+ digit)) + (seq "[" (+ word) "]")) + (? (* space) ":" (* space))))) (let* ((initials (mapconcat (lambda (s) (substring s 0 1)) (split-string user-full-name) |
