On 5/29/2006 9:06 PM, George Georgalis wrote:
On Mon, May 29, 2006 at 07:20:31PM -0400, Daryl C. W. O'Shea wrote:
On 5/29/2006 5:20 PM, George Georgalis wrote:
Looking at this block from above SpamAssassin.pm line 1469,
it's not clear to me how to avoid the warning/errors listed below.
note: I'm doing active (in smtp) filtering, and I do not want to
create a .spamassassin directory.
You don't say how, but only when, you're calling SpamAssassin, so who knows.
I was looking for a config option to disable it because SA is
running as a user with no home directory. It's being called like
this
score=$(cat "$tmp" | spamc -x -c) ; testexit=$?
opinion="X-spamc: ${score} ${TCPREMOTEIP}; ${host} ($now)"
case $testexit in
0) pass ;; # ham
1) fail ;; # spam
*) warn ;; # spamc error
esac
So you're using spamd. From perldoc spamd:
-x, --nouser-config Disable user config files
Daryl