1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# You can put comments anywhere you want to. They are effective for the
# rest of the line.
# this is in the format of <name> = <value>. Whitespace at the beginning
# and end of the lines is removed. Whitespace before and after the = sign
# is removed. Everything is case *insensitive*.
# Yes = True = On = 1
# No = False = Off = 0
Title = "Dovecot"
# Which logfile group...
# dovecot 1.x defaulted to maillog
LogFile = maillog
# dovecot 2.x defaults to '/var/log/dovecot'
LogFile = dovecot
*OnlyService = (imap-login|pop3-login|dovecot|imap\(.*\))
*RemoveHeaders = "^\w{3} .\d \d\d:\d\d:\d\d (?:[^\s:]* )?"
# Variable $dovecot_ignore_host is used to filter out hosts that login
# successfully. This commented-out example filters out reserved local
# addresses (IETF RFC 1918 and RFC 3330).
#$dovecot_ignore_host="^\[10\.|^172\.(1[6-9]|2[0-9]|3[01])\.|^192\.168\.|^127\.\d\.\d\.\d\]$"
# Boolean option $dovecot_numeric is used to disable DNS lookups.
# DNS lookups are enabled by default
#$dovecot_numeric = 0
# Override the default Detail level. This will only affect dovecot's report.
# But note that you can override this service default for specific sections,
# listed below.
#$dovecot_detail = 10
# Detail levels for individual report sections.
# (Setting to zero will disable that particular section.)
#$dovecot_Aborted = 5 # Logout/aborts:
#$dovecot_Auth_Disconnected_With_Pending = 5 # Auth client disconnected with pending requests:
#$dovecot_Auth_Failed = 5 # Dovecot failed logins:
#$dovecot_Auth_Individual_Input = 5 # Invalid input (authentication):
#$dovecot_Auth_Timed_Out = 5 # Request timed out waiting for client to continue authentication:
#$dovecot_Auth_Username_Chars = 5 # Username character disallowed by auth_username_chars:
#$dovecot_Connections = 5 # Dovecot IMAP and POP3 connections:
#$dovecot_Disconnects = 5 # Dovecot disconnects:
#$dovecot_Dovecot_Deliveries = 5 # Dovecot deliveries:
#$dovecot_LDA_Sieve_Forwards = 5 # Dovecot LDA sieve forwards:
#$dovecot_LDA_Vacation_Response = 5 # Dovecot LDA sieve vacation responses:
#$dovecot_LDA_Vacation_Duplicate_Response = 5 # Dovecot LDA sieve duplicate vacation responses not sent:
#$dovecot_Mailbox_Created = 5 # Mailbox created:
#$dovecot_Mailbox_Deleted = 5 # Mailbox deleted:
#$dovecot_Mailbox_Renamed = 5 # Mailbox renamed:
#$dovecot_MUA_List = 5 # IMAP mail user agent strings:
#$dovecot_Proxy_Login = 5 # Dovecot proxy IMAP and POP3 successful logins:
#$dovecot_Sieve_Login = 5 # Dovecot managesieve successful logins:
#$dovecot_TLS_Init = 5 # TLS initialization failed:
#$dovecot_Successful_Logins = 5 # Dovecot IMAP and POP3 successful logins:
#$dovecot_Unknown_User = 5 # Unknown users blocked:
# vi: shiftwidth=3 tabstop=3 et
|