M wrote: > Now that I am able to discard all quarantined spam (Thanks to Gary V!) Is it > possible to have each quarantined mail message sent to me before or after it > has been quarantined?
Actually, setting: $final_spam_destiny = D_DISCARD; does not affect whether spam is quarantined or not. Assuming you are using the default quarantine method (local): #$spam_quarantine_method = 'local:spam-%m.gz'; # default Then you can send quarantined items to a mailbox (If you do, I suggest setting up a special mailbox). $spam_quarantine_to = '[EMAIL PROTECTED]'; Read amavisd.conf-sample included with the source code. Assuming you used to have: $spam_quarantine_to = 'spam-quarantine'; # local quarantine Spam will no longer be stored locally. It will only go to the mailbox. Gary V ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ AMaViS-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/
