Subversion Repositories configs

Rev

Rev 192 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
##
2
## Log destination.
3
##
4
 
5
# Log file to use for error messages. "syslog" logs to syslog,
6
# /dev/stderr logs to stderr.
7
#log_path = syslog
8
 
9
# Log file to use for informational messages. Defaults to log_path.
10
#info_log_path =
11
# Log file to use for debug messages. Defaults to info_log_path.
12
#debug_log_path =
13
 
14
# Syslog facility to use if you're logging to syslog. Usually if you don't
15
# want to use "mail", you'll use local0..local7. Also other standard
16
# facilities are supported.
17
#syslog_facility = mail
18
 
19
##
20
## Logging verbosity and debugging.
21
##
22
 
23
# Log filter is a space-separated list conditions. If any of the conditions
24
# match, the log filter matches (i.e. they're ORed together). Parenthesis
25
# are supported if multiple conditions need to be matched together.
209 - 26
#
27
# See https://doc.dovecot.org/configuration_manual/event_filter/ for details.
28
#
29
# For example: event=http_request_* AND category=error AND category=storage
30
#
192 - 31
# Filter to specify what debug logging to enable. This will eventually replace
32
# mail_debug and auth_debug settings.
33
#log_debug =
34
 
209 - 35
# Crash after logging a matching event. For example category=error will crash
192 - 36
# any time an error is logged, which can be useful for debugging.
37
#log_core_filter =
38
 
39
# Log unsuccessful authentication attempts and the reasons why they failed.
40
#auth_verbose = no
41
 
42
# In case of password mismatches, log the attempted password. Valid values are
43
# no, plain and sha1. sha1 can be useful for detecting brute force password
44
# attempts vs. user simply trying the same password over and over again.
45
# You can also truncate the value to n chars by appending ":n" (e.g. sha1:6).
46
#auth_verbose_passwords = no
47
 
48
# Even more verbose logging for debugging purposes. Shows for example SQL
49
# queries.
50
#auth_debug = no
51
 
52
# In case of password mismatches, log the passwords and used scheme so the
53
# problem can be debugged. Enabling this also enables auth_debug.
54
#auth_debug_passwords = no
55
 
56
# Enable mail process debugging. This can help you figure out why Dovecot
57
# isn't finding your mails.
58
#mail_debug = no
59
 
60
# Show protocol level SSL errors.
61
#verbose_ssl = no
62
 
63
# mail_log plugin provides more event logging for mail processes.
64
plugin {
65
  # Events to log. Also available: flag_change append
66
  #mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
67
  # Available fields: uid, box, msgid, from, subject, size, vsize, flags
68
  # size and vsize are available only for expunge and copy events.
69
  #mail_log_fields = uid box msgid size
70
}
71
 
72
##
73
## Log formatting.
74
##
75
 
76
# Prefix for each line written to log file. % codes are in strftime(3)
77
# format.
78
#log_timestamp = "%b %d %H:%M:%S "
79
 
80
# Space-separated list of elements we want to log. The elements which have
81
# a non-empty variable value are joined together to form a comma-separated
82
# string.
83
#login_log_format_elements = user=<%u> method=%m rip=%r lip=%l mpid=%e %c
84
 
85
# Login log format. %s contains login_log_format_elements string, %$ contains
86
# the data we want to log.
87
#login_log_format = %$: %s
88
 
89
# Log prefix for mail processes. See doc/wiki/Variables.txt for list of
90
# possible variables you can use.
91
#mail_log_prefix = "%s(%u)<%{pid}><%{session}>: "
92
 
93
# Format to use for logging mail deliveries:
94
#  %$ - Delivery status message (e.g. "saved to INBOX")
95
#  %m / %{msgid} - Message-ID
96
#  %s / %{subject} - Subject
97
#  %f / %{from} - From address
98
#  %p / %{size} - Physical size
99
#  %w / %{vsize} - Virtual size
100
#  %e / %{from_envelope} - MAIL FROM envelope
101
#  %{to_envelope} - RCPT TO envelope
102
#  %{delivery_time} - How many milliseconds it took to deliver the mail
103
#  %{session_time} - How long LMTP session took, not including delivery_time
104
#  %{storage_id} - Backend-specific ID for mail, e.g. Maildir filename
105
#deliver_log_format = msgid=%m: %$