Pages
Archives
Categories
Blogroll
Live Traffic Feed.
Category Archives: Plesk
SPF DKIM DMARC- Links
We have multiple links available to check if the mail server are correctly configured. To check reverse DNS http://viewdns.info/ http://mxtoolbox.com/ Check MX records for domain http://mxtoolbox.com/NetworkTools.aspx http://viewdns.info/reversedns/ Check if the IP/domain is blacklisted for spam http://mxtoolbox.com/NetworkTools.aspx http://viewdns.info/spamdblookup/ http://www.abuseat.org/lookup.cgi Check if … Continue reading
How To Rotate IP Address Pool In Linux (Redhat / Centos / Ubuntu / Debian)
You can rotate your Server IP address pool in Linux server by using iptable NAT Postrouting. I assume you have 8 public IP addresses (x.x.x.1 TO x.x.x.8) configure on Linux postfix server. Now we rotate only SMPT (port no. 25) … Continue reading
Posted in Exim, Linux, Mail server, Plesk, Postfix
2 Comments
All Email and its password Plesk
Login to the mysql database for Plesk mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa select accounts.id, concat(mail.mail_name,’@’,domains.name), accounts.password from mail, domains, accounts where domains.id = mail.dom_id and mail.account_id = accounts.id;
Posted in Plesk
Leave a comment
List all FTP passwords in Plesk
Login to the mysql database for Plesk # mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa and run this query SELECT REPLACE(sys_users.home,’Change this to your host PATH directory to Domain’,”) AS domain, sys_users.login,accounts.password FROM sys_users LEFT JOIN accounts on sys_users.account_id=accounts.id ORDER BY sys_users.home … Continue reading
Posted in Plesk
Leave a comment