Bug 178776 - [patch] mail/sendmail-sasl: doesn't create a sasl sendmail by default anymore
Summary: [patch] mail/sendmail-sasl: doesn't create a sasl sendmail by default anymore
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Dirk Meyer
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-05-19 20:40 UTC by Lawrence Chen
Modified: 2013-05-25 08:35 UTC (History)
1 user (show)

See Also:


Attachments
patch (271 bytes, patch)
2013-05-19 20:40 UTC, Lawrence Chen
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Lawrence Chen 2013-05-19 20:40:00 UTC
	
	Building sendmail-sasl, used to result in a sendmail+tls+sasl2 build.
	Now the default config state is to make only a sendmail+tls.

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?
How-To-Repeat: 	
	make rmconfig; make config - compared to mail/sendmail, TLS is
	defaulted, but SASL is not.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-05-19 20:40:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->dinoex

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-05-20 08:15:40 UTC
Author: dinoex
Date: Mon May 20 07:15:33 2013
New Revision: 318576
URL: http://svnweb.freebsd.org/changeset/ports/318576

Log:
  - fix option name
  PR:		178776
  Submitted by:	Lawrence Chen
  
  - fix option SASLAUTHD

Modified:
  head/mail/sendmail-sasl/Makefile

Modified: head/mail/sendmail-sasl/Makefile
==============================================================================
--- head/mail/sendmail-sasl/Makefile	Mon May 20 06:20:28 2013	(r318575)
+++ head/mail/sendmail-sasl/Makefile	Mon May 20 07:15:33 2013	(r318576)
@@ -5,7 +5,8 @@ CATEGORIES=	mail ipv6
 MAINTAINER=	dinoex@FreeBSD.org
 
 WITH_TLS=	yes
-WITH_SASL2=	yes
+WITH_SASL=	yes
+WITH_SASLAUTHD=	yes
 SENDMAIL_PORT?=		sendmail
 MASTERDIR?=	${.CURDIR}/../${SENDMAIL_PORT}
 
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Dirk Meyer freebsd_committer freebsd_triage 2013-05-25 08:35:08 UTC
State Changed
From-To: open->closed


committed with changes, thanks.