Displaying 3 results from an estimated 3 matches for "imap_user_fil".
Did you mean:
imap_user_file
2006 Aug 27
1
format for per-user QUOTAs in passwd-file?
...format for setting per-user override quotas in a passwd-file?
in my "dovecot.conf", i've:
protocol imap {
mail_plugins = quota imap_quota
mail_plugin_dir = /usr/local/dovecot-plugins/imap
plugin {
quota = maildir:storage=10240 # 10 MB quota limit
}
in my "imap_user_file", i've:
passdb passwd-file {
args = /etc/dovecot/imap_user_file
...
i have:
user at mydomain.com:{PLAIN}testpass:::::: quota=maildir:storage=4096
on login to the user at mydomain.com, however, QUOTA on the account's mailboxes is
reporting as the global default:...
2006 Aug 31
1
one example, just one example ...
...IN}testpass:::::: quota=maildir:storage=4096
user at domain.com:{PLAIN}testpass:::::: maildir:storage=4096
*none* (so far ...) work to override the spec in dovecot.conf.
no errors in the logs; rather, simply:
dovecot: Aug 31 08:54:25 Info: auth(default): passwd-file
/var/MailServer/Data/USERS/imap_user_file: Read 2 users
nobody? really, nobody does this successfully?
richard
2009 Oct 07
2
how to config dovecot for multiple domains, multiple SSL certs, and conditional IP access -- with passwd-file passdb?
at them moment, i've configured dovecot for a flat passwd-file, annd
static userdb. from dovecot.conf,
...
auth default {
mechanisms = plain digest-md5 cram-md5
user = mail
...
passdb passwd-file {
args = /data/mail/users/imap_user_file
}
userdb static {
args = static uid=mail gid=mail
home=/data/mail/store/Domains/%d/Accounts/%n
quota=maildir:storage=4096 nice=10
}
...
i'd like to configure dovecot to,
host multiple domains, each on a separate IP
setup a separate SSL cert for each domain
respond with a differe...