Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 May 2013 14:36:09 -0500 (CDT)
From:      Lawrence Chen <beastie@tardisi.com>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        beastie_t@lhaven.homeip.net
Subject:   ports/178776: [patch] mail/sendmail-sasl: doesn't create a sasl sendmail by default anymore
Message-ID:  <201305191936.r4JJa9ba092558@zen.lhaven.homeip.net>
Resent-Message-ID: <201305191940.r4JJe1vC079380@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         178776
>Category:       ports
>Synopsis:       [patch] mail/sendmail-sasl: doesn't create a sasl sendmail by default anymore
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun May 19 19:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Lawrence Chen
>Release:        FreeBSD 9.1-RELEASE-p3 amd64
>Organization:
>Environment:
System: FreeBSD zen.lhaven.homeip.net 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Mon Apr 29 18:27:25 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64


	
>Description:
	
	Building sendmail-sasl, used to result in a sendmail+tls+sasl2 build.
	Now the default config state is to make only a sendmail+tls.
>How-To-Repeat:
	
	make rmconfig; make config - compared to mail/sendmail, TLS is
	defaulted, but SASL is not.
>Fix:

	
	change WITH_SASL2 to WITH_SASL in Makefile, so that it does get
	selected by default.

	Alternative might be to change option in mail/sendmail to be SASL2,
	instead of SASL?

--- patch begins here ---
--- Makefile.orig	2013-05-19 14:26:55.183722958 -0500
+++ Makefile	2013-05-19 14:26:07.860720313 -0500
@@ -5,7 +5,7 @@
 MAINTAINER=	dinoex@FreeBSD.org
 
 WITH_TLS=	yes
-WITH_SASL2=	yes
+WITH_SASL=	yes
 SENDMAIL_PORT?=		sendmail
 MASTERDIR?=	${.CURDIR}/../${SENDMAIL_PORT}
 
--- patch ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305191936.r4JJa9ba092558>