| 1 /etc/dovecot.conf: | |
| 2 auth default { | |
| 3 mechanisms = plain login | |
| 4 passdb pam { | |
| 5 } | |
| 6 userdb passwd { | |
| 7 } | |
| 8 socket listen { | |
| 9 client { | |
| 10 path = /var/spool/postfix/private/auth | |
| 11 mode = 0660 | |
| 12 user = postfix | |
| 13 group = postfix | |
| 14 } | |
| 15 } | |
| 16 } | |
| :: Starting Dovecot [BUSY] doveconf: Warning: NOTE: You can get a new clean config file with: doveconf -n > dovecot-new.conf | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:35: add auth_ prefix to all settings inside auth {} and remove the auth {} section completely | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:37: passdb pam {} has been replaced by passdb { driver=pam } | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:39: userdb passwd {} has been replaced by userdb { driver=passwd } | |
| doveconf: Warning: NOTE: You can get a new clean config file with: doveconf -n > dovecot-new.conf | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:35: add auth_ prefix to all settings inside auth {} and remove the auth {} section completely | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:37: passdb pam {} has been replaced by passdb { driver=pam } | |
| doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:39: userdb passwd {} has been replaced by userdb { driver=passwd } | |
| Becomes? | |
| auth_mechanisms = plain login | |
| auth_passdb { driver=pam } | |
| auth_userdb { driver=passwd } | |
| auth_socket listen { | |
| client { | |
| path = /var/spool/postfix/private/auth | |
| mode = 0660 | |
| user = postfix | |
| group = postfix | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment