确认 DavMail 连接

确认 DavMail 连接

我正在使用 DavMail 连接到我雇主的 Outlook 服务器。在尝试配置电子邮件客户端以与 DavMail 一起使用之前,我想确认 DavMail 已正确配置并已连接到我的雇主电子邮件。有没有什么方法可以在不提供任何凭据的情况下连接到电子邮件服务器?

编辑

我尝试在运行 davmail 的情况下执行此操作

$ telnet imap.localhost 1143 #davmail's imap port
Trying ::1%1...
Connected to imap.localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4REV1 AUTH=LOGIN MOVE] IMAP4rev1 DavMail 4.5.1-2303 server ready
a1 LOGIN <myusername> <mypassword>
a1 NO LOGIN failed

然后 DavMail 托盘图标显示身份验证失败的通知。所以我认为我正确设置了 DavMail,只是凭据不正确,但老实说我不知道​​。我收到来自 DavMail 而非 Exchange Server 的回复消息。我是否可以断定身份验证失败意味着 DavMail 已连接到服务器?

第二次尝试

使用openssl

$ openssl s_client -connect imap.localhost:1143 -crlf
CONNECTED(00000003)
140571891091088:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:795:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 7 bytes and written 308 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
---
$

相关内容