Gnus development mailing list
 help / color / mirror / Atom feed
* splitting, spam-split
@ 2011-01-07 10:48 Richard Riley
  2011-01-19 21:53 ` Ted Zlatanov
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Riley @ 2011-01-07 10:48 UTC (permalink / raw)
  To: nognus


I've posted my set up and a backtrace a few times now but still no
pointer to getting it working.  Possibly someone else using spam-split
could post their nnimap and nnmail split settings?

Just for the record

,----
|    (setq nnimap-inbox '("INBOX"))
|    (setq nnimap-split-fancy '(| (: spam-split) "INBOX"))
|    (setq nnimap-split-methods 'nnimap-split-fancy)
|    (setq nnimap-split-download-body t)
|   
|    (setq nnmail-inbox '("INBOX"))
|    (setq nnmail-split-fancy '(| (: spam-split) "SYS-INBOX"))
|    (setq nnmail-split-methods 'nnmail-split-fancy)
|    
|    (setq spam-split-disabled nil)
|    
|    (setq spam-autodetect-recheck-messages t)
|    (setq spam-mark-ham-unread-before-move-from-spam-group t)
|    (setq spam-mark-new-messages-in-spam-group-as-spam t)
|    (setq spam-split-group "nnimap+riley:Gnus-Spam")
`----


regards

r.



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: splitting, spam-split
  2011-01-07 10:48 splitting, spam-split Richard Riley
@ 2011-01-19 21:53 ` Ted Zlatanov
  0 siblings, 0 replies; 2+ messages in thread
From: Ted Zlatanov @ 2011-01-19 21:53 UTC (permalink / raw)
  To: ding

On Fri, 07 Jan 2011 11:48:13 +0100 Richard Riley <rileyrg@googlemail.com> wrote: 

RR> I've posted my set up and a backtrace a few times now but still no
RR> pointer to getting it working.  Possibly someone else using spam-split
RR> could post their nnimap and nnmail split settings?

My foreign server method:

(nnimap "lifelogs.com"
        (nnimap-address "imap.lifelogs.com")
        (nnimap-server-port 993)
        (nnimap-inbox "INBOX")
        (nnimap-split-methods nnimap-courier-lifelogs-split-fancy)
        (nnimap-stream ssl))

This is in my gnus.el:

(defun nnimap-courier-lifelogs-split-fancy ()
  (let ((nnmail-split-fancy nnimap-courier-lifelogs-split-fancy)
        (spam-split-group "INBOX.spam"))
    (nnmail-split-fancy)))

(setq
 nnimap-split-inbox "INBOX"
 nnimap-courier-lifelogs-split-fancy '(|
                      (: gnus-registry-split-fancy-with-parent)
                      (: spam-split 'spam-use-regex-headers)
                      ;; folder rules here
                      (any "spamassassin" "INBOX.sa")
                      ;; folder rules end
                      (: spam-split)
                      ;; default mailbox
                      "INBOX.mail"))

Sorry if I'm posting bogus info, but I believe this works for me.

Ted




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-01-19 21:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-07 10:48 splitting, spam-split Richard Riley
2011-01-19 21:53 ` Ted Zlatanov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).