我的 Dovecot 正在运行,但有些服务似乎不起作用。以下是不起作用的服务。
Jun 05 10:05:27 xxx.com systemd[1]: Started Dovecot IMAP/POP3 email server.
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(lmtp): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(anvil): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(pop3-login): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(imap-login): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(managesieve-login): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: log: Fatal: Dovecot version mismatch: Master is v2.3.17, log is v2.3.19 (if you don't care, set version_ignore=yes)
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(log): child 16110 returned error 89 (Fatal failure)
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(log): command startup failed, throttling for 2.000 secs
Jun 05 10:05:27 xxx.com dovecot[16102]: master: Error: service(config): command startup failed, throttling for 2.000 secs
我尝试更改 10-master.conf 中的服务配置,但没有成功。
以下是我的作品。
#default_process_limit = 100
#default_client_limit = 1000
#default_vsz_limit = 256M
#default_login_user = dovenull
#default_internal_user = dovecot
service imap-login {
inet_listener imap {
port = 143
}
inet_listener imaps {
#port = 993
#ssl = yes
}
# service_count = 1
# process_min_avail = 0
# vsz_limit = $default_vsz_limit
}
service pop3-login {
inet_listener pop3 {
port = 110
}
inet_listener pop3s {
#port = 995
#ssl = yes
}
service submission-login {
inet_listener submission {
#port = 587
}
}
service lmtp {
unix_listener lmtp {
mode = 0666
}
#inet_listener lmtp {
# Avoid making LMTP visible for the entire internet
#address =
#port =
}
}
service imap {
# vsz_limit = $default_vsz_limit
# process_limit = 1024
}
service pop3 {
# process_limit = 1024
}
service submission {
# process_limit = 1024
}
service auth {
unix_listener auth-userdb {
#mode = 0666
#user =
#group =
}
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}
# user = $default_internal_user
}
service auth-worker {
# user = root
}
service dict {
unix_listener dict {
#mode = 0600
#user =
#group =
}
}
我怎样才能解决这个问题?
问候,
答案1
我使用重新安装了 Dovecot ./build/dovecot
,并将其更新到最新版本,问题已解决。但是,我仍然无法通过 DirectAdmin 登录,并且显示无法连接 IMAP 服务器的错误。