diff options
-rw-r--r-- | gnus.el | 7 |
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 |