Displaying 1 result from an estimated 1 matches for "dovecot_pop3".
Did you mean:
dovecot_pipe
2006 Aug 26
1
separate passdb for imap and pop3
...9;auth'
(like 'auth default') keyword in the wiki. What does that mean? Can I
setup seperate user and password dbs for sepearate circumstances?
I've tried to experiment with it and added two auths:
auth pop3 {
mechanisms = plain digest-md5
passdb passwd-file {
args = /etc/dovecot_pop3.passwd
}
userdb passwd-file {
args = /etc/dovecot_pop3.passwd
}
user = _dv_auth
}
auth imap {
mechanisms = plain digest-md5
passdb passwd-file {
args = /etc/dovecot_imap.passwd
}
userdb passwd-file {
args = /etc/dovecot_imap.passwd
}
user = _dv_auth
}
But how can...