我的邮件服务器有一个Docker堆栈。

我的docker-compose.xml包含

version: '3.7'
services:
    postfix:
        ...
    dovecot:
        ....
        ports:
            - "110:110"
            - "995:995"
            - "143:143"
            - "993:993"
        networks:
            - mail
        ....
    roundcube:
        image: roundcube/roundcubemail
        container_name: roundcube
        environment:
            - ROUNDCUBEMAIL_DEFAULT_HOST=dovecot
             # - ROUNDCUBEMAIL_DEFAULT_PORT=993
        networks:
            - proxy
            - mail


我还有一个Nginx容器作为所有Web应用程序的代理运行。对于圆立方我有

set $roundcube_upstream http://roundcube;
location /roundcube/ {
    rewrite ^/roundcube/(.*) /$1 break;
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    proxy_set_header Host $host;
    proxy_pass $roundcube_upstream;
}


通过该配置,它可以正常工作。我可以转到https://www.mydomain.be/rouncube/,然后可以登录。默认端口为143。因此roundcube si使用imap连接到dovecot。

现在,我想使用端口993和ssl / tls。

我尝试对ROUNDCUBEMAIL_DEFAULT_PORT = 993进行分解,但是也使用了ssl:// dovecot或tls:// dovecot或ssl://mail.mydomain.be,...,但是没有任何作用。

当我单击连接按钮时,过了一会儿我收到一个nginx错误页面。在我的代理日志中,我可以看到

2019/01/31 09:29:25 [error] 460#460: *82483 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 194.197.210.75, server: www.mydomain.be, request: "POST /roundcube/?_task=login HTTP/1.1", upstream: "http://172.18.0.9:80/?_task=login", host: "www.mydomain.be", referrer: "https://www.mydomain.be/roundcube/"


而且我不明白http://172.18.0.9:80/?_task=login的来源?

使用Thunderbird客户端,我可以在该端口上进行连接。

有什么问题 ?

编辑

使用

        - ROUNDCUBEMAIL_DEFAULT_HOST=ssl://dovecot
        - ROUNDCUBEMAIL_DEFAULT_PORT=993


我现在有一个响应:与存储服务器的连接错误。

在我的roundcube日志中:

errors: <1db522a3> IMAP Error: Login failed for [email protected] from 172.18.0.8(X-Real-IP: ...,X-Forwarded-For: ...). Could not connect to ssl://dovecot:993: Unknown reason in /var/www/html/program/lib/Roundcube/rcube_imap.php on line 196 (POST /?_task=login&_action=login)172.18.0.8 - - [31/Jan/2019:13:57:37 +0100] "POST /?_task=login HTTP/1.1" 200 3089 "https://www.mydomain.be/roundcube/?_task=login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0"


和鸽舍原木

2019-01-31T13:57:38.002653+01:00 536ff3507263 dovecot: auth: Debug: auth client connected (pid=35),
2019-01-31T13:57:38.010096+01:00 536ff3507263 dovecot: imap-login: Disconnected (no auth attempts in 0 secs): user=<>, rip=192.168.240.3, lip=192.168.240.2, TLS, session=<nVssksCAT7LAqPAD>


所以鸽派联系得很好,但是...?不知道是什么问题。

最佳答案

您的问题是,roundcube默认需要验证TLS或SSL证书。从邮件服务器复制证书,使用letencrypt验证证书,或在Roundcube配置中关闭对等验证。

09-11 17:42