meillo@184: # openssl.route meillo@184: # by Philipp Berndt meillo@184: meillo@184: meillo@184: protocol = "smtp" meillo@184: meillo@184: # encryption is done by communicating through openssl meillo@184: meillo@184: wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null" meillo@184: # you may want to tell openssl where the certificates are stored meillo@184: #wrapper="/usr/bin/openssl s_client -quiet -CApath /etc/ssl -connect mail.gmx.net:465 2>/dev/null" 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"