3 messages in net.sourceforge.lists.courier-usersRe: [courier-users] LDAP_FILTER
FromSent OnAttachments
Di Giambelardini GabrieleOct 20, 2006 2:36 am 
Di Giambelardini GabrieleOct 20, 2006 2:44 am 
Gordon MessmerOct 20, 2006 8:58 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] LDAP_FILTERActions...
From:Gordon Messmer (yiny@eburg.com)
Date:Oct 20, 2006 8:58:29 am
List:net.sourceforge.lists.courier-users

Di Giambelardini Gabriele wrote:

ok i found the resolution:

LDAP_FILTER (&(|(stato=attivo)(stato=nuovo)))

More simply:

LDAP_FILTER (|(stato=attivo)(stato=nuovo))

The & doesn't do anything in the filter you're using. Translated to C style, which may be more readable, it says something like:

if( (stato == attivo || stato=nuovo) && 1)