1 (edited by mrooks 2013-08-17 03:58:32)

Topic: smtp remote ssl help

==== Required information ====
- iRedMail version: 0.8.5
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): Mysql
- Linux/BSD distribution name and version: centos 6.4
- Related log if you're reporting an issue:
====

hi all i am hoping someone on here can help me, i am trying to get ssl on port 465 to work from a remote computer.
it all work fine using tls on port 25, but some machines run windows live mail which doesent work with tls and i am hoping to use 465 instaead of port 25 for sending emails, if someone could help me i be really greatful, on what files i need to edit on the server and what needs to be put in there or changed, many thanks, michael.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: smtp remote ssl help

Add below code in /etc/postfix/master.cf, then restart Postfix service:

smtps     inet  n       -       n       -       -       smtpd
  -o smtpd_tls_wrappermode=yes
  -o smtpd_sasl_auth_enable=yes
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject

I want to repeat again, SMTPS (port 465) is deprecated, use submission (smtp over TLS) if possible.

3

Re: smtp remote ssl help

Thanks very much.