meillo@184: # openssl.route meillo@184: # by Philipp Berndt meillo@184: meillo@184: meillo@184: # encryption is done by communicating through openssl meillo@184: meillo@223: # Today usually STARTTLS (RFC-3207) is used: meillo@223: # don't forget the instant_helo, otherwise it won't work, because the wrapper eats the 220 greeting meillo@223: instant_helo=true meillo@223: wrapper="/usr/bin/openssl s_client -quiet -starttls smtp -connect mail.gmx.net:25 2>/dev/null" meillo@223: meillo@223: # The old way is SMTP over SSL; the IETF had marked it obsolete: meillo@223: # don't use instant_helo here meillo@223: #wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null" meillo@223: meillo@184: meillo@184: # which addresses are allowed through this route? meillo@184: allowed_return_paths = "*@gmx.de;*@gmx.net" meillo@184: meillo@184: # the authentication method meillo@184: #auth_name = "cram-md5" meillo@184: auth_name = "login" meillo@184: meillo@184: # user name und password meillo@184: auth_login = "UID_OR_EMAIL_ADDRESS" meillo@184: auth_secret = "YOUR_PASSWORD"