chiark / gitweb /
dot/gnus-local.el.distorted: Changes to support later Gnus versions.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 2 Jun 2016 17:05:11 +0000 (18:05 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 2 Jun 2016 17:05:11 +0000 (18:05 +0100)
  * Set authentication credentials source explicitly.

  * Set inboxes for splitting; we don't have the `nnimap-split-inbox'
    file any more.

  * Set unsplittable articles predicate in the new way.

dot/gnus-local.el.distorted

index 466296ce85aa7d16249d13d6449a7f4e9da681bb..82cc344f5eb14cfe0cb7062cd0d46e2dcd8ef4ee 100644 (file)
@@ -5,6 +5,8 @@
 ;;; (c) 2014 Mark Wooding
 ;;;
 
+(setq auth-sources '("~/.gnus.authinfo"))
+
 ;;;--------------------------------------------------------------------------
 ;;; How to send mail.
 
       '((nnimap "distorted"
                (nnimap-address "mail.distorted.org.uk")
                (nnimap-stream tls)
-               (nnimap-authinfo-file "~/.gnus.authinfo"))
+               (nnimap-authinfo-file "~/.gnus.authinfo")
+               (nnimap-inbox "INBOX")
+               (nnimap-unsplittable-articles (%Deleted)))
        (nnimap "markw-distorted"
                (nnimap-address "mail.distorted.org.uk")
                (nnimap-stream tls)
-               (nnimap-authinfo-file "~/.gnus.authinfo.markw"))
+               (nnimap-authinfo-file "~/.gnus.authinfo.markw")
+               (nnimap-inbox "INBOX")
+               (nnimap-unsplittable-articles (%Deleted)))
        (nnimap "mwooding-chiark"
                (nnimap-address "imap.dovecot.chiark.greenend.org.uk")
                (nnimap-stream tls)
-               (nnimap-authinfo-file "~/.gnus.authinfo"))
+               (nnimap-authinfo-file "~/.gnus.authinfo")
+               (nnimap-inbox "INBOX")
+               (nnimap-unsplittable-articles (%Deleted)))
        (nnimap "google"
                (nnimap-address "imap.gmail.com")
                (nnimap-stream tls)
-               (nnimap-authinfo-file "~/.gnus.authinfo"))))
+               (nnimap-authinfo-file "~/.gnus.authinfo")
+               (nnimap-inbox "INBOX")
+               (nnimap-unsplittable-articles (%Deleted)))))
 
 ;; Send sent mail back to me.
 (setq gnus-message-archive-method "mail"