Date: Sun, 2 Mar 2003 17:05:29 -0600 From: Anti <fearow@attbi.com> To: Jim Trigg <jtrigg@spamcop.net> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Looking for mail server tool recommendations Message-ID: <20030302170529.05659368.fearow@attbi.com> In-Reply-To: <20030302050042.GC79879@spamcop.net> References: <20030301231816.GB79879@spamcop.net> <20030301193931.60b841bc.fearow@attbi.com> <20030302050042.GC79879@spamcop.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 2 Mar 2003 00:00:42 -0500 Jim Trigg <jtrigg@spamcop.net> wrote: > On Sat, Mar 01, 2003 at 07:39:31PM -0600, Anti wrote: > > On Sat, 1 Mar 2003 18:18:16 -0500 > > Jim Trigg <jtrigg@spamcop.net> wrote: > > > > > things? Or is there another MTA that I'm failing to consider? > > > > courier-mta > > I actually have taken a brief look at it, and can't find any real > information on how to configure it usefully. (Things like how to set up > AUTH so that it advertises CRAM-MD5 and DIGEST-MD5 always but PLAIN and > LOGIN only in a TLS session.) > > The web site gives a step-by-step for what they expect you to want to > do, but doesn't give a detailed breakdown of what can go in the various > configuration files. > > Any suggestions for a more comprehensive HOWTO? hmm yeah, it's not that hard to configure, but it takes some playing around with the config files to get everything working just right... courier doesn't do digest-md5 but to always offer cram-md5 and cram-sha1, and offer plain and login only under tls, you'd do something like: AUTHMODULES="authdaemon" ESMTPAUTH="CRAM-MD5 CRAM-SHA1" ESMTPAUTH_TLS="PLAIN LOGIN CRAM-MD5 CRAM-SHA1" that would be in the esmtpd config file, similar settings in the pop3d and imapd config files... [btw the freebsd port is an old version and otherwise broken, that messed me up for a while, but compiling the latest source works all good] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030302170529.05659368.fearow>