From owner-freebsd-questions@FreeBSD.ORG Tue Nov 28 15:17:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 209A316A47C for ; Tue, 28 Nov 2006 15:17:19 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from michelle.lostinspace.de (michelle.lostinspace.de [62.146.248.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE34943CA6 for ; Tue, 28 Nov 2006 15:17:10 +0000 (GMT) (envelope-from idefix@fechner.net) Received: from server.idefix.loc (ppp-82-135-78-34.dynamic.mnet-online.de [82.135.78.34]) (authenticated bits=0) by michelle.lostinspace.de (8.13.8/8.13.8) with ESMTP id kASFH6Et053785 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 28 Nov 2006 16:17:11 +0100 (CET) (envelope-from idefix@fechner.net) Received: from idefix by server.idefix.loc with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gp4hm-000L1a-G6 for freebsd-questions@freebsd.org; Tue, 28 Nov 2006 16:17:06 +0100 Date: Tue, 28 Nov 2006 16:17:06 +0100 From: Matthias Fechner To: freebsd-questions@freebsd.org Message-ID: <20061128151706.GC78205@server.idefix.loc> Mail-Followup-To: freebsd-questions@freebsd.org References: <20061127032030.GH8339@server.idefix.loc> <456AC5FF.60402@unsane.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <456AC5FF.60402@unsane.co.uk> X-Crypto: GnuPG/1.0.6 http://www.gnupg.org X-GnuPG: 0x1B756EF6 User-Agent: Mutt/1.5.13 (2006-08-11) Sender: Matthias Fechner X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (michelle.lostinspace.de [62.146.248.226]); Tue, 28 Nov 2006 16:17:11 +0100 (CET) X-Virus-Scanned: ClamAV 0.88.6/2253/Tue Nov 28 12:46:16 2006 on michelle.lostinspace.de X-Virus-Status: Clean Subject: Re: Sendmail and smtp-auth against passwd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Nov 2006 15:17:19 -0000 Hi, * Vince [27-11-06 11:03]: > define(`confAUTH_MECHANISMS', `LOGIN PLAIN DIGEST-MD5 CRAM-MD5') > TRUST_AUTH_MECH(`LOGIN PLAIN DIGEST-MD5 CRAM-MD5') thx for all the answers even the PMs I got. I found the problem now: The problem is/was if you have the two lines: define(confAUTH_MECHANISMS', LOGIN PLAIN DIGEST-MD5 CRAM-MD5') TRUST_AUTH_MECH(LOGIN PLAIN DIGEST-MD5 CRAM-MD5') sendmail uses the sasldb for authentification but if you replace them with: define(confAUTH_MECHANISMS',PLAIN LOGIN')dnl TRUST_AUTH_MECH(PLAIN LOGIN')dnl everythings works fine. So it is necessary to disable strong authentification. It seems that the saslauthd cannot handle it :( Best regards, Matthias -- "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook