Rocco,

> $mailfrom_to_quarantine = "[EMAIL PROTECTED]";
> @whitelist_sender_maps = ("[EMAIL PROTECTED]");

This whitelists everyone (you are using a 'constant' lookup table,
which always returns true (nonempty string).
You want to use a hash or an acl lookup table, e.g.:

  @whitelist_sender_maps = ( ["[EMAIL PROTECTED]"] );


> Moreover, I don't want to send any notification for spam blocked:
> $mailfrom_notify_spamadmin = '';

This doesn't disable notifications, it only sets the sender address
(return path) to an empty string, which is a default.

To turn off bounces for spam, use $final_spam_destiny=D_DISCARD
or $final_spam_destiny=D_PASS (but not D_BOUNCE or D_REJECT),
or (if you do use D_BOUNCE) set a low value for $sa_quarantine_cutoff_level.

> and the quarantined spam messages are so managed:
>
> @spam_quarantine_to_maps = (
>  { '.example.com' => '[EMAIL PROTECTED]', # spam for this domain goes here
>    '.' => undef, # the rest should never actually get here
>                              # because high of kill_level
>  }
> );

Ok.

> But It seems the It doesn't works...

"Doesn't work" is too vague - you can't expect and answer
to such problem report. Check your logs, see what happens
and compare to what you hoped would happen.

  Mark


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
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/

Reply via email to