Thanks John for that Info. I'm going to go ahead with installing TLS with version 0.28. I want to keep 0.28 due to the number of extra patches and plugins that have been added.
I have so far added TLS & TLS_CERT to my plugins+config. Are there any easy ways to do allow interaction with the TLS plugin. I'm thinking that I might just be able to modify SMTP.pm with the version in 0.40. Would this work? Jason On 29 Oct, 13:33, [EMAIL PROTECTED] (John Peacock) wrote: > Jason Smith wrote: > > I would like to add tls encryption support to my server to allow STARTTLS > > connections, as well as CRAM-MD5 and AUTH-LOGIN. I am at the prelimnary > > stage of finding out if this is possible. > > qpsmtpd already has tls and AUTH support. The former is enabled simply > by creating certificates: > > $ cd /path/to/qpsmtpd > $ plugins/tls_cert > > (that script also allows you to set any of the cert parameter, see > --help for more details). Once you have a server certificate, you can > enable tls by just adding the line > > tls > > to the config/plugins file. There are more details in the POD inside > the tle plugin itself (perldoc plugins/tls). > > The AUTH feature is a little more work, since you must provide some > backend authentication method. Check out the plugins/auth directory for > the out-of-the-box methods. > > John