通过SSL连接电子邮件设置时出现SSL错误

我会尽力给更多的信息,但我不知道为什么这个错误是造成的。 我在error.log文件中发现了一些这些错误。

我正在使用Debain和iRedMail。

任何人都可以帮忙吗?

[Sun Aug 14 00:45:15 2011] [info] [client ::1] Connection to child 1 established (server example.co.uk:443) [Sun Aug 14 00:45:15 2011] [info] Seeding PRNG with 648 bytes of entropy [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_kernel.c(1754): OpenSSL: Handshake: start [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_kernel.c(1762): OpenSSL: Loop: before/accept initialization [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_io.c(1832): OpenSSL: read 11/11 bytes from BIO#8e5dd80 [mem: 8efb668] (BIO dump follows) [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_io.c(1765): +------------------------------------------------------------------------+ [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_io.c(1804): | 0000: 4f 50 54 49 4f 4e 53 20-2a 20 48 OPTIONS * H | [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_io.c(1810): +-------------------------------------------------------------------------+ [Sun Aug 14 00:45:15 2011] [debug] ssl_engine_kernel.c(1791): OpenSSL: Exit: error in SSLv2/v3 read client hello A [Sun Aug 14 00:45:15 2011] [info] [client ::1] (os 0x08e37090)Unrecognized resolver error: SSL library error 1 in handshake (server example.co.uk:443) [Sun Aug 14 00:45:15 2011] [info] SSL Library Error: 336027900 error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol speaking not SSL to HTTPS port!? [Sun Aug 14 00:45:15 2011] [info] [client ::1] Connection closed to child 1 with abortive shutdown (server example.co.uk:443) 

关键线索在第二行:

 unknown protocol speaking not SSL to HTTPS port!? 

(从技术上讲,第7行的协议转储给你提供了一个类似的提示,但它更加神秘)

您可能认为您正在与服务器通话,但实际上客户端正常讲话的是HTTP。 改变你的url为https:// ,一切都应该没问题。

 OPTIONS * H 

看起来像一个http OPTIONS请求(这是普通的而不是ssl ????)

我发现谷歌浏览器正在加载我的网页后,这些请求,但我不使用ssl的网站/页面上

我无法find任何参考这个在铬:/净内部/#事件

至less我想知道为什么要这些请求,但我希望这有助于peaple(谷歌在这里下降了我)

你知道你实际上是基于你访问networking服务器产生错误吗? 看起来它可能是某人运行端口扫描程序的实例,可能正在寻找Web代理 – 这确实发生了。