Change Exim Sending IP

If you want everyone on the server to send out on the same IP, just add the following to Then add the IP and it’s matching PTR to /etc/mail_reverse_dns: This will tell Exim to use that IP for any sender on the server. Restart exim

Cannot edit /etc/mailips on cPanel Server

Check /etc/mailips permissions: Code: It should show the following: If it does not show root:mail for ownership, then fix that: If it doesn’t show 640 for file permissions, fix that: If it does have the right ownership and permissions, then next check the file isn’t set to be immutable: It might look like the following … Read more

FTP Errors on CentOS

AI_NODATA – No address associated with nodename error in your FTP client. Sometimes an EAI_NODATA error is also related to either a EHOSTUNREACH error, or an ECONNABORTED error as well. Command: MLSDError: Connection timed outError: Failed to retrieve directory listing Status: Waiting to retry…Status: Disconnected from serverStatus: Resolving address of robertlacylv.comStatus: Connection attempt failed with … Read more

Apache Error

Options ExecCGI FollowSymLinks IncludesNOEXEC Indexes Limit SymLinksIfOwnerMatch AllowOverride All results in an error – Syntax error on line 71 of /usr/local/apache/conf/httpd.conf Based on my understanding, it first disables FollowSymLinks and enables SymLinksIfOwnerMatch at the httpd.conf level and it applies to all the files and subdirectories present inside, /home. The next directive, AllowOverride. By writing “All”, … Read more