summary refs log tree commit diff stats
path: root/gnus.el
blob: b154944cf5b1ec6eb374d1412ec60a08953275ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
;;; gnus.el -*- lexical-binding: t; coding: utf-8-unix -*-

;; Author: Case Duckworth <acdw@acdw.net>
;; Created: Sometime during Covid-19, 2020
;; Keywords: configuration
;; URL: https://tildegit.org/acdw/emacs

;; This file is NOT part of GNU Emacs.

;;; License:
;; Everyone is permitted to do whatever with this software, without
;; limitation.  This software comes without any warranty whatsoever,
;; but with two pieces of advice:
;; - Don't hurt yourself.
;; - Make good choices.

;;; Code:

;;; Select Methods
(setq gnus-select-method '(nnnil ""))

(setq gnus-secondary-select-methods
      '((nnimap "fastmail.com"
                (nnimap-address "imap.fastmail.com")
                (nnimap-server-port 993)
                (nnimap-stream ssl)
                (nnir-search-engine imap))
        (nntp "news.tilde.club")
        (nntp "news.gwene.org")))

;;; Gnus cloud
(setq gnus-cloud-method "nnimap:fastmail.com"
      gnus-cloud-storage-method 'base64 ; Don't always have GPG or gzip
      )
(add-hook 'gnus-started-hook #'gnus-cloud-download-all-data)
(add-hook 'gnus-exit-gnus-hook #'gnus-cloud-upload-all-data)

;;; Gnus behavior options
(setq gnus-gcc-mark-as-read t
      message-signature (or (file-exists-p message-signature-file)
                            "~ acdw")
      gnus-save-newsrc-file nil
      gnus-read-newsrc-file nil
      gnus-interactive-exit nil
      gnus-use-cache t
      gnus-read-active-file 'some)

;; Keybindings
(define-key gnus-group-mode-map (kbd "q")
  (defun gnus-cloud-upload-and-bury-buffer ()
    (interactive)
    (gnus-cloud-upload-all-data)
    (bury-buffer)))
(define-key gnus-group-mode-map (kbd "Q") #'gnus-group-exit)
(define-key gnus-group-mode-map (kbd "C-q") #'gnus-group-quit)

;;; Other parameters
(setq gnus-parameters
      '(("nnimap\\+fastmail.com:.*"
         (display . 200)
         (expiry-wait . immediate)
         (expiry-target . "nnimap+fastmail.com:Archive"))))

;;; Gnus UI options
(setq gnus-thread-sort-functions '(gnus-thread-sort-by-most-recent-date
                                   (not gnus-thread-sort-by-number))
      gnus-use-cache t
      gnus-summary-thread-gathering-function #'gnus-gather-threads-by-subject
      gnus-thread-hide-subtree t
      gnus-thread-ignore-subject t
      gnus-html-frame-width fill-column)

(when window-system
  (setq gnus-sum-thread-tree-indent "  ")
  (setq gnus-sum-thread-tree-root "● ")
  (setq gnus-sum-thread-tree-false-root "○ ")
  (setq gnus-sum-thread-tree-single-indent "◎ ")
  (setq gnus-sum-thread-tree-vertical        "│")
  (setq gnus-sum-thread-tree-leaf-with-other "├─ ")
  (setq gnus-sum-thread-tree-single-leaf     "╰─ "))

(setq gnus-summary-line-format
      (concat
       "%0{%U%R%z%}"
       "%3{│%}" "%1{%d%}" "%3{│%}"      ; date
       "  "
       "%4{%-20,20f%}"                  ; name
       "  "
       "%3{│%}"
       " "
       "%1{%B%}"
       "%s\n"))

(setq gnus-summary-display-arrow t)

(add-hook 'gnus-group-mode-hook #'hl-line-mode)
(add-hook 'gnus-article-mode-hook #'acdw/reading-mode)

;;; MIME types
(setq mm-discouraged-alternatives '("text/html"
                                    "text/richtext"))

(with-eval-after-load 'mailcap
  (cond ((eq system-type 'darwin))
        ((eq system-type 'windows-nt))
        (t (mailcap-parse-mailcaps))))

;;; Composing mail
(hook-defun setup-message-mode message-mode-hook
  (flyspell-mode +1)
  (local-set-key (kbd "TAB") #'bbdb-complete-mail))

;;; Sending mail
(setq send-mail-function #'smtpmail-send-it
      message-send-mail-function #'smtpmail-send-it
      smtpmail-smtp-server "smtp.fastmail.com"
      smtpmail-default-smtp-server "smtp.fastmail.com"
      smtpmail-smtp-service 465
      smtpmail-stream-type 'ssl
      smtpmail-smtp-user "acdw@fastmail.com"
      message-kill-buffer-on-exit t)

;;; Packages

;; searching (?)
(require 'nnir)

;; contacts
(setup (:straight bbdb)
  (require 'bbdb)
  (bbdb-initialize 'message 'gnus 'mail)
  (bbdb-insinuate-message)
  (add-hook 'gnus-startup-hook 'bbdb-insinuate-gnus)
  (:option bbdb/gnus-summary-prefer-real-names t
           bbdb/mail-auto-create-p t
           bbdb/news-auto-create-p t
           bbdb-use-pop-up t
           bbdb-offer-save 1
           bbdb-update-records-p t))

;;; Gnus subscriptions
(setq gnus-options-subscribe (rx (or ;; all alternatives go under this
                                  (seq string-start
                                       "nnimap+fastmail.com:"
                                       (or ;; folders in Fastmail
                                        "INBOX")))
                                 (seq string-start
                                      "nntp+news.tilde.club:"
                                      (or ;; news groups in tilde.club
                                       (seq "local."
                                            (or "general"))
                                       (seq "tilde."
                                            (or "art"
                                                "club"
                                                "cosmic"
                                                "food+drink"
                                                "gopher"
                                                "meta"
                                                "poetry"
                                                "services"))))))

(setq gnus-options-not-subscribe (rx (or ;; all alternatives go under this
                                      (seq string-start
                                           "nnimap+fastmail.com:"
                                           (or ;; folders in Fastmail
                                            "Archive"
                                            "Bulk"
                                            "DeltaChat"
                                            "Gmail"
                                            "Pam"
                                            "Spam"
                                            "Trash"
                                            "blag"
                                            "notes"))
                                      (seq string-start
                                           "nntp+news.tilde.club:"
                                           (or ;; news groups in tilde.club
                                            (seq "tilde."
                                                 (or "black"
                                                     "javascript"
                                                     "nsfw"
                                                     "php"
                                                     "pink"
                                                     "python"
                                                     "your")))))))