Control Web Panel

WebPanel => CentOS-WebPanel Bugs => Topic started by: daro2013 on July 21, 2018, 06:32:04 PM

Title: folder cannot be accessed by IP
Post by: daro2013 on July 21, 2018, 06:32:04 PM
Hi sir,

I am a newbie to CWP panel, but I have great support from this community which is amazing.

I managed to install and configure (including DNS) CWP successfully with the support from the community. However, I still have another issue whether it is a bug or I have missed some configurations.

The issue: after successful installation & config of CWP, I both my domain and its IP can display default CWP page; they are:

http://www.mydomain.com
http://my_server_IP


However, after I uploaded an application to a folder for example:

http://www.mydomain.com/apps/


I can only access that folder via my domain for example: http://www.mydomain.com/apps/

but I cannot access it by IP: http://my_server_IP/apps/ which generates this errors:

Not Found
The requested URL /apps/ was not found on this server.


Here is my DNS record settings:

; Panel %version%
; Zone file for ns1.mydomain.com
$TTL 14400
mydomain.com.      86400        IN      SOA     ns1.mydomain.com. admin.mydomain.com. (
            2013071600      ; serial, todays date+todays
            86400           ; refresh, seconds
            7200            ; retry, seconds
            3600000         ; expire, seconds
            86400 )         ; minimum, seconds
    
mydomain.com.   86400   IN   NS   ns1.mydomain.com.
mydomain.com.   86400   IN   NS   ns2.mydomain.com.
 
ns1   86400   IN   A   167.114.xxx.xxx
ns2   86400   IN   A   167.114.xxx.xxx
 
mydomain.com.   86400   IN   A   167.114.xxx.xxx
 
localhost   86400   IN   A   127.0.0.1
 
mydomain.com.   86400   IN   MX   0   mydomain.com.
 
server   IN   A   167.114.xxx.xxx
www   IN   A   167.114.xxx.xxx


What config or settings are required so that I can access that folder via both domain and IP?

Cheers
Daro

Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 21, 2018, 06:48:34 PM
Update: I have tried to issue this:

$ chown -R nobody.nobody /usr/local/apache/htdocs/

as suggested on this link:

http://forum.centos-webpanel.com/apache/how-to-setup-website-on-the-ip-address/


It does not work on my server.

Any advice is very appreciated.

Cheers
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 21, 2018, 07:05:55 PM
You can only access it with.

http://serverip/~username/applicationname
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 22, 2018, 08:15:39 AM
Thanks for your reply.

I may not be very clear with my question above. Basically, I would like to display my website or an application in a browser via either domain name or IP:

http://www.mydomain.com/apps/
http://my_server_ip/apps/


they both should display the same page content.

What config is required to achieve this?

Cheers
Title: Re: folder cannot be accessed by IP
Post by: studio4host on July 22, 2018, 08:38:57 AM
this is not recommended as it requires custom configuration which can cause you later issues with the automatic updates

Anyway there are a few ways to do that

- copy your website data to /usr/local/apache/htdocs/ and then you can access it by ip, for domain access you will need to delete that domain from panel and create only dns entry for it.

- other way is to edit /usr/local/apache/conf/sharedip.conf and replace it to look like your vhost for domain
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 22, 2018, 09:08:39 AM
Well I hope you have only 1 domain on server. If yes the try the below.

Code: [Select]
nano /usr/local/apache/conf/sharedip.conf
There should be "<VirtualHost IPAddress:80>"

Replace the with "<VirtualHost *:80>"

Save and restart apache.

Now your site should run fine with ip too :)


Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 22, 2018, 10:34:12 AM
Hi Bullten,

I have tried as your advice:

$ vi /usr/local/apache/conf/sharedip.conf

I changed: <VirtualHost xxx.xxx.xxx.xxx:80>

to: <VirtualHost *:80>

then restart apache:

$ systemctl reload named && systemctl restart named


The issue is still the same.

Any advice?

Thanks
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 22, 2018, 10:35:21 AM
to restart apache its

Code: [Select]
service httpd restart
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 22, 2018, 11:00:15 AM
Hi Bullten,

It is working now; I have chenged

<VirtualHost xxx.xxx.xxx.xxx:80>      to    <VirtualHost *:80>

and:

ServerName mydomain.com (but not required, just leave as default - still works)

and issue these commands in SSH:

$ systemctl reload named && systemctl restart named && systemctl restart httpd


Many thanks again to Bullten.

All good now!
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 23, 2018, 08:45:24 PM
Hi bullten,

May I ask you another question? My CWP is very slow; after I have some readings, this slowness may be caused by DNS settings. Here are my DNS settings:


