diff options
author | jlam <jlam@pkgsrc.org> | 2005-03-21 00:13:10 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-03-21 00:13:10 +0000 |
commit | 0ee00328276527f19da0567f6403ca8c8993c506 (patch) | |
tree | 9e7b066e60485d5256eb0696ce07a192035479c0 | |
parent | da00ba3d2f8fbf9d544d35890b1e5b746d0442b5 (diff) | |
download | pkgsrc-0ee00328276527f19da0567f6403ca8c8993c506.tar.gz |
sqwebmail's sendit.sh is meant to be the equivalent of "sendmail -t" in
that it reads in a complete mail message from stdin. Fix the example
sendit.sh to invoke "sendmail -oi -t" to allow sending messages from
sqwebmail to work in a default install. Bump the PKGREVISION to 1.
-rw-r--r-- | mail/sqwebmail/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/sqwebmail/Makefile b/mail/sqwebmail/Makefile index 29108718bfe..db84e98c7db 100644 --- a/mail/sqwebmail/Makefile +++ b/mail/sqwebmail/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.27 2005/02/18 22:12:56 jlam Exp $ +# $NetBSD: Makefile,v 1.28 2005/03/21 00:13:10 jlam Exp $ DISTNAME= sqwebmail-5.0.0 PKGBASE= ${DISTNAME:C/-[^-]*$//} +PKGREVISION= 1 CATEGORIES= mail www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/} EXTRACT_SUFX= .tar.bz2 @@ -54,7 +55,7 @@ CONFIGURE_ARGS+= --with-cachedir=${SQWEBMAIL_CACHEDIR} CONFIGURE_ARGS+= --with-cacheowner=${ROOT_USER} CONFIGURE_ARGS+= --with-calendardir=${SQWEBMAIL_CALENDARDIR} CONFIGURE_ARGS+= --with-ispell="${LOCALBASE}/bin/ispell" -CONFIGURE_ARGS+= --with-mailer=${SENDMAIL} +CONFIGURE_ARGS+= --with-mailer="${SENDMAIL} -oi -t" CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP} CONFIGURE_ARGS+= --with-piddir=${VARBASE}/run |