Dovecot(带有 Postfix)配置在访问 auth-userdb 时拒绝连接

Dovecot(带有 Postfix)配置在访问 auth-userdb 时拒绝连接

...这个问题很难用标题描述。这个描述应该能突出问题。

语境

  • 我正在关注 Workaround.org教程安装 postfix、dovecot(以及一些附加插件)堆栈。
  • 在 Ubuntu 12.04 机器上运行(带有 Vagrant/Chef 的虚拟机)
  • Dovecot v2.0.19
  • Postfix v2.9.6

配置文件

10-大师

....
service auth {    
unix_listener auth-userdb {
  mode = 0644
  user = vmail
  group = vmail
}
...

编辑-附加配置信息(有些重叠)

service auth {
# auth_socket_path points to this userdb socket by default. It's typically
# used by dovecot-lda, doveadm, possibly imap process, etc. Its default
# permissions make it readable only by root, but you may need to relax these
# permissions. Users that have access to this socket are able to get a list
# of all usernames and get results of everyone's userdb lookups.
unix_listener auth-userdb {
  mode = 0644
  user = vmail
  group = vmail
}

# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
  mode = 0660
  user = postfix
  group = postfix
}

# Auth process is run as this user.
#user = $default_internal_user
user = dovecot
}

身份验证 SQL

userdb {
  driver = static
  args = uid=vmail gid=vmail home=/var/vmail/%d/%n allow_all_users=yes
}

ls -la /var/run/dovecot/auth-userdb

srw-r--r-- 1 vmail vmail 0 Jun 20 13:04 /var/run/dovecot/auth-userdb

Postfix 主控文件

dovecot    unix  -      n       n       -       -       pipe
   flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/dovecot-lda -d ${recipient}

问题

我严格按照教程操作,只做了一些小改动。我来到了“测试邮件传递”页面,然后运行echo test | mail [email protected]

find /var/vmail由于没有显示任何内容,所以邮件没有到达。

服务器系统日志中存在以下错误:

postfix/pickup[16842]: 019023A06AB: uid=1000 from=<vagrant>
postfix/cleanup[19542]: 019023A06AB: message-id=   <20130620140358.019023A06AB@mail-server-berkshelf>
postfix/qmgr[16843]: 019023A06AB: from=<[email protected]>, size=382, nrcpt=1 (queue active)
dovecot: lda: Debug: Loading modules from directory: /usr/lib/dovecot/modules
dovecot: lda: Debug: Module loaded: /usr/lib/dovecot/modules/lib90_sieve_plugin.so
dovecot: lda: Error: userdb lookup: connect(/var/run/dovecot/auth-userdb) failed: Connection refused
dovecot: lda: Fatal: Internal error occurred. Refer to server log for more information.
postfix/pipe[19545]: 019023A06AB: to=<[email protected]>, relay=dovecot, delay=1.2, delays=0.04/0.01/0/1.1, dsn=4.3.0, status=deferred (temporary failure)

“连接被拒绝”错误应该是我要解决的错误,对吗?我搜索了很多地方以了解这里发生了什么,但没有找到任何有用的信息。

有人能提供任何线索或见解吗?有解决方案就太好了,但我很乐意接受一些新想法来尝试。

答案1

连接被拒绝错误确实是问题所在。unix 套接字上的连接被拒绝并不是很直观,但它表明套接字上没有任何内容在监听(通常是进程已死,或者作为地址给出的文件根本不是套接字)。这绝不应该是权限问题,除非 dovecot 由于权限问题无法打开套接字进行监听。

尝试停止 dovecot 和 postfix,删除 处的套接字文件/var/run/dovecot/auth-userdb,然后重新启动 postfix 和 dovecot(确保用户 dovecot 以 权限运行/var/run/dovecot)。通常这可以修复此类问题。

Netstat 还会显示 unix 域套接字。检查其输出(使用netstat -nvlap | less并搜索路径或 dovecot)以确保 dovecot 正在监听。

相关内容