$TTL 14400
mydomain.com.      38400        IN      SOA     ns1.mydomain.com. admin.mydomain.com. (
            2013071600      ; serial, todays date+todays
            5400          ; refresh, seconds
            900            ; retry, seconds
            3600000         ; expire, seconds
            3600   )     ; minimum, seconds

mydomain.com.   14400   IN   NS   ns1.mydomain.com.
mydomain.com.   14400   IN   NS   ns2.mydomain.com.

ns1   14400   IN   A   172.20.xxx.xxx
ns2   14400   IN   A   172.20.xxx.xxx

; mydomain.com. IN A 172.20.xxx.xxx
mydomain.com.   14400   IN   A   172.20.xxx.xxx
; localhost.mydomain.com. IN A 127.0.0.1
localhost   14400   IN   A   127.0.0.1
;mydomain.com. IN MX 0 mydomain.com.
mydomain.com.   14400   IN   MX   0   mydomain.com.

mail IN CNAME mydomain.com.
www IN CNAME mydomain.com.
ftp IN CNAME mydomain.com.
; Add additional settings below this line
_dmarc   14400   IN   TXT   "v=DMARC1; p=none"
ns1.mydomain.com. 14400 IN A 172.20.xxx.xxx
ns2.mydomain.com. 14400 IN A 172.20.xxx.xxx


Do you what could be wrong with them? I also dont undestand why the closing bracket is before minimum, seconds:

3600   )     ; minimum, seconds


I did try to move it to the end after minimum, seconds, but Apached wont bind with this command:

$ systemctl restart named


Do you know what could be wrong with my DNS settings?

I very appreciate your help.

