Guest User

Untitled

a guest
Jan 20th, 2016
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $QUARANTINEDIR = "$MYHOME/virusmails";
  2. $quarantine_subdir_levels = 1; # enable quarantine dir hashing
  3.  
  4. $log_recip_templ = undef;    # disable by-recipient level-0 log entries
  5. $DO_SYSLOG = 1;              # log via syslogd (preferred)
  6. $syslog_ident = 'amavis';    # syslog ident tag, prepended to all messages
  7. $syslog_facility = 'mail';
  8. $syslog_priority = 'debug';  # switch to info to drop debug output, etc
  9.  
  10. $enable_db = 1;              # enable use of BerkeleyDB/libdb (SNMP and nanny)
  11. $enable_global_cache = 1;    # enable use of libdb-based cache if $enable_db=1
  12.  
  13. $inet_socket_port = 10024;   # default listening socket
  14.  
  15. $sa_spam_subject_tag = '***SPAM*** ';
  16. $sa_tag_level_deflt  = 2;  # add spam info headers if at, or above that level
  17. $sa_tag2_level_deflt = 6.31; # add 'spam detected' headers at that level
  18. $sa_kill_level_deflt = 6.31; # triggers spam evasive actions
  19. $sa_dsn_cutoff_level = 10;   # spam level beyond which a DSN is not sent
  20.  
  21. $sa_mail_body_size_limit = 200*1024*1024; # don't waste time on SA if mail is larger
  22. $sa_local_tests_only = 0;    # only tests which do not require internet access?
  23.  
  24. $MAXLEVELS = 14;
  25. $MAXFILES = 1500;
  26. $MIN_EXPANSION_QUOTA =      100*1024;  # bytes
  27. $MAX_EXPANSION_QUOTA = 300*1024*1024;  # bytes
  28.  
  29. $final_virus_destiny      = D_DISCARD;  # (data not lost, see virus quarantine)
  30. $final_banned_destiny     = D_BOUNCE;   # D_REJECT when front-end MTA
  31. $final_spam_destiny       = D_BOUNCE;
  32. $final_bad_header_destiny = D_PASS;     # False-positive prone (for spam)
  33. $bad_header_quarantine_to = undef;
  34. $enable_dkim_verification = 0; #disabled to prevent warning
  35.  
  36. $virus_admin = "postmaster\@$mydomain"; # due to D_DISCARD default
Add Comment
Please, Sign In to add comment