Craig R Hughes wrote:

>You can remove/add addresses to the AWL using spamassassin's "-R" and "-W" 
>flags.  You can list the AWL contents using tools/check_whitelist
>
The problem is exactly that -R doesn't work for me. I wrote a quick 
script to delete everything in the dbm:

use AnyDBM_File;

tie (%hash, 'AnyDBM_File',
     '/home/rlm/.spamassassin/auto-whitelist',O_RDWR,0666);

foreach(keys(%hash))
{
    delete($hash{$_});
}
untie(%hash);

=============

and it won't delete a single line, either. So my suspicion is that 
there's a bug in this release of Perl that I'm unaware of.


-- 
          http://www.pricegrabber.com | Dog is my co-pilot.

                                   




_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to