Am 26.08.2018 um 15:25 schrieb TE Dukes:> Checked maillog: > > Aug 26 09:12:31 ts130 postfix/qmgr[2194]: E5B948331053: from=<fail2ban at palmettodomains.com>, size=469, nrcpt=1 (queue active) > Aug 26 09:12:31 ts130 postfix/smtp[2307]: connect to 127.0.0.1[127.0.0.1]:10024: Connection refused > Aug 26 09:12:32 ts130 postfix/smtp[2307]: E5B948331053: to=<root at ts130.palmettodomains.com>, orig_to=<root>, relay=none, delay=77, delays=77/0.39/0/0, dsn=4.4.1, status=deferred (connect to 127.0.0.1[127.0.0.1]:10024: Connection refused) > Aug 26 09:12:34 ts130 postfix/pickup[2193]: 4670E8252A22: uid=0 from=<fail2ban at palmettodomains.com> > Aug 26 09:12:34 ts130 postfix/cleanup[2197]: 4670E8252A22: message-id=<20180826131234.4670E8252A22 at ts130.palmettodomains.com> > Aug 26 09:12:34 ts130 postfix/qmgr[2194]: 4670E8252A22: from=<fail2ban at palmettodomains.com>, size=482, nrcpt=1 (queue active) > Aug 26 09:12:34 ts130 postfix/smtp[2307]: connect to 127.0.0.1[127.0.0.1]:10024: Connection refused > Aug 26 09:12:34 ts130 postfix/smtp[2307]: 4670E8252A22: to=<root at ts130.palmettodomains.com>, orig_to=<root>, relay=none, delay=0.58, delays=0.58/0/0/0, dsn=4.4.1, status=deferred (connect to 127.0.0.1[127.0.0.1]:10024: Connection refused) > > Really appreciate everyone's help and patience!That part of the log just indicates that your service which is called inb port 10024 isn't running. In your setup that is likely the amavisd-new filter service. Make sure it runs or take it out of your Postfix configuration. Alexander
> -----Original Message----- > From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of Alexander > Dalloz > Sent: Sunday, August 26, 2018 11:01 AM > To: centos at centos.org > Subject: Re: [CentOS] Mail has quit working > > Am 26.08.2018 um 15:25 schrieb TE Dukes: > > Checked maillog: > > > > Aug 26 09:12:31 ts130 postfix/qmgr[2194]: E5B948331053: > from=<fail2ban at palmettodomains.com>, size=469, nrcpt=1 (queue active) > > Aug 26 09:12:31 ts130 postfix/smtp[2307]: connect to > 127.0.0.1[127.0.0.1]:10024: Connection refused > > Aug 26 09:12:32 ts130 postfix/smtp[2307]: E5B948331053: > to=<root at ts130.palmettodomains.com>, orig_to=<root>, relay=none, > delay=77, delays=77/0.39/0/0, dsn=4.4.1, status=deferred (connect to > 127.0.0.1[127.0.0.1]:10024: Connection refused) > > Aug 26 09:12:34 ts130 postfix/pickup[2193]: 4670E8252A22: uid=0 > from=<fail2ban at palmettodomains.com> > > Aug 26 09:12:34 ts130 postfix/cleanup[2197]: 4670E8252A22: message- > id=<20180826131234.4670E8252A22 at ts130.palmettodomains.com> > > Aug 26 09:12:34 ts130 postfix/qmgr[2194]: 4670E8252A22: > from=<fail2ban at palmettodomains.com>, size=482, nrcpt=1 (queue active) > > Aug 26 09:12:34 ts130 postfix/smtp[2307]: connect to > 127.0.0.1[127.0.0.1]:10024: Connection refused > > Aug 26 09:12:34 ts130 postfix/smtp[2307]: 4670E8252A22: > to=<root at ts130.palmettodomains.com>, orig_to=<root>, relay=none, > delay=0.58, delays=0.58/0/0/0, dsn=4.4.1, status=deferred (connect to > 127.0.0.1[127.0.0.1]:10024: Connection refused) > > > > Really appreciate everyone's help and patience! > > That part of the log just indicates that your service which is called > inb port 10024 isn't running. In your setup that is likely the > amavisd-new filter service. Make sure it runs or take it out of your > Postfix configuration. > > AlexanderThanks. I did open the port but made no difference. I found this in the roundcube mail error file: [26-Aug-2018 11:48:41 -0400]: <a763f95e> IMAP Error: Login failed for tdukes from 192.168.1.102. Could not connect to localhost:143: php_network_getaddresses: getaddrinfo failed: System error in /usr/share/roundcubemail/program/lib/Roundcube/rcube_imap.php on line 197 (POST /?_task=login?_task=login&_action=login) There is also a warning about the time zone. It's set as America/New_York in php.ini
Am 26.08.2018 um 18:12 schrieb TE Dukes:> Thanks. I did open the port but made no difference. > > I found this in the roundcube mail error file: > > [26-Aug-2018 11:48:41 -0400]: <a763f95e> IMAP Error: Login failed for tdukes > from 192.168.1.102. Could not connect to localhost:143: > php_network_getaddresses: getaddrinfo failed: System error in > /usr/share/roundcubemail/program/lib/Roundcube/rcube_imap.php on line 197 > (POST /?_task=login?_task=login&_action=login) > > There is also a warning about the time zone. It's set as America/New_York in > php.iniSorry to say, but you have to learn to analyze problems systematically and by following simples approaches. At this point it is not useful to get Roundcube involved. You see a basic error message "Could not connect to localhost:143". So test that without using additional software. Foremost consult the maillog, in this case the log content produced by dovecot. And test connectivity on the lowest level. echo QUIT | openssl s_client -connect localhost:143 -starttls imap That must be successful first. You can too test "lsof -i :143" or "ss -tulpen | grep 143". And tail your maillog. Alexander