comparison doc/example-config/conf.d/20-imap.conf @ 21611:20d399c6aea9

example-config: Add imap_fetch_failure setting.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Mon, 20 Feb 2017 01:00:05 +0200
parents fd83572bb229
children dacbb97f754c
comparison
equal deleted inserted replaced
21610:50c907a9d31b 21611:20d399c6aea9
63 #imap_client_workarounds = 63 #imap_client_workarounds =
64 64
65 # Host allowed in URLAUTH URLs sent by client. "*" allows all. 65 # Host allowed in URLAUTH URLs sent by client. "*" allows all.
66 #imap_urlauth_host = 66 #imap_urlauth_host =
67 67
68 # What happens when FETCH fails due to some internal error:
69 # disconnect-immediately:
70 # The FETCH is aborted immediately and the IMAP client is disconnected.
71 # disconnect-after:
72 # The FETCH runs for all the requested mails returning as much data as
73 # possible. The client is finally disconnected without a tagged reply.
74 # no-after:
75 # Same as disconnect-after, but tagged NO reply is sent instead of
76 # disconnecting the client. If the client attempts to FETCH the same failed
77 # mail more than once, the client is disconnected. This is to avoid clients
78 # from going into infinite loops trying to FETCH a broken mail.
79 #imap_fetch_failure = disconnect-immediately
80
68 protocol imap { 81 protocol imap {
69 # Space separated list of plugins to load (default is global mail_plugins). 82 # Space separated list of plugins to load (default is global mail_plugins).
70 #mail_plugins = $mail_plugins 83 #mail_plugins = $mail_plugins
71 84
72 # Maximum number of IMAP connections allowed for a user from each IP address. 85 # Maximum number of IMAP connections allowed for a user from each IP address.