Quoting Jari Fredriksson <ja...@iki.fi>:
Hi,
We're rebuilding a mail server and are having some issues
with SQL-based SA preference lookups. We're running
Postfix 2.5.5 and SA 3.2.5 (Debian Lenny version) -
here's our Postfix config from master.cf:
spamassassin unix - n n - -
pipe
user=spamd argv=/usr/bin/spamc -u ${user} -e
/usr/sbin/sendmail -oi -f ${sender} ${recipient}
old non-lookup line:
user=spamd argv=/usr/bin/spamc -f -e /usr/sbin/sendmail
-oi -f ${sender} ${recipient}
What's happening is that individual incoming messages get
handed off to SA using the spamc command above, but SA is
only processing the first message and never handing it
back to Postfix, while the other messages never seem to
get processed at all (nothing at all about them in the
logs). The old non-lookup line works fine. Has anyone
here experienced similar issues?
Ryan Thoryk
"The old non-lookup line works fine"
spamc has no option -f
How can that work fine?
If the old line works fine, why do you try to raplace with a new line?
You are correct. It is a sendmail option. This is what I have:
spamass unix - n n - 6 pipe
user=spamd argv=/usr/local/bin/spamc -u ${recipient} -s 524288
-e /usr/local/sbin/sendmail -oi -f ${sender} ${recipient}
Sorry for the confusion.