postfix – dovecot错误未知设置:unix_listener

前端之家收集整理的这篇文章主要介绍了postfix – dovecot错误未知设置:unix_listener前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试启用postfix auth.我正在编辑/etc/dovecot/conf.d/10-master.conf中的这一部分
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
    mode = 0666
    user = postfix
    group = postfix
}

但是在我重启dovecot之后我得到了这个错误

Starting Dovecot Imap: doveconf: Fatal: Error in configuration file /etc/dovecot/conf.d/10-master.conf line 88: Unknown setting: unix_listener
                                                       [Failed]
您应该将此unix_listener块放在服务auth块中,如下所示:
service auth {
    unix_listener /some/path { ... }
}
原文链接:https://www.f2er.com/bash/385372.html

猜你在找的Bash相关文章