masqmail

view examples/openssl.route @ 204:5745edd5b769

removed the --disable-smtp-server configure option masqmail will now always have the possibility to listen on a port compiled in if you don't want it to listen on a port add this to your masqmail.conf: listen_addresses = "" also, if you don't start it as daemon it will not listen neither
author meillo@marmaro.de
date Fri, 16 Jul 2010 15:38:53 +0200
parents
children 9814e75de61c
line source
1 # openssl.route
2 # by Philipp Berndt
5 protocol = "smtp"
7 # encryption is done by communicating through openssl
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"
13 # which addresses are allowed through this route?
14 allowed_return_paths = "*@gmx.de;*@gmx.net"
16 # the authentication method
17 #auth_name = "cram-md5"
18 auth_name = "login"
20 # user name und password
21 auth_login = "UID_OR_EMAIL_ADDRESS"
22 auth_secret = "YOUR_PASSWORD"