neo-hippie
Verified User
Hello,
just to use "the other MTA" as an example.
Postfix has an option : smtp_tls_security_level = may
Which tells Postfix to send email with TLS if the other server says STARTTLS in its EHLO
i have found a Exim workaround.http://www.skytale.net/blog/archives/32-Outgoing-TLS-verification-in-exim.html
	
	
	
		
But this requires always TLS. while not all servers are yet TLS enabled.
is there a way to do this on Exim?
				
			just to use "the other MTA" as an example.
Postfix has an option : smtp_tls_security_level = may
Which tells Postfix to send email with TLS if the other server says STARTTLS in its EHLO
i have found a Exim workaround.http://www.skytale.net/blog/archives/32-Outgoing-TLS-verification-in-exim.html
		Code:
	
	remote_smtp:
  driver = smtp
  hosts_require_tls = *
  tls_tempfail_tryclear = false
  tls_verify_certificates = /etc/pki/tls/certsBut this requires always TLS. while not all servers are yet TLS enabled.
is there a way to do this on Exim?
 
 
		 .
.