peter wrote: > Hi there,
> since I updated to amavisd-new v2.4.2-6.1 on Debian Linux 4.0 > I did'nt get the X-Spam-Score in the header of emails below the > kill level? > The default_level is set to -9999 I also tried to use undef but the same. > Then I tried to use @local_domains_acl with domain or jsut a dot. > What can I check? Is there an check routine? I tried to start > amavisd-new debug but everything looks fine! > Spams above the kill level are stored into the quarantaine folder. > Please some can give some tips? > The older installation working greate! > Thanks, > Peter If you have both @local_domains_acl and @local_domains_maps set, @local_domains_maps will clobber @local_domains_acl. The default for @local_domains_maps is: @local_domains_maps = (\%local_domains,[EMAIL PROTECTED],\$local_domains_re); If left at the default, it should read in your @local_domains_acl. If changed, it will clobber @local_domains_acl. Possibly the best thing to do is place all your local domains in @local_domains_maps, e.g.: @local_domains_maps = ( [ ".$mydomain", 'sub.example.net', '.example.com' ] ); Watch the syntax. Place this setting in your 50-user file and explicitly set your domain there also: $mydomain = example.com; Test with: @local_domains_maps = ( [ "." ] ); Or possibly: @local_domains_maps = ( 1 ); 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/
