- Joined
- Jul 16, 2016
- Messages
- 48
- Points
- 8
If you use some servers have SolusVM that support IPv6 and get the problem could not send mail to Gmail when using Exim or other scripts to install a complete VPS.
The simple solution is disable IPv6.
Let open file /etc/sysctl.conf
Adding to end of the file with lines as follows
Save and reload settings
Now it done, the system disabled the IPv6. Good luck!
The simple solution is disable IPv6.
Let open file /etc/sysctl.conf
Code:
nano /etc/sysctl.conf
Code:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
Code:
sysctl -f /etc/sysctl.conf