This is a discussion on Re: [AMaViS-user] Question about recipient virus notification within the Amavis User forums, part of the Anti-Spam and Anti-Virus Related Forums category; Odd, Mark's reply showed up in the archives, but I have yet to see a copy: Mark Wrote: > ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Odd, Mark's reply showed up in the archives, but I have yet to see a
copy: Mark Wrote: > warnvirusrecip_maps = ({ > '.example.com' => 1, > '.' => undef, > }); Not to forget the leading @, but otherwise should do. The '.'=>undef is unnecessary, a fallthrough is false anyway. Notw, hash keys must be lowercase. @warnvirusrecip_maps = ({ '.example.com' => 1, '.example.net' => 1, }, ); or using a list instead of a hash (case insenstive): @warnvirusrecip_maps = (['.example.com', '.example.net']); Mark Gary V ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?p...rge&CID=DEVDEV _______________________________________________ AMaViS-user mailing list AMaViS-user@lists.sourceforge.net https://lists.sourceforge.net/lists/...fo/amavis-user AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 AMaViS-HowTos:http://www.amavis.org/howto/ |
![]() |
| Thread Tools | |
| Display Modes | |
|
|