Hi,

This sounds like you're fighting spamdb. It's possible it's not clear enough 
from
the spamd chapters in the book, but modern spamd really depends on the spamdb
database for most things so backfilling the spamd-white table is to be expected.

spamdb is the more appropriate tool for manipulating the white, grey and black 
status of entries.

If you want to empty the whitelist, I'd go for spamdb -d on individual entries, 
doable
via a for loop or something, eg

for foo in `doas spamdb | grep WHITE | awk -F\| '{print $2}'`; do doas spamdb 
-d $foo; done

(untested but you get the drift)

-- 
Peter N. M. Hansteen, member of the first RFC 1149 implementation team
http://bsdly.blogspot.com/ http://www.bsdly.net/ http://www.nuug.no/
"Remember to set the evil bit on all malicious network traffic"
delilah spamd[29949]: 85.152.224.147: disconnected after 42673 seconds.

Reply via email to