# HG changeset patch # User meillo@marmaro.de # Date 1279138978 -7200 # Node ID e96a9fee9423bf484491209db2c226a103cdbf0a # Parent 6ff77c63e714fc17486c484d9d0d15d01b48dbac added an example route config with encryption diff -r 6ff77c63e714 -r e96a9fee9423 examples/openssl.route --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/openssl.route Wed Jul 14 22:22:58 2010 +0200 @@ -0,0 +1,22 @@ +# openssl.route +# by Philipp Berndt + + +protocol = "smtp" + +# encryption is done by communicating through openssl + +wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null" +# you may want to tell openssl where the certificates are stored +#wrapper="/usr/bin/openssl s_client -quiet -CApath /etc/ssl -connect mail.gmx.net:465 2>/dev/null" + +# which addresses are allowed through this route? +allowed_return_paths = "*@gmx.de;*@gmx.net" + +# the authentication method +#auth_name = "cram-md5" +auth_name = "login" + +# user name und password +auth_login = "UID_OR_EMAIL_ADDRESS" +auth_secret = "YOUR_PASSWORD"