Re: can't get SQL AWL working in 3.0.0

2004-09-26 Thread Michael Parker
On Sun, Sep 26, 2004 at 09:27:04PM +, Daniel M. Drucker wrote:
 
 I have the following /etc/mail/spamassassin/settings.cf:
 
 =
 user_scores_dsn DBI:mysql:spamassassin:localhost
 user_scores_sql_usernamemail
 user_scores_sql_passwordmypassword
 
 bayes_store_module  Mail::SpamAssassin::BayesStore::SQL
 bayes_sql_dsn   DBI:mysql:spamassassin:localhost
 bayes_sql_username  mail
 bayes_sql_password  mypassword
 
 user_awl_dsnDBI:mysql:spamassassin:localhost
 user_awl_sql_username   mail
 user_awl_sql_password   mypassword
 =
 
 SA 3.0.0 is picking up the user scores and bayes from SQL without any
 problems, but it seems to be ignoring the awl settings completely --
 it is still writing to /root/.spamassassin/auto-whitelist.

[ SNIP ]
 
 Can anyone tell me what I'm doing wrong?
 


Go back and read sql/README.awl, pay special attention to the second
paragraph.

Michael


Re: can't get SQL AWL working in 3.0.0

2004-09-26 Thread Daniel M. Drucker
On 2004-09-26, Michael Parker [EMAIL PROTECTED] wrote:
 Go back and read sql/README.awl, pay special attention to the second
 paragraph.

I bow my head in humble shame.

Thank you! 


-- 
Daniel Drucker / [EMAIL PROTECTED]



RE: can't get SQL AWL working in 3.0.0

2004-09-26 Thread Dallas L. Engelken
 
 Can anyone tell me what I'm doing wrong?
 

See the line

 debug: auto-whitelist (db-based):
[EMAIL PROTECTED]|ip=none scores 0/0

And then see the man...

   auto_whitelist_factory module (default:
Mail::SpamAssassin::DBBasedAddrList)
   Select alternative whitelist factory module.


My factory looks like this..

[EMAIL PROTECTED] spamassassin]# grep factory local.cf
auto_whitelist_factory  Mail::SpamAssassin::SQLBasedAddrList

D