summaryrefslogtreecommitdiffstats
path: root/roles/IMAP-proxy/files/etc/dovecot/conf.d
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2014-07-02 20:37:16 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-06-07 02:52:18 +0200
commit9ff10c0ebe4d74f433d696232aa57c6a2c9e2aba (patch)
tree8f9d80641e7decdf3186657688bf328a28f5ab34 /roles/IMAP-proxy/files/etc/dovecot/conf.d
parente04f5a300bd6c0aa5622093b936846fce69d82f2 (diff)
Make the IMAP caching proxy listen on ::1.
Diffstat (limited to 'roles/IMAP-proxy/files/etc/dovecot/conf.d')
-rw-r--r--roles/IMAP-proxy/files/etc/dovecot/conf.d/10-master.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/IMAP-proxy/files/etc/dovecot/conf.d/10-master.conf b/roles/IMAP-proxy/files/etc/dovecot/conf.d/10-master.conf
index ad9b08f..411d4bc 100644
--- a/roles/IMAP-proxy/files/etc/dovecot/conf.d/10-master.conf
+++ b/roles/IMAP-proxy/files/etc/dovecot/conf.d/10-master.conf
@@ -1,39 +1,39 @@
#default_process_limit = 100
#default_client_limit = 1000
# Default VSZ (virtual memory size) limit for service processes. This is mainly
# intended to catch and kill processes that leak memory before they eat up
# everything.
#default_vsz_limit = 256M
# Login user is internally used by login processes. This is the most untrusted
# user in Dovecot system. It shouldn't have access to anything at all.
default_login_user = dovenull
# Internal user is used by unprivileged processes. It should be separate from
# login user, so that login processes can't disturb other processes.
default_internal_user = dovecot
service imap-login {
inet_listener imap {
- address = 127.0.0.1
+ address = 127.0.0.1 ::1
port = 143
ssl = no
}
inet_listener imaps {
port = 0
}
# Number of connections to handle before starting a new process. Typically
# the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
# is faster. <doc/wiki/LoginProcess.txt>
service_count = 1
# Number of processes to always keep waiting for more connections.
#process_min_avail = 0
# If you set service_count=0, you probably need to grow this.
#vsz_limit = $default_vsz_limit
}
service imap {