Mercurial > masqmail
view examples/openssl.route @ 192:89f951be358f
REMOVED POP3 SUPPORT
masqmail will not include a POP3 client anymore from 0.3.0 on
maybe the POP3 code will be reworked into a standalone program
some day
if you rely on the POP3 client, use fetchmail or something similar
instead
author | meillo@marmaro.de |
---|---|
date | Thu, 15 Jul 2010 14:24:40 +0200 |
parents | e96a9fee9423 |
children | 9814e75de61c |
line wrap: on
line source
# 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"