about summary refs log tree commit diff stats
path: root/gnus.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-30 17:37:51 -0500
committerCase Duckworth2021-04-30 17:37:51 -0500
commitd8880804404c4396d6707856bd293917f246bd55 (patch)
tree3e6c1669c32ac3b1e4cc5c5085bbf0152f9a09e4 /gnus.el
parentCustomize fringes (diff)
downloademacs-d8880804404c4396d6707856bd293917f246bd55.tar.gz
emacs-d8880804404c4396d6707856bd293917f246bd55.zip
Try to improve gnus HTML handling
Diffstat (limited to 'gnus.el')
-rw-r--r--gnus.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/gnus.el b/gnus.el index b304fc1..5b9df7d 100644 --- a/gnus.el +++ b/gnus.el
@@ -91,7 +91,8 @@
91 gnus-use-cache t 91 gnus-use-cache t
92 gnus-summary-thread-gathering-function #'gnus-gather-threads-by-subject 92 gnus-summary-thread-gathering-function #'gnus-gather-threads-by-subject
93 gnus-thread-hide-subtree t 93 gnus-thread-hide-subtree t
94 gnus-thread-ignore-subject t) 94 gnus-thread-ignore-subject t
95 gnus-html-frame-width fill-column)
95 96
96(when window-system 97(when window-system
97 (setq gnus-sum-thread-tree-indent " ") 98 (setq gnus-sum-thread-tree-indent " ")
@@ -119,6 +120,10 @@
119(add-hook 'gnus-group-mode-hook #'hl-line-mode) 120(add-hook 'gnus-group-mode-hook #'hl-line-mode)
120(add-hook 'gnus-article-mode-hook #'acdw/reading-mode) 121(add-hook 'gnus-article-mode-hook #'acdw/reading-mode)
121 122
123;;; MIME types
124(setq mm-discouraged-alternatives '("text/html"
125 "text/richtext"))
126
122;;; Sending mail 127;;; Sending mail
123(setq send-mail-function #'smtpmail-send-it 128(setq send-mail-function #'smtpmail-send-it
124 message-send-mail-function #'smtpmail-send-it 129 message-send-mail-function #'smtpmail-send-it