How to connect to Postfix via iPhone
After playing around with the system, I was finally able to get email sent to postfix via my yahoo account. Which opens me up for next topic
Cannot connect using SSL: Do you want to try setting up the account without SSL?
Either option that I try I cannot seem to register the account. Is there anything special I would need to do on my linode to accomplish this?
2 Replies
If telnet works you could try telling the phone to use starttls instead of SSL. Starttls is more common these days and it doesn't need an extra port.
Allow email ports
-A INPUT -p tcp -m state –state NEW --dport 25 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 110 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 587 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 465 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 995 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 993 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 143 -j ACCEPT