info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [NoGnus] Fancy splitting and imap respooling not working


From: Ted Zlatanov
Subject: Re: [NoGnus] Fancy splitting and imap respooling not working
Date: Wed, 28 Mar 2012 19:13:07 -0000
User-agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux)

On Fri, 01 Jul 2011 14:27:18 +0200 "Sebastien Vauban" 
<wxhgmqzgwmuf@spammotel.com> wrote: 

SV>               (when ,(fboundp 'gnus-registry-split-fancy-with-parent)
SV>                 (any ,gnus-ignored-from-addresses
SV>                      (: gnus-registry-split-fancy-with-parent)))

This is inside a `() list...  I believe you want:

,@(when (fboundp 'gnus-registry-split-fancy-with-parent)
    (list 'any gnus-ignored-from-addresses
       '(: gnus-registry-split-fancy-with-parent)))

which, if `gnus-registry-split-fancy-with-parent' is bound, will eval
the inner list.

It's kind of a strange expression though, I'm curious what it does.  If
any ignored From addresses (usually the user address) show up, use the
registry splitting?

Ted


reply via email to

[Prev in Thread] Current Thread [Next in Thread]