Thanks
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 23, 2018, 08:56:23 PM
Code: [Select]
I also dont undestand why the closing bracket is before minimum, seconds:
Thats because there is opening bracket after ns1.mydomain.com. admin.mydomain.com. ( :P and its rightly placed.


systemctl restart named is command to restart bind not apache. It has nothing to do with apache. To restart apache you need to use systemctl restart httpd.

I dont think slowness will be caused because of your dns. You must check server logs for that




Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 23, 2018, 09:18:32 PM
Hi bullten,

Thank you for very fast support.

Basically I run a mail application called Mail Wizz on CWP. I have another VPS server (with the same specs) running on old CWP version (I used an automatic scripts created by someone to install CWP - but no longer works now), it is very fast. It can send emails out to a Power MTA server at a speed of 1000 emails/minute, while the server I have asked you to fix at the beginning with new version of CWP is sending only at 150 - 200 emails/minute; it wont go higher than that.

I have tried to use similar DNS settings from the fast servers to the slow one, but no luck.

Do you know what could be wrong with that?

Cheers
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 23, 2018, 09:41:24 PM
Update: I have checked error logs in this file:

$ vi /usr/local/cwpsrv/logs/error_log

with some of its content shown below:

2018/07/22 05:57:53 [notice] 13844#0: ModSecurity for nginx (STABLE)/2.9.2 (http://www.modsecurity.org/) configured.
2018/07/22 05:57:53 [notice] 13844#0: ModSecurity: APR compiled version="1.6.2"; loaded version="1.6.2"
2018/07/22 05:57:53 [notice] 13844#0: ModSecurity: PCRE compiled version="8.32 "; loaded version="8.32 2012-11-30"
2018/07/22 05:57:53 [notice] 13844#0: ModSecurity: LIBXML compiled version="2.9.1"
2018/07/22 05:57:53 [notice] 13844#0: ModSecurity: Original server signature: ModSecurity Standalone
2018/07/22 05:57:53 [notice] 13844#0: ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity for nginx (STABLE)/2.9.2 (http://www.modsecurity.org/) configured.
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity: APR compiled version="1.6.2"; loaded version="1.6.2"
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity: PCRE compiled version="8.32 "; loaded version="8.32 2012-11-30"
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity: LIBXML compiled version="2.9.1"
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity: Original server signature: ModSecurity Standalone
2018/07/22 05:57:53 [notice] 13845#0: ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
2018/07/22 05:58:10 [notice] 752#0: ModSecurity for nginx (STABLE)/2.9.2 (http://www.modsecurity.org/) configured.
2018/07/22 05:58:10 [notice] 752#0: ModSecurity: APR compiled version="1.6.2"; loaded version="1.6.2"
2018/07/22 05:58:10 [notice] 752#0: ModSecurity: PCRE compiled version="8.32 "; loaded version="8.32 2012-11-30"
2018/07/22 05:58:10 [notice] 752#0: ModSecurity: LIBXML compiled version="2.9.1"
2018/07/22 05:58:10 [notice] 752#0: ModSecurity: Original server signature: ModSecurity Standalone
2018/07/22 05:58:10 [notice] 752#0: ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
2018/07/22 05:58:11 [notice] 789#0: ModSecurity for nginx (STABLE)/2.9.2 (http://www.modsecurity.org/) configured.
2018/07/22 05:58:11 [notice] 789#0: ModSecurity: APR compiled version="1.6.2"; loaded version="1.6.2"
2018/07/22 05:58:11 [notice] 789#0: ModSecurity: PCRE compiled version="8.32 "; loaded version="8.32 2012-11-30"
2018/07/22 05:58:11 [notice] 789#0: ModSecurity: LIBXML compiled version="2.9.1"
2018/07/22 05:58:11 [notice] 789#0: ModSecurity: Original server signature: ModSecurity Standalone
2018/07/22 05:58:11 [notice] 789#0: ModSecurity: Status engine is currently disabled, enable it by set SecStatusEngine to On.
2018/07/22 05:59:59 [error] 794#0: *2 open() "/usr/local/cwpsrv/htdocs/admin/favicon.ico" failed (2: No such file or directory), client: 82.23.219.148, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/login/index.php"
2018/07/22 06:07:32 [error] 794#0: *10 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0
PHP message: PHP Notice:  Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0" while reading upstream, client: 82.23.219.148, server: localhost, request: "GET /admin/index.php?module=fast_login HTTP/1.1", upstream: "fastcgi://unix:/usr/local/cwp/php71/var/sockets/cwpsrv.sock:", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/login/index.php"
2018/07/22 06:07:59 [error] 794#0: *10 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0
PHP message: PHP Notice:  Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0" while reading upstream, client: 82.23.219.148, server: localhost, request: "GET /admin/index.php?module=nameservers HTTP/1.1", upstream: "fastcgi://unix:/usr/local/cwp/php71/var/sockets/cwpsrv.sock:", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/admin/index.php?module=fast_login"
2018/07/22 06:08:30 [error] 794#0: *10 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0
PHP message: PHP Notice:  Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0" while reading upstream, client: 82.23.219.148, server: localhost, request: "POST /admin/index.php?module=nameservers HTTP/1.1", upstream: "fastcgi://unix:/usr/local/cwp/php71/var/sockets/cwpsrv.sock:", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/admin/index.php?module=nameservers"
2018/07/22 06:08:42 [error] 795#0: *36 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0
PHP message: PHP Notice:  Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0" while reading upstream, client: 82.23.219.148, server: localhost, request: "GET /admin/index.php?module=settings HTTP/1.1", upstream: "fastcgi://unix:/usr/local/cwp/php71/var/sockets/cwpsrv.sock:", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/admin/index.php?module=nameservers"
2018/07/22 06:08:52 [error] 794#0: *10 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0
PHP message: PHP Notice:  Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0" while reading upstream, client: 82.23.219.148, server: localhost, request: "POST /admin/index.php?module=settings HTTP/1.1", upstream: "fastcgi://unix:/usr/local/cwp/php71/var/sockets/cwpsrv.sock:", host: "167.114.98.75:2030", referrer: "http://167.114.98.75:2030/admin/index.php?module=settings"
2018/07/22 06:09:12 [error] 795#0: *36 FastCGI sent in stderr: "PHP message: PHP Warning:  mysqli::__construct(): (HY000/1049): Unknown database 'oauthv2' in /usr/local/cwpsrv/htdocs/resources/admin/include/functions.php on line 0


What could cause the slowness of CWP?

Very appreciate your help.
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 23, 2018, 09:48:48 PM
what is output of

Code: [Select]
tail -f /var/log/maillog
or

Code: [Select]
cat /var/log/maillog
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 10:40:57 AM
Hi,

Here are the outputs:

[root@vps196134 ~]# tail -f /var/log/maillog
Jul 24 03:22:41 vps196134 postfix/smtpd[8428]: lost connection after CONNECT from unknown[unknown]
Jul 24 03:22:41 vps196134 postfix/smtpd[8428]: disconnect from unknown[unknown]
Jul 24 03:26:01 vps196134 postfix/anvil[8421]: statistics: max connection rate 1/60s for (smtp:unknown) at Jul 24 03:22:37
Jul 24 03:26:01 vps196134 postfix/anvil[8421]: statistics: max connection count 1 for (smtp:unknown) at Jul 24 03:22:37
Jul 24 03:26:01 vps196134 postfix/anvil[8421]: statistics: max cache size 2 at Jul 24 03:22:41
Jul 24 03:35:29 vps196134 postfix/pickup[7169]: 4A3442DF0: uid=0 from=<root>
Jul 24 03:35:29 vps196134 postfix/cleanup[8817]: 4A3442DF0: message-id=<20180724073529.4A3442DF0@vps196134.vps.ovh.ca>
Jul 24 03:35:29 vps196134 postfix/qmgr[1039]: 4A3442DF0: from=<root@vps196134.vps.ovh.ca>, size=10253, nrcpt=1 (queue active)
Jul 24 03:35:29 vps196134 postfix/local[8825]: 4A3442DF0: to=<root@vps196134.vps.ovh.ca>, orig_to=<root>, relay=local, delay=0.13, delays=0.11/0.01/0/0, dsn=2.0.0, status=sent (delivered to mailbox)
Jul 24 03:35:29 vps196134 postfix/qmgr[1039]: 4A3442DF0: removed


[root@vps196134 ~]# cat /var/log/maillogcat /var/log/maillog
cat: /var/log/maillogcat: No such file or directory
Jul 22 04:54:01 vps196134 postfix/postfix-script[950]: starting the Postfix mail system
Jul 22 04:54:01 vps196134 postfix/master[952]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 05:50:40 vps196134 postfix/postfix-script[939]: starting the Postfix mail system
Jul 22 05:50:40 vps196134 postfix/master[941]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 05:58:12 vps196134 postfix/postfix-script[1019]: warning: not owned by root: /etc/postfix/vacation.php
Jul 22 05:58:12 vps196134 postfix/postfix-script[1038]: starting the Postfix mail system
Jul 22 05:58:12 vps196134 postfix/master[1040]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: connect from mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: C07CF2DE2: client=mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:31 vps196134 postfix/cleanup[16359]: C07CF2DE2: message-id=<92ab7405c3b2063011efa5c836f1c753@gkeue95wf.eu>
Jul 22 08:43:31 vps196134 postfix/qmgr[1042]: C07CF2DE2: from=<admin@gkeue95wf.eu>, size=5430, nrcpt=1 (queue active)
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: disconnect from mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:32 vps196134 postfix/pipe[16362]: C07CF2DE2: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.25, delays=0.07/0.04/0/0.14, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 08:43:32 vps196134 postfix/qmgr[1042]: C07CF2DE2: removed
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max connection rate 1/60s for (smtp:170.75.175.69) at Jul 22 08:43:31
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max connection count 1 for (smtp:170.75.175.69) at Jul 22 08:43:31
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max cache size 1 at Jul 22 08:43:31
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: connect from mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: 67FA02DE2: client=mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:55:53 vps196134 postfix/cleanup[17290]: 67FA02DE2: message-id=<a94408275de07fd19b4958c2e03d5746@gq71bposw.eu>
Jul 22 08:55:53 vps196134 postfix/qmgr[1042]: 67FA02DE2: from=<admin@gq71bposw.eu>, size=5430, nrcpt=1 (queue active)
Jul 22 08:55:53 vps196134 postfix/pipe[17292]: 67FA02DE2: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.09, delays=0.05/0.01/0/0.02, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 08:55:53 vps196134 postfix/qmgr[1042]: 67FA02DE2: removed
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: disconnect from mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max connection rate 1/60s for (smtp:170.75.175.17) at Jul 22 08:55:53
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max connection count 1 for (smtp:170.75.175.17) at Jul 22 08:55:53
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max cache size 1 at Jul 22 08:55:53
Jul 22 09:00:14 vps196134 postfix/smtpd[17728]: connect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:14 vps196134 postfix/smtpd[17728]: EA2052DE3: client=mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:14 vps196134 postfix/cleanup[17738]: EA2052DE3: message-id=<7dede34a447f4c95faca1520b5d57208@hgd4gft.eu>
Jul 22 09:00:15 vps196134 postfix/qmgr[1042]: EA2052DE3: from=<info@hgd4gft.eu>, size=5376, nrcpt=1 (queue active)
Jul 22 09:00:15 vps196134 postfix/smtpd[17728]: disconnect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:15 vps196134 postfix/pipe[17740]: EA2052DE3: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.09, delays=0.05/0.01/0/0.02, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 09:00:15 vps196134 postfix/qmgr[1042]: EA2052DE3: removed
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max connection rate 1/60s for (smtp:170.75.175.189) at Jul 22 09:00:14
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max connection count 1 for (smtp:170.75.175.189) at Jul 22 09:00:14
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max cache size 1 at Jul 22 09:00:14
Jul 22 09:19:01 vps196134 postfix/smtpd[19206]: connect from mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/smtpd[19206]: 0A2932DE3: client=mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/cleanup[19214]: 0A2932DE3: message-id=<5fb0c8a86b82521c1b5fba8575eaa596@gkeue95wf.eu>
Jul 22 09:19:02 vps196134 postfix/qmgr[1042]: 0A2932DE3: from=<admin@gkeue95wf.eu>, size=4575, nrcpt=1 (queue active)
Jul 22 09:19:02 vps196134 postfix/smtpd[19206]: disconnect from mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/pipe[19216]: 0A2932DE3: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.1, delays=0.05/0.01/0/0.03, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 09:19:02 vps196134 postfix/qmgr[1042]: 0A2932DE3: removed
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max connection rate 1/60s for (smtp:170.75.175.21) at Jul 22 09:19:01
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max connection count 1 for (smtp:170.75.175.21) at Jul 22 09:19:01
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max cache size 1 at Jul 22 09:19:01
Jul 22 10:26:02 vps196134 postfix/postfix-script[1015]: warning: not owned by root: /etc/postfix/vacation.php
Jul 22 10:26:02 vps196134 postfix/postfix-script[1034]: starting the Postfix mail system
Jul 22 10:26:02 vps196134 postfix/master[1037]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 10:35:03 vps196134 postfix/pickup[1038]: 03DC12DE4: uid=0 from=<root>
Jul 22 10:35:03 vps196134 postfix/cleanup[2044]: 03DC12DE4: message-id=<20180722143503.03DC12DE4@vps196134.vps.ovh.ca>
Jul 22 10:35:03 vps196134 postfix/qmgr[1039]: 03DC12DE4: from=<root@vps196134.vps.ovh.ca>, size=750, nrcpt=1 (queue active)
Jul 22 10:35:03 vps196134 postfix/local[2051]: 03DC12DE4: to=<root@vps196134.vps.ovh.ca>, orig_to=<root>, relay=local, delay=0.14, delays=0.11/0.02/0/0.01, dsn=2.0.0, status=sent (delivered to mailbox)
Jul 22 10:35:03 vps196134 postfix/qmgr[1039]: 03DC12DE4: removed
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: connect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: 8EF882DC8: client=mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/cleanup[29172]: 8EF882DC8: message-id=<64f29bb2333283897f8ba58a18574718@hgd4gft.eu>
Jul 22 16:30:17 vps196134 postfix/qmgr[1039]: 8EF882DC8: from=<bounce@hgd4gft.eu>, size=5471, nrcpt=1 (queue active)
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: disconnect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/pipe[29174]: 8EF882DC8: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.13, delays=0.06/0.02/0/0.05, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 16:30:17 vps196134 postfix/qmgr[1039]: 8EF882DC8: removed
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max connection rate 1/60s for (smtp:170.75.175.189) at Jul 22 16:30:17
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max connection count 1 for (smtp:170.75.175.189) at Jul 22 16:30:17
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max cache size 1 at Jul 22 16:30:17
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: lost connection after CONNECT from unknown[192.158.224.193]
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: NOQUEUE: reject: RCPT from unknown[192.158.224.193]: 454 4.7.1 <chevyview450@gmail.com>: Relay access denied; from=<test@ip-167-114-98.net> to=<chevyview450@gmail.com> proto=SMTP helo=<win-clj1b0gq6jp.domain>
Jul 22 16:58:38 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:38 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:58:40 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:58:44 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:44 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:58:49 vps196134 postfix/smtpd[31638]: lost connection after RCPT from unknown[192.158.224.193]
Jul 22 16:58:49 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:58:51 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:58:52 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:52 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:59:01 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:01 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:02 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:03 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:03 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:59:08 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:08 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:13 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 16:59:15 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:15 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:59:24 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:27 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:29 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:29 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:59:39 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:44 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:44 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:59:48 vps196134 postfix/smtpd[31638]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:48 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:54 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 17:00:02 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:02 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 17:00:03 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:03 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 17:00:04 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:00:06 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:06 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 17:00:08 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:08 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 17:00:12 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:00:14 vps196134 postfix/smtpd[31638]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:14 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 17:00:14 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:14 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 17:00:24 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:00:30 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:30 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 17:00:40 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 17:00:42 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:42 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 17:00:44 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:44 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 17:00:47 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:00:51 vps196134 postfix/smtpd[31881]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:51 vps196134 postfix/smtpd[31881]: connect from unknown[192.158.224.193]
Jul 22 17:00:57 vps196134 postfix/smtpd[31881]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:00:57 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:57 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 17:01:02 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:01:02 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 17:01:03 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:01:03 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 17:01:12 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:01:12 vps196134 postfix/smtpd[31881]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:01:12 vps196134 postfix/smtpd[31881]: disconnect from unknown[192.158.224.193]
Jul 22 17:01:15 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:01:15 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 17:01:25 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 17:01:27 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:01:27 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 17:01:28 vps196134 postfix/smtpd[31881]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:01:28 vps196134 postfix/smtpd[31881]: connect from unknown[192.158.224.193]
Jul 22 17:01:30 vps196134 postfix/smtpd[31881]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 17:01:32 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:01:32 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]

