My example recipe looks like this:
if ( /^X-Spam-Status: Yes/ ) xfilter "/usr/local/bin/relaydb -b -f /usr/local/share/relaydb" else xfilter "/usr/local/bin/relaydb -w -f /usr/local/share/relaydb"
Unfortunately, mail comes in, but gets lost after the appropriate entries are made into the relaydb.
Don't use xfilter. Do this instead:
if ( /^X-Spam-Status: Yes/ )
{
cc "|/usr/local/bin/relaydb -b -f /usr/local/share/relaydb"
}
else
{
cc "|/usr/local/bin/relaydb -w -f /usr/local/share/relaydb"
}
------------------------------------------------------- This SF.net email is sponsored by OSDN's Audience Survey. Help shape OSDN's sites and tell us what you think. Take this five minute survey and you could win a $250 Gift Certificate. http://www.wrgsurveys.com/2003/osdntech03.php?site=8 _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
