masqmail

changeset 184:e96a9fee9423

added an example route config with encryption
author meillo@marmaro.de
date Wed, 14 Jul 2010 22:22:58 +0200
parents 6ff77c63e714
children b6fc62ea6058
files examples/openssl.route
diffstat 1 files changed, 22 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/examples/openssl.route	Wed Jul 14 22:22:58 2010 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +# openssl.route
     1.5 +# by Philipp Berndt
     1.6 +
     1.7 +
     1.8 +protocol = "smtp"
     1.9 +
    1.10 +# encryption is done by communicating through openssl
    1.11 +
    1.12 +wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null"
    1.13 +# you may want to tell openssl where the certificates are stored
    1.14 +#wrapper="/usr/bin/openssl s_client -quiet -CApath /etc/ssl -connect mail.gmx.net:465 2>/dev/null"
    1.15 +
    1.16 +# which addresses are allowed through this route?
    1.17 +allowed_return_paths = "*@gmx.de;*@gmx.net"
    1.18 +
    1.19 +# the authentication method
    1.20 +#auth_name = "cram-md5"
    1.21 +auth_name = "login"
    1.22 +
    1.23 +# user name und password
    1.24 +auth_login = "UID_OR_EMAIL_ADDRESS"
    1.25 +auth_secret = "YOUR_PASSWORD"