masqmail
annotate examples/openssl.route @ 214:ecd8d737d78e
removed the old manual because it is really outdated now
In masqmail's 0.3 branch, so much changed that the old manual
causes more harm than it improves the distribution.
Most content is covered by the man pages anyway.
You'll still find the old manual on masqmail's homepage.
author | meillo@marmaro.de |
---|---|
date | Mon, 19 Jul 2010 14:06:08 +0200 |
parents | |
children | 9814e75de61c |
rev | line source |
---|---|
meillo@184 | 1 # openssl.route |
meillo@184 | 2 # by Philipp Berndt |
meillo@184 | 3 |
meillo@184 | 4 |
meillo@184 | 5 protocol = "smtp" |
meillo@184 | 6 |
meillo@184 | 7 # encryption is done by communicating through openssl |
meillo@184 | 8 |
meillo@184 | 9 wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null" |
meillo@184 | 10 # you may want to tell openssl where the certificates are stored |
meillo@184 | 11 #wrapper="/usr/bin/openssl s_client -quiet -CApath /etc/ssl -connect mail.gmx.net:465 2>/dev/null" |
meillo@184 | 12 |
meillo@184 | 13 # which addresses are allowed through this route? |
meillo@184 | 14 allowed_return_paths = "*@gmx.de;*@gmx.net" |
meillo@184 | 15 |
meillo@184 | 16 # the authentication method |
meillo@184 | 17 #auth_name = "cram-md5" |
meillo@184 | 18 auth_name = "login" |
meillo@184 | 19 |
meillo@184 | 20 # user name und password |
meillo@184 | 21 auth_login = "UID_OR_EMAIL_ADDRESS" |
meillo@184 | 22 auth_secret = "YOUR_PASSWORD" |