Snappy Mail/Rainloop 身份验证失败

问题描述 投票:0回答:1

当我使用域创建电子邮件并尝试使用它显示的相同内容登录时,我安装了全新的 cyberpanel 安装

认证失败
服务器消息:AUTHENTICATIONFAILED 身份验证失败。

我正在使用 contabo 的 VPS 服务器:

操作系统:Ubuntu 18.04(64 位)

使用以下命令安装 Cyperpanel。

sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh)

当我检查错误时,我得到以下错误:

Sep 14 19:44:42 vmi1011202.contaboserver.net dovecot[733]: auth-worker(1939): Error: sql([email protected],127.0.0.1,): passdb 中的密码无效:crypt()失败:无效参数 9 月 14 日 19:44:44 vmi1011202.contaboserver.net dovecot[733]:imap-login:断开连接(身份验证失败,2 秒内尝试 1 次):[email protected],method=PLAIN,rip=127.0.0.1 , lip=127.0.0.1, TLS, session=

mail-server crypt dovecot cyber-panel rainloop
1个回答
0
投票

这是因为 dovecot 版本,一旦我们将 devecot 从 2.2.x 升级到 2.3.x,它就会工作。

按照以下步骤。

将dovecot的reposity key添加到rpm key store:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 18A348AEED409DA1

将官方 dovecot Ubuntu Repo 添加到 sources.list (此示例适用于 Ubuntu 18)

sudo nano /etc/apt/sources.list.d/dovecot.list

插入:

deb [arch=amd64] https://repo.dovecot.org/ce-2.3-latest/ubuntu/bionic/ bionic main

保存并关闭编辑器

做一个:

sudo apt update

做一个:

sudo apt dist-upgrade

重启你的机器。

reboot
© www.soinside.com 2019 - 2024. All rights reserved.