From owner-svn-src-releng@FreeBSD.ORG Thu Aug 15 01:31:32 2013 Return-Path: Delivered-To: svn-src-releng@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 5722A6A9; Thu, 15 Aug 2013 01:31:32 +0000 (UTC) (envelope-from gshapiro@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 449EE291E; Thu, 15 Aug 2013 01:31:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7F1VW2k067090; Thu, 15 Aug 2013 01:31:32 GMT (envelope-from gshapiro@svn.freebsd.org) Received: (from gshapiro@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7F1VWKZ067089; Thu, 15 Aug 2013 01:31:32 GMT (envelope-from gshapiro@svn.freebsd.org) Message-Id: <201308150131.r7F1VWKZ067089@svn.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 15 Aug 2013 01:31:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org Subject: svn commit: r254346 - releng/9.2/contrib/sendmail/include/sm/os X-SVN-Group: releng MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-releng@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the release engineering / security commits to the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Aug 2013 01:31:32 -0000 Author: gshapiro Date: Thu Aug 15 01:31:31 2013 New Revision: 254346 URL: http://svnweb.freebsd.org/changeset/base/254346 Log: MFC: Temporarily revert sendmail 8.14.7 change to getipnodebyname() flags to prevent problems between the resolver and Microsoft DNS servers with AAAA lookups. The upstream open source project will work on a more permanent fix for the next release. Issue noted by Pavel Timofeev. Approved by: re (glebius) Modified: releng/9.2/contrib/sendmail/include/sm/os/sm_os_freebsd.h Directory Properties: releng/9.2/contrib/sendmail/ (props changed) Modified: releng/9.2/contrib/sendmail/include/sm/os/sm_os_freebsd.h ============================================================================== --- releng/9.2/contrib/sendmail/include/sm/os/sm_os_freebsd.h Thu Aug 15 00:17:31 2013 (r254345) +++ releng/9.2/contrib/sendmail/include/sm/os/sm_os_freebsd.h Thu Aug 15 01:31:31 2013 (r254346) @@ -39,3 +39,7 @@ #ifndef SM_CONF_MSG # define SM_CONF_MSG 1 #endif /* SM_CONF_MSG */ + +#ifndef SM_IPNODEBYNAME_FLAGS +# define SM_IPNODEBYNAME_FLAGS AI_DEFAULT|AI_ALL +#endif /* SM_IPNODEBYNAME_FLAGS */