Hi,

I've just got gnus configured to read my mail via IMAP. Looks good, but
I'm having trouble figuring out the syntax for splitting mail. Nothing
gets split now, and when I run B q on any email, the message returned
indicates it would be refiled to mail.misc, which doesn't exist as far
as I can tell. I've pasted all of my gnus config details below. Can
anyone tell me what I'm doing wrong?

Thanks,

Tyler

;; loaded from my .emacs.d/init.el via (load "~/.emacs.d/gnus")

(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

(setq gnus-select-method 
      '(nnimap "mail"
                (nnimap-address "MY-IMAP-SERVER")
                (nnimap-stream network)
                (nnimap-authenticator login)
                (nnimap-port 143)
                (nnimap-split-methods 
                 '(("INBOX.forwarded" "^Received:.*OLD.SERVER")
                   ("INBOX.default" "")))))

(setq gnus-secondary-select-methods '((nntp "news.gmane.org")))



(defun my-gnus-summary-hook ()
  (local-set-key "t" 'gnus-summary-mark-as-processable))

(add-hook 'gnus-summary-mode-hook 'my-gnus-summary-hook)

(setq gnus-posting-styles
       '(("*"    ; Matches all groups of messages
          (address "[email protected]")
          (name "My Name"))))

(setq nnimap-split-inbox "INBOX")
(setq nnimap-split-predicate "UNDELETED")


_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to