Quoting Neil Stone <[EMAIL PROTECTED]>:

I have courier installed on my mail server, been there for about a year now.. chugging along quite happliy...

I have decided i want to get spamassassin involved in there.. i followed through a few guides on the internet, TNA... it seems as though spamc is not actually running.

I have set the DEFAULTDELIVERY to maildrop, in maildroprc i have;

exception {
        xfilter "/usr/bin/spamc"
}

as was suggested by a few places...

no sign of spamc being executed at all... no headers, no log file entrys.. etc..etc.. i expect i am being silly, however it's gone 1am..

What am i doing wrong people ???

Hi Neil,

Is spamd running? I'm sure you are aware that you need it for spamc. If you haven't already, try checking with ps and the correct options for your os and you should see something like the following:

# ps -ax|grep spamd
1066 ?? Ss 0:56.71 /usr/local/bin/spamd -c -Q -d -r /var/run/spamd/spamd.pid (perl5.8.8)
  1144  ??  S      0:12.75 spamd child (perl5.8.8)
  71962  ??  S      0:00.77 spamd child (perl5.8.8)

You might also want to try switching, just for testing, to the interpreted program spamassassin either in a usr's home .mailfilterrc or in your maildroprc which is what I usually do if I have an issue. That is basically fool proof correcting the path, of course;):

# cat .mailfilter
xfilter "/usr/local/bin/spamassassin  "

if (/^X-Spam-Flag: YES/)
{
       exception {
               to "./Maildir/.Spam"
       }
}
else
{
       exception {
               to "./Maildir/"
       }
}

Then just reading the headers on your test mail should tell you if it is working.

good luck,

ed


Also I would like to be able to have a catchall mailbox for each of the domains i have on my server... i use MySQL authentication (if that matters ?) i have read that i simply set an alias along the lines of;

@domain.com     [EMAIL PROTECTED]

again, this seems not to work....


Also, any pointers on using a mailing list ???

Thanks people, I'll head to bed now, have a read of email in the morning, and see whats what...

TIA

Neil Stone


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
courier-users mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users






-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
courier-users mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to