fixing dovecot configuration for LASTLOGIN variable on DOVECOT2
This commit is contained in:
parent
5f8dea3c8d
commit
d4d746bce8
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
protocols = imap pop3 sieve
|
protocols = imap pop3 sieve
|
||||||
|
|
||||||
|
default_process_limit = 1000
|
||||||
|
|
||||||
## -------------------------------------------------------------------------
|
## -------------------------------------------------------------------------
|
||||||
## 10-auth
|
## 10-auth
|
||||||
|
|
||||||
|
@ -189,12 +191,22 @@ protocol imap {
|
||||||
# list of plugins to load.
|
# list of plugins to load.
|
||||||
mail_plugins = quota imap_quota
|
mail_plugins = quota imap_quota
|
||||||
#mail_plugin_dir = /usr/lib/dovecot/modules/imap
|
#mail_plugin_dir = /usr/lib/dovecot/modules/imap
|
||||||
|
mail_max_userip_connections = 500
|
||||||
}
|
}
|
||||||
|
|
||||||
service imap {
|
service imap {
|
||||||
executable = /usr/lib/alternc/popimap-log-login.sh /usr/lib/dovecot/imap
|
executable = imap imap-postlogin
|
||||||
|
vsz_limit = 512M
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service imap-postlogin {
|
||||||
|
executable = script-login /usr/lib/alternc/popimap-log-login.sh
|
||||||
|
# the script process runs as the user specified here (v2.0.14+):
|
||||||
|
# user = $default_internal_user
|
||||||
|
# this UNIX socket listener must use the same name as given to imap executable
|
||||||
|
unix_listener imap-postlogin {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
# 20-managesieve.conf
|
# 20-managesieve.conf
|
||||||
|
|
Loading…
Reference in New Issue