From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <34987142b0e800b6f5a53bf3268dd1c2@quintile.net> From: "Steve Simon" Date: Mon, 4 Jun 2007 13:28:20 +0100 To: 9fans@cse.psu.edu Subject: Re: [9fans] ssmtp In-Reply-To: <1180822392.121730.286790@m36g2000hse.googlegroups.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 781de2b6-ead2-11e9-9d60-3106f5b1d025 > Is there any easy way to configure upas/smtp to use port 465 (ssmtp) > for authenticated smtp ? If you just refer to your smtp realy as net!smtp.your-relay.dom!ssmtp then it will use port 456 - grep for 456 in /lib/ndb/common to see where this magic comes from. There is only support for a limited subset of auth methods, plain and login I believe but this should be enough - they are insecure on a clear link but over TLS its fine. you will need to save the tls thumbprint for your relay, the first time you use it this will be logged in /sys/log/smtp.fail (I think, one of the email related log files anyway), and you can then cut and paste this into /sys/lib/tls/smtp, eg: x509 sha1=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -Steve