10 Tips to Keep Email Out of the Spam Folder
by Tweak on October 6, 2010
in Domain/Hosting, Servers
1. Be Compliant with the CAN-SPAM Act
If you are sending “any electronic mail message, the primary purpose of which is the commercial advertisement or promotion of a commercial product or service,” then you must comply with the following 7 main requirements (or face penalties up to $16,000) [5]:
- Don’t use false or misleading header information
- Don’t use deceptive subject lines
- Identify the message as an ad
- Tell recipients where you’re located
- Tell recipients how to opt-out of receiving future email from you
- Honor opt-out requests promptly
- Monitor what others are doing on your behalf
If your email contains only transactional emails or relationship content, then you are exempt from these rules; however, you must still not include false or misleading routing information.
Read more…
Script to daily email APF status
You are running APF on your server, but sometimes you think “is APF running fine ?”
This script sends you an email with APF satus.
Log in to your server as root
Create the script:
nano apfstatus.sh
Put this on the file:
#!/bin/bash
tail -200 /var/log/apf_log | mail -s "APF Status" youemail@domain.com
Save and Exit
Ctrl+X and Y
Read more…