Hello,

Having 2 IMAP inboxes defined, like so:

(setq gnus-select-method '(nnnil))
(setq gnus-secondary-select-methods
      '(
        (nnimap "0.foo"
                (nnimap-address "imap.foo.com")
                )
        (nnimap "1.bar"
                (nnimap-address "imap.bar.com")
                )
        )
      )

I would love to apply the split rules across the inboxes, ie if an email from 
[email protected] arrives at 1.bar, I'd like to move it to 0.foo:some-group:

(setq nnimap-split-fancy
      '(|
        (: nnmail-split-fancy-with-parent)
        (from "[email protected]"
             "nnimap+0.foo:some-group" )
        ("INBOX")
        )
      )
(setq nnimap-split-methods 'nnimap-split-fancy)

The above splits to the group named nnimap+0.foo:some-group at 1.bar. Any hints 
how to make the split happen across the inbox boundaries to 0.foo:some-group?

Thank you,

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

Reply via email to