etc.


I started to run that Mail Wizz server to see if there are new errors; but the first output is not much and it seems not running anything, and the second output is very long.

Cheers
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 10:44:36 AM
sorry for mixed up command above, but the result is the same:


[root@vps196134 ~]# cat /var/log/maillog
Jul 22 04:54:01 vps196134 postfix/postfix-script[950]: starting the Postfix mail system
Jul 22 04:54:01 vps196134 postfix/master[952]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 05:50:40 vps196134 postfix/postfix-script[939]: starting the Postfix mail system
Jul 22 05:50:40 vps196134 postfix/master[941]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 05:58:12 vps196134 postfix/postfix-script[1019]: warning: not owned by root: /etc/postfix/vacation.php
Jul 22 05:58:12 vps196134 postfix/postfix-script[1038]: starting the Postfix mail system
Jul 22 05:58:12 vps196134 postfix/master[1040]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: connect from mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: C07CF2DE2: client=mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:31 vps196134 postfix/cleanup[16359]: C07CF2DE2: message-id=<92ab7405c3b2063011efa5c836f1c753@gkeue95wf.eu>
Jul 22 08:43:31 vps196134 postfix/qmgr[1042]: C07CF2DE2: from=<admin@gkeue95wf.eu>, size=5430, nrcpt=1 (queue active)
Jul 22 08:43:31 vps196134 postfix/smtpd[16349]: disconnect from mta2.gkeue95wf.eu[170.75.175.69]
Jul 22 08:43:32 vps196134 postfix/pipe[16362]: C07CF2DE2: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.25, delays=0.07/0.04/0/0.14, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 08:43:32 vps196134 postfix/qmgr[1042]: C07CF2DE2: removed
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max connection rate 1/60s for (smtp:170.75.175.69) at Jul 22 08:43:31
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max connection count 1 for (smtp:170.75.175.69) at Jul 22 08:43:31
Jul 22 08:46:52 vps196134 postfix/anvil[16352]: statistics: max cache size 1 at Jul 22 08:43:31
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: connect from mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: 67FA02DE2: client=mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:55:53 vps196134 postfix/cleanup[17290]: 67FA02DE2: message-id=<a94408275de07fd19b4958c2e03d5746@gq71bposw.eu>
Jul 22 08:55:53 vps196134 postfix/qmgr[1042]: 67FA02DE2: from=<admin@gq71bposw.eu>, size=5430, nrcpt=1 (queue active)
Jul 22 08:55:53 vps196134 postfix/pipe[17292]: 67FA02DE2: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.09, delays=0.05/0.01/0/0.02, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 08:55:53 vps196134 postfix/qmgr[1042]: 67FA02DE2: removed
Jul 22 08:55:53 vps196134 postfix/smtpd[17281]: disconnect from mta1.gq71bposw.eu[170.75.175.17]
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max connection rate 1/60s for (smtp:170.75.175.17) at Jul 22 08:55:53
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max connection count 1 for (smtp:170.75.175.17) at Jul 22 08:55:53
Jul 22 08:59:13 vps196134 postfix/anvil[17284]: statistics: max cache size 1 at Jul 22 08:55:53
Jul 22 09:00:14 vps196134 postfix/smtpd[17728]: connect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:14 vps196134 postfix/smtpd[17728]: EA2052DE3: client=mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:14 vps196134 postfix/cleanup[17738]: EA2052DE3: message-id=<7dede34a447f4c95faca1520b5d57208@hgd4gft.eu>
Jul 22 09:00:15 vps196134 postfix/qmgr[1042]: EA2052DE3: from=<info@hgd4gft.eu>, size=5376, nrcpt=1 (queue active)
Jul 22 09:00:15 vps196134 postfix/smtpd[17728]: disconnect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 09:00:15 vps196134 postfix/pipe[17740]: EA2052DE3: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.09, delays=0.05/0.01/0/0.02, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 09:00:15 vps196134 postfix/qmgr[1042]: EA2052DE3: removed
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max connection rate 1/60s for (smtp:170.75.175.189) at Jul 22 09:00:14
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max connection count 1 for (smtp:170.75.175.189) at Jul 22 09:00:14
Jul 22 09:03:35 vps196134 postfix/anvil[17730]: statistics: max cache size 1 at Jul 22 09:00:14
Jul 22 09:19:01 vps196134 postfix/smtpd[19206]: connect from mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/smtpd[19206]: 0A2932DE3: client=mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/cleanup[19214]: 0A2932DE3: message-id=<5fb0c8a86b82521c1b5fba8575eaa596@gkeue95wf.eu>
Jul 22 09:19:02 vps196134 postfix/qmgr[1042]: 0A2932DE3: from=<admin@gkeue95wf.eu>, size=4575, nrcpt=1 (queue active)
Jul 22 09:19:02 vps196134 postfix/smtpd[19206]: disconnect from mta3.gkeue95wf.eu[170.75.175.21]
Jul 22 09:19:02 vps196134 postfix/pipe[19216]: 0A2932DE3: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.1, delays=0.05/0.01/0/0.03, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 09:19:02 vps196134 postfix/qmgr[1042]: 0A2932DE3: removed
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max connection rate 1/60s for (smtp:170.75.175.21) at Jul 22 09:19:01
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max connection count 1 for (smtp:170.75.175.21) at Jul 22 09:19:01
Jul 22 09:22:22 vps196134 postfix/anvil[19208]: statistics: max cache size 1 at Jul 22 09:19:01
Jul 22 10:26:02 vps196134 postfix/postfix-script[1015]: warning: not owned by root: /etc/postfix/vacation.php
Jul 22 10:26:02 vps196134 postfix/postfix-script[1034]: starting the Postfix mail system
Jul 22 10:26:02 vps196134 postfix/master[1037]: daemon started -- version 2.10.1, configuration /etc/postfix
Jul 22 10:35:03 vps196134 postfix/pickup[1038]: 03DC12DE4: uid=0 from=<root>
Jul 22 10:35:03 vps196134 postfix/cleanup[2044]: 03DC12DE4: message-id=<20180722143503.03DC12DE4@vps196134.vps.ovh.ca>
Jul 22 10:35:03 vps196134 postfix/qmgr[1039]: 03DC12DE4: from=<root@vps196134.vps.ovh.ca>, size=750, nrcpt=1 (queue active)
Jul 22 10:35:03 vps196134 postfix/local[2051]: 03DC12DE4: to=<root@vps196134.vps.ovh.ca>, orig_to=<root>, relay=local, delay=0.14, delays=0.11/0.02/0/0.01, dsn=2.0.0, status=sent (delivered to mailbox)
Jul 22 10:35:03 vps196134 postfix/qmgr[1039]: 03DC12DE4: removed
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: connect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: 8EF882DC8: client=mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/cleanup[29172]: 8EF882DC8: message-id=<64f29bb2333283897f8ba58a18574718@hgd4gft.eu>
Jul 22 16:30:17 vps196134 postfix/qmgr[1039]: 8EF882DC8: from=<bounce@hgd4gft.eu>, size=5471, nrcpt=1 (queue active)
Jul 22 16:30:17 vps196134 postfix/smtpd[29161]: disconnect from mta1.hgd4gft.eu[170.75.175.189]
Jul 22 16:30:17 vps196134 postfix/pipe[29174]: 8EF882DC8: to=<admin@baiagmumr5g.eu>, relay=dovecot, delay=0.13, delays=0.06/0.02/0/0.05, dsn=2.0.0, status=sent (delivered via dovecot service)
Jul 22 16:30:17 vps196134 postfix/qmgr[1039]: 8EF882DC8: removed
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max connection rate 1/60s for (smtp:170.75.175.189) at Jul 22 16:30:17
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max connection count 1 for (smtp:170.75.175.189) at Jul 22 16:30:17
Jul 22 16:33:37 vps196134 postfix/anvil[29164]: statistics: max cache size 1 at Jul 22 16:30:17
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: lost connection after CONNECT from unknown[192.158.224.193]
Jul 22 16:58:22 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:58:32 vps196134 postfix/smtpd[31638]: NOQUEUE: reject: RCPT from unknown[192.158.224.193]: 454 4.7.1 <chevyview450@gmail.com>: Relay access denied; from=<test@ip-167-114-98.net> to=<chevyview450@gmail.com> proto=SMTP helo=<win-clj1b0gq6jp.domain>
Jul 22 16:58:38 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:38 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:58:40 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:58:44 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:44 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:58:49 vps196134 postfix/smtpd[31638]: lost connection after RCPT from unknown[192.158.224.193]
Jul 22 16:58:49 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:58:51 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:58:52 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:58:52 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:59:01 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:01 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:02 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:03 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:03 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:59:08 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:08 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:13 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 16:59:15 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:15 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:17 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 16:59:24 vps196134 postfix/smtpd[31638]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:27 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31659]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:27 vps196134 postfix/smtpd[31659]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:29 vps196134 postfix/smtpd[31672]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:29 vps196134 postfix/smtpd[31672]: connect from unknown[192.158.224.193]
Jul 22 16:59:39 vps196134 postfix/smtpd[31672]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: UGFzc3dvcmQ6
Jul 22 16:59:44 vps196134 postfix/smtpd[31659]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 16:59:44 vps196134 postfix/smtpd[31659]: connect from unknown[192.158.224.193]
Jul 22 16:59:48 vps196134 postfix/smtpd[31638]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 16:59:48 vps196134 postfix/smtpd[31638]: disconnect from unknown[192.158.224.193]
Jul 22 16:59:54 vps196134 postfix/smtpd[31659]: warning: unknown[192.158.224.193]: SASL LOGIN authentication failed: Connection lost to authentication server
Jul 22 17:00:02 vps196134 postfix/smtpd[31638]: warning: hostname pje31.gainful.fora-da-caixa.com does not resolve to address 192.158.224.193: Name or service not known
Jul 22 17:00:02 vps196134 postfix/smtpd[31638]: connect from unknown[192.158.224.193]
Jul 22 17:00:03 vps196134 postfix/smtpd[31672]: lost connection after AUTH from unknown[192.158.224.193]
Jul 22 17:00:03 vps196134 postfix/smtpd[31672]: disconnect from unknown[192.158.224.193]


Thanks
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 05:33:43 PM
Your output shows that connection is not possible. Are you using the correct smtp details for sending email.
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 05:45:49 PM
Yes. They are validated by Mail Wizz server.

Mail Wizz server I installed on CWP acts as a Master Server relaying to 3 different PMTA servers whose details are configured in Mail Wizz server; they are validated successfully by Mail Wizz server.

It is something not right with CWP.

Cheers
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 06:04:22 PM
mta is working on this ip too 192.158.224.193?
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 06:19:12 PM
Yes. All three PMTA servers work. There are bounces, unsubscriptions, opens and clicks on all three PMTA servers. This means they all work.

Thanks
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 06:21:12 PM
I am trying to say for this ip 192.158.224.193 it doesnt work. not rDNS resolves to it.
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 06:27:12 PM
Hi,

No I dont have that IP: 192.158.224.193

Not sure why it is shown up on logs?

I can give u my server's credentials to have a look via private message so you can check what could go wrong with CWP?

Cheers
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 06:33:15 PM
Well you can do one thing.

nano /etc/resolv.conf

change nameserver part to

nameserver 8.8.8.8
nameserver 8.8.4.4

or you can use the same config setup on old server which is sending mail fine.

If this doesnt help you. You should contact cwp.

http://centos-webpanel.com/support-services

Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 06:43:39 PM
Hi,

Thanks. I have tried to insert this:

nameserver 8.8.8.8

in the file suggested above. Nothing is changed.

Yes, I have sent a message to CWP support for a paid support. Their fee is very affordable!

I just want to make sure they could fix my issues before I make a payment to them. I am sure they have fixed hundreds of bugs and some may be related to Mail Wizz too.

But not sure when they will response.

Thanks
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 06:50:50 PM
Great.. Hope your problem is solved soon :)
Title: Re: folder cannot be accessed by IP
Post by: bullten on July 24, 2018, 06:57:45 PM
Also do remember one thing you are on OVH server they block smtp outgoing port for sending spam and you will get email regarding it.

If you want to check port is open or not use telnet.
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 07:12:59 PM
Hi,

No. I dont send spams from OVH servers; they only relay to other PMTA servers which then send emails to outside world.

Hoping CWP support responds soon.
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 24, 2018, 09:38:28 PM
Update: I have tried to use a different control panel called Virtualmin, the sending speed is even faster at 1500 emails/minute than my fast machine using CWP above.

Therefore, it is CWP causing the slowness of sending emails out.

However, I love CWP and want to use it instead of Virtualmin.
Title: Re: folder cannot be accessed by IP
Post by: studio4host on July 25, 2018, 01:43:56 PM
sending speed depends on the server/postifx configuration and it's not related to any control panel.

If you use many different tools like antispam/opendkim then the outgoing speed will be slower...anyway ovh can get you blocked as they scan each email for reputation...so this also slows down the outgoing emails.
Title: Re: folder cannot be accessed by IP
Post by: daro2013 on July 25, 2018, 05:07:28 PM
Hi studio4host,

Yes, I agree that sending speed depends on the settings of Postfix.

Different control panel has different settings for Postfix, there there could be issues with Postfix settings by default on CWP while on Virtualmin this is not an issue.

No response from CWP yet; not sure if they respond?
Title: Re: folder cannot be accessed by IP
Post by: studio4host on July 26, 2018, 06:26:58 AM
check that your dns is resolving and also check if you have enabled this function in the mail server manager "Reject Unknown Hostname (NOT recommended):" and disable it if you have it enabled.

host google.com
Title: Re: folder cannot be accessed by IP
Post by: studio4host on July 26, 2018, 06:49:46 AM
you simply need to rebuild mail server and edit configuration to have less security check if you want to speed it up, however, this issue is probably related with your server provider as they scan your emails.