diff --git a/debian/sendmailanalyzer.conf b/debian/sendmailanalyzer.conf index 1f51868..a9376bb 100644 --- a/debian/sendmailanalyzer.conf +++ b/debian/sendmailanalyzer.conf @@ -19,7 +19,7 @@ ZCAT_PROG /bin/zcat # Output directory for data storage. # Can be overwritten with --output or -o -OUT_DIR /var/lib/sendmailanalyzer +OUT_DIR /usr/lib/sendmailanalyzer # Turn on/off debug mode. # Can be overwritten with --debug or -d @@ -75,13 +75,16 @@ MAX_RCPT 25 # Max size per message to report sender in byte MAX_SIZE 10000000 -# Select the freeing space method: +# Select sa_cache freeing space method: # - delete: remove all daily data files before the current month # - archive: make a gzipped tarbal of all data files before the current month # - none: don't do anything. Need lot of space disk. # Default is delete. FREE_SPACE archive +# Force sa_cache to free space each week instead of monthly by default. +WEEKLY_FREE_SPACE 0 + # Compute statistics and cache for a list of domain and display a link in the # front page for a per domain access. See DOMAIN_USER if you want to grant # special access on these pages. You can have multiple DOMAIN_REPORT lines @@ -124,7 +127,7 @@ URL_JSCRIPT flotr2.js # Syslog name of Amavis. Syslog write it to maillog with the pid as follow: # ... amavis[1234] ... This is required to only parse relevant logged lines -AMAVIS_NAME amavis +AMAVIS_NAME amavis|maiad # Path to SMTP error code file (relative to the CGI directory) # Default: lang/ERROR_CODE @@ -177,8 +180,8 @@ POSTGREY_VIEW 1 # List of antispam name separated by a comma used for Spam details view. You may # want to custom this list to just show menu link on available reports. Default -# list is: spamdmilter,jchkmail,dnsbl,spamassassin,amavis,mimedefang,dnsblmilter,spamd -SPAM_TOOLS spamdmilter,jchkmail,dnsbl,spamassassin,amavis,mimedefang,dnsblmilter,spamd +# list is: spamdmilter,jchkmail,dnsbl,spamassassin,amavis,mimedefang,dnsblmilter,spamd,policydweight +SPAM_TOOLS spamdmilter,jchkmail,dnsbl,spamassassin,amavis,mimedefang,dnsblmilter,spamd,policydweight # Enable/Disable messaging/spam/virus/dsn direction statistics. Default is show. # On some mailhost this could show wrong information if the direction could @@ -200,7 +203,7 @@ CLAMD_NAME clamd # Syslog name of Postgrey. Syslog write it to maillog with the pid as follow: # ... postgrey[1234] ... This is required to only parse relevant logged lines # Can be overwritten with --postgrey or -g -POSTGREY_NAME postgrey +POSTGREY_NAME postgrey|sqlgrey # HTML charset to use. Default is iso-8859-1, but with cyrillics you may want # to use utf-8 instead. @@ -218,4 +221,20 @@ SKIP_RCPT_RELAY dovecot # Can be overwritten with --spamd SPAMD_NAME spamd +# Pipe separated list of destination email address that should be excluded +# from the report. They will not be reported into data files too. The value +# should be a valid regex, the addresses will be search in all destination +# adresses like $TO =~ /^$EXCLUDE_TO$/ +EXCLUDE_TO bcc-addr1@domain1.com|bcc-addr2@domain2.com +# Pipe separated list of sender email address that should be excluded +# from the report. They will not be reported into data files too. The value +# should be a valid regex, the addresses will be search in all senders +# adresses like $FROM =~ /^$EXCLUDE_FROM$/ +EXCLUDE_FROM addr1@domain1.com|addr2@domain2.com + +# Pipe separated list of sender relay ip addresses that should be excluded +# from the report. They will not be reported into data files too. The value +# should be a valid regex, the addresses will be search in all senders relay +# ip adresses like $RELAY =~ /^$EXCLUDE_RELAY$/ +EXCLUDE_RELAY addr1@domain1.com|addr2@domain2.com