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 | 79f2d30906b81ffb419acfa37df283f0d05e0498 (patch) | |
tree | 9e7b066e60485d5256eb0696ce07a192035479c0 /mail | |
parent | d8b92885773ce5b603b203f70f0554869a2afd18 (diff) | |
download | pkgsrc-79f2d30906b81ffb419acfa37df283f0d05e0498.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.
Diffstat (limited to 'mail')
-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 |