BPOS pop3 ssl fetchmail

BPOS pop3 ssl fetchmail

尝试配置 fetchmail 以从 BPOS red001.mail.microsoftonline.com pop3 服务器下载 pop3 ssl 邮件。但是,BPOS ssl 证书似乎是自签名的,不允许成功进行 ssl 登录。

遵循指南http://bronski.net/data/fetchmail-eng.php

这里有谁能让 fetchmail 拉取 BPOS pop3 ssl 邮箱吗?

答案1

解决了这个问题。回答我的问题,以防有人在谷歌上搜索到这个,这对他们有帮助。

.fetchmailrc

# initial setup

set postmaster "localaccount"
set daemon 600
set invisible

# must provide ssl fingerprint for self signed ssl certificates
# use "fetchmail -d0 -vk red001.mail.microsoftonline.com" to find server ssl fingerprint
sslfingerprint "00:00:00:00:00:00:00:0B:00:00:00:00:00:00:00:00"

# accounts to poll

#[email protected]

poll "red001.mail.microsoftonline.com" protocol POP3 uidl auth password
user '[email protected]' there with password 'password' is localaccount here options ssl
#mda "/usr/bin/procmail -m /home/localaccount/.procmailrc"
keep

答案2

听起来你已经用选项配置了fetchmail --sslcertck,如下所述在手册中。尝试删除该选项。如果这没有帮助,信息常见问题解答中要求将有助于诊断问题,审查fetchmail-users 邮件列表存档这种类型的问题经常出现(每年都会出现几次)。

我还注意到,你提到的指南涵盖了非常fetchmail 的旧版本,因此可能不再完全准确。

相关内容