Mercurial > masqmail
comparison examples/openssl.route @ 184:e96a9fee9423
added an example route config with encryption
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 22:22:58 +0200 |
parents | |
children | 9814e75de61c |
comparison
equal
deleted
inserted
replaced
183:6ff77c63e714 | 184:e96a9fee9423 |
---|---|
1 # openssl.route | |
2 # by Philipp Berndt | |
3 | |
4 | |
5 protocol = "smtp" | |
6 | |
7 # encryption is done by communicating through openssl | |
8 | |
9 wrapper="/usr/bin/openssl s_client -quiet -connect mail.gmx.net:465 2>/dev/null" | |
10 # you may want to tell openssl where the certificates are stored | |
11 #wrapper="/usr/bin/openssl s_client -quiet -CApath /etc/ssl -connect mail.gmx.net:465 2>/dev/null" | |
12 | |
13 # which addresses are allowed through this route? | |
14 allowed_return_paths = "*@gmx.de;*@gmx.net" | |
15 | |
16 # the authentication method | |
17 #auth_name = "cram-md5" | |
18 auth_name = "login" | |
19 | |
20 # user name und password | |
21 auth_login = "UID_OR_EMAIL_ADDRESS" | |
22 auth_secret = "YOUR_PASSWORD" |