1
0
Fork 0
emacs-config/oni-gnus.el

107 lines
3.7 KiB
EmacsLisp
Raw Normal View History

2019-02-26 11:31:20 +01:00
;;; oni-gnus.el --- Gnus configuration -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Tom Willemse
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2023.0621.223533
;; Package-Requires: (oni-data-dir oni-sendmail)
2019-02-26 11:31:20 +01:00
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Gnus configuration
;;; Code:
(require 'gnus)
(require 'gnus-msg)
(require 'mail-source)
(require 'message)
(require 'nnfolder)
2019-02-28 08:43:16 +01:00
(require 'oni-data-dir)
(require 'oni-sendmail)
2019-02-26 11:31:20 +01:00
(defun oni-gnus-goto-bracket-then-colon ()
"Find the first occurrence of [ on the current line and then :.
The default function gnus-goto-colon' only goes to the first
colon and then stops there. When there is a date with a time
involved, it just goes to the time, not the colon after the size
of the email."
(move-beginning-of-line 1)
(let ((eol (point-at-eol)))
(goto-char (or (text-property-any (point) eol 'gnus-position t)
(progn (search-forward "[" eol t)
(search-forward ":" eol t))
(point)))))
;;; Make sure that repositioning point in Gnus means that first the bracket is
;;; found and then the following colon, instead of the first colon which is
;;; possibly one from a time stamp.
(defalias 'gnus-summary-position-point 'oni-gnus-goto-bracket-then-colon)
2019-02-28 08:43:16 +01:00
(setq gnus-directory (oni-data-dir-locate "News")
2019-02-26 11:31:20 +01:00
gnus-article-save-directory gnus-directory
gnus-cache-directory gnus-directory
gnus-kill-files-directory gnus-directory)
2019-02-28 08:43:16 +01:00
(setq mail-source-directory (oni-data-dir-locate "Mail")
2019-02-26 11:31:20 +01:00
message-directory mail-source-directory
nnfolder-directory mail-source-directory)
(setq gnus-novice-user nil)
(defun oni-gnus-delete-forward (&optional n)
"Delete the article under point and move to the next one.
Do this N times."
(interactive "p")
(dotimes (_ (or n 1))
(gnus-summary-delete-article)
(gnus-summary-next-subject 1)))
(define-key gnus-summary-mode-map (kbd "M-d") #'oni-gnus-delete-forward)
(setq gnus-group-line-format "%P%(%20G%): %-10s %S%p%B %5y %5T\n")
(setq gnus-summary-line-format "%U%R%z %&user-date;%20= %I%(%[%5L: %-23,23f%]%) %s\n")
2019-02-26 11:31:20 +01:00
2020-04-23 19:30:33 +02:00
(setq gnus-treat-from-gravatar t)
2019-02-26 11:31:20 +01:00
(setq gnus-select-method
'(nnmaildir "ryuslash" (directory "~/documents/mail/ryuslash/")))
(setq gnus-summary-thread-gathering-function 'gnus-gather-threads-by-references)
2021-04-26 03:09:47 +02:00
(setq gnus-thread-sort-functions '(gnus-thread-sort-by-date))
(setq gnus-buttonized-mime-types '("multipart/alternative"))
2019-02-26 11:31:20 +01:00
(add-to-list 'gnus-posting-styles
'(".*"
(address "tom@ryuslash.org")
(eval (setq message-sendmail-extra-arguments
'("-a" "ryuslash")))))
(add-to-list 'gnus-secondary-select-methods
'(nnmaildir "gmail"
(directory "~/documents/mail/gmail/")))
(add-to-list 'gnus-posting-styles
'("gmail:"
(name "Tom Willemse")
(address "ryuslash@gmail.com")
(eval (setq message-sendmail-extra-arguments
'("-a" "gmail")))))
(provide 'oni-gnus)
;;; oni-gnus.el ends here