From owner-freebsd-stable@FreeBSD.ORG Thu Aug 8 11:39:19 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9A228F1A for ; Thu, 8 Aug 2013 11:39:19 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C72B2A73 for ; Thu, 8 Aug 2013 11:39:19 +0000 (UTC) Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id A315920E90 for ; Thu, 8 Aug 2013 07:39:12 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute6.internal (MEProxy); Thu, 08 Aug 2013 07:39:12 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:subject:date:in-reply-to :references; s=smtpout; bh=/SAys8xajPfEjgGajqdVmGZe0rc=; b=Abs7H cKTcACH6qBnTIJPto1ATcWj8VXx9VhFRF3+VHbVdxRtpENeAATtK1nT7VZs2r+3i fjVjT66a8yeRRCN6ioFP480JGQuFrWTbMkhx/UyGWjHzPoSlck8n0+tNyNByll8b c2E9Dg6AHLTBvefj6ylgmYy1Gzd9cD97W+xoFQ= Received: by web3.nyi.mail.srv.osa (Postfix, from userid 99) id 873B8B022D3; Thu, 8 Aug 2013 07:39:12 -0400 (EDT) Message-Id: <1375961952.24413.7481975.02B045E3@webmail.messagingengine.com> X-Sasl-Enc: EVR/8C2wEhok7UiwcCQdIJ34rr9qMbuP3yk7iTwwklFh 1375961952 From: Mark Felder To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-d9f253bf Subject: Re: Sendmail-8.14.7 doesn't work with MS DNS in IPv4 network Date: Thu, 08 Aug 2013 06:39:12 -0500 In-Reply-To: References: <20130807160528.GC13555@minime.local> X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Aug 2013 11:39:19 -0000 On Thu, Aug 8, 2013, at 4:35, Pavel Timofeev wrote: > I tried to revert mentioned patch, i.e. applied this > > --- sendmail/conf.c.orig 2013-08-08 12:28:40.000000000 +0400 > +++ sendmail/conf.c 2013-08-08 12:31:17.000000000 +0400 > @@ -4294,12 +4294,7 @@ > #else /* (SOLARIS > 10000 && SOLARIS < 20400) || (defined(SOLARIS) && > SOLARIS < 204) || (defined(sony_news) && defined(__svr4)) */ > int nmaps; > # if NETINET6 > -# ifndef SM_IPNODEBYNAME_FLAGS > - /* For IPv4-mapped addresses, use: AI_DEFAULT|AI_ALL */ > -# define SM_IPNODEBYNAME_FLAGS AI_ADDRCONFIG > -# endif /* SM_IPNODEBYNAME_FLAGS */ > - > - int flags = SM_IPNODEBYNAME_FLAGS; > + int flags = AI_DEFAULT|AI_ALL; > int err; > # endif /* NETINET6 */ > char *maptype[MAXMAPSTACK]; > > Sendmail started to work > Is this patch going to be applied to revert this behavior before 9.2-RELEASE? It seems to me that 8.14.7 violates our POLA...