diff options
author | jlam <jlam> | 2006-04-28 18:16:25 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-04-28 18:16:25 +0000 |
commit | a7578f7164e233e377ff7cdf73d71331134cfafa (patch) | |
tree | 615bf5d59c4dc7235e7b82d909b9fe8291e75bb7 /mail | |
parent | f192b01e619d7184c79a4872cc9ccf1a87344f6e (diff) | |
download | pkgsrc-a7578f7164e233e377ff7cdf73d71331134cfafa.tar.gz |
Update mail/sqwebmail to 5.1.0. Changes from version 5.0.7 include:
+ Add an INSTALL script that detects the presence of the old
sqwebmail state directory and that informs the admin to move it
to the new location.
+ Install some more of the HTML documentation in the location expected
by courier-mta.
* Complete re-implementation of the LDAP addressbook.
* Increase the maximum size of the CGI environment to avoid certain
classes of browser/website problems.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/sqwebmail/INSTALL | 22 | ||||
-rw-r--r-- | mail/sqwebmail/MESSAGE | 31 | ||||
-rw-r--r-- | mail/sqwebmail/Makefile | 69 | ||||
-rw-r--r-- | mail/sqwebmail/PLIST | 14 | ||||
-rw-r--r-- | mail/sqwebmail/distinfo | 14 | ||||
-rw-r--r-- | mail/sqwebmail/files/sqwebmail.sh | 27 | ||||
-rw-r--r-- | mail/sqwebmail/patches/patch-ad | 21 | ||||
-rw-r--r-- | mail/sqwebmail/patches/patch-ah | 6 | ||||
-rw-r--r-- | mail/sqwebmail/patches/patch-aj | 6 |
9 files changed, 103 insertions, 107 deletions
diff --git a/mail/sqwebmail/INSTALL b/mail/sqwebmail/INSTALL new file mode 100644 index 00000000000..cbd18035422 --- /dev/null +++ b/mail/sqwebmail/INSTALL @@ -0,0 +1,22 @@ +# $NetBSD: INSTALL,v 1.3 2006/04/28 18:16:25 jlam Exp $ + +case ${STAGE} in +POST-INSTALL) + if ${TEST} -d "@VARBASE@/sqwebmail"; then + ${CAT} << EOF +=========================================================================== + +If you are upgrading SqWebMail from a previous version, please note +that the Courier directory for keeping local state has moved. In +order to preserve your existing users' calendar information, you will +need to move: + + @VARBASE@/sqwebmail +to + @SQWEBMAIL_STATEDIR@/sqwebmail + +=========================================================================== +EOF + fi + ;; +esac diff --git a/mail/sqwebmail/MESSAGE b/mail/sqwebmail/MESSAGE index c9f710ee1df..ce442d873fa 100644 --- a/mail/sqwebmail/MESSAGE +++ b/mail/sqwebmail/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.6 2005/02/18 22:12:56 jlam Exp $ +$NetBSD: MESSAGE,v 1.7 2006/04/28 18:16:25 jlam Exp $ You must create a cron job that runs at regular intervals (one hour is fine) that executes the following Perl script to clean the SqWebMail @@ -7,27 +7,22 @@ user cache: ${PKG_SYSCONFDIR}/cleancache.pl -You will need to make SqWebMail accessible through your HTTP server by -making URLs with path "${IMAGEURL}/" resolve to the images in -${IMAGEDIR}. +There are two things which must be done to make SqWebMail accessible +through your HTTP server: -For Apache, you can add the following to httpd.conf: + (1) Copy the ``sqwebmail'' CGI binary to the appropriate place in your + HTTP document root, e.g. ${PREFIX}/libexec/cgi-bin, then Maildir + accounts would be accessible through: - <IfModule mod_alias.c> - Alias ${IMAGEURL}/ "${IMAGEDIR}/" - </IfModule> + http://your.domain.com/cgi-bin/sqwebmail -Also, certain versions of Microsoft Internet Explorer have a bug in their -HTTP/1.1 protocol implementation that results in errors when downloading -attachments. You should configure your HTTP server to force a HTTP/1.0 -protocol response for MSIE clients, e.g. for Apache, add the following to -httpd.conf: + (2) Make URLs with path ``${IMAGEURL}/'' resolve to the images located + in the ${IMAGEDIR} directory. + For Apache, you can add the following to httpd.conf: - BrowserMatch "MSIE [45]" nokeepalive downgrade-1.0 force-response-1.0 - -Maildir accounts will be accessible through: - - http://www.domain.com/cgi-bin/sqwebmail + <IfModule mod_alias.c> + Alias ${IMAGEURL}/ "${IMAGEDIR}/" + </IfModule> If you're using a non-default sendmail program, you will need to edit: diff --git a/mail/sqwebmail/Makefile b/mail/sqwebmail/Makefile index 6c205de5ca7..1f2df134743 100644 --- a/mail/sqwebmail/Makefile +++ b/mail/sqwebmail/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.47 2006/03/14 01:14:30 jlam Exp $ +# $NetBSD: Makefile,v 1.48 2006/04/28 18:16:25 jlam Exp $ -DISTNAME= sqwebmail-5.0.7 -PKGREVISION= 2 +DISTNAME= sqwebmail-5.1.1 CATEGORIES= mail www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/} EXTRACT_SUFX= .tar.bz2 @@ -10,10 +9,10 @@ MAINTAINER= jlam@pkgsrc.org COMMENT= Webmail CGI for access to maildir-style mailboxes HOMEPAGE= http://www.courier-mta.org/sqwebmail/ -DEPENDS+= courier-maildir>=0.52.1:../../mail/courier-maildir -DEPENDS+= maildrop>=1.8.1:../../mail/maildrop +DEPENDS+= courier-maildir>=0.53.1:../../mail/courier-maildir +DEPENDS+= maildrop>=2.0.1:../../mail/maildrop -USE_TOOLS+= env gmake perl:run +USE_TOOLS+= env gmake gzip:run perl:run USE_LANGUAGES= c c++ USE_LIBTOOL= yes @@ -21,14 +20,12 @@ PKG_SUPPORTED_OPTIONS+= fam # PKGNAME is a parameter to the following file. PKGNAME= ${DISTNAME} -.include "../../mail/courier-maildir/Makefile.common" - -.include "../../security/courier-authlib/Makefile.common" +.include "../../mail/courier-mta/Makefile.common" INSTALL_AM_MAKEFLAGS= sysconfdir=${EGDIR} INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} AM_MAKEFLAGS=${INSTALL_AM_MAKEFLAGS:Q} -SQWEBMAIL_STATEDIR= ${VARBASE}/sqwebmail +SQWEBMAIL_STATEDIR= ${COURIER_STATEDIR}/sqwebmail SQWEBMAIL_CACHEDIR= ${SQWEBMAIL_STATEDIR}/logincache SQWEBMAIL_CALENDARDIR= ${SQWEBMAIL_STATEDIR}/calendar SQWEBMAIL_IMAGEDIR= ${PREFIX}/share/courier/sqwebmail/images @@ -49,7 +46,7 @@ CONFIGURE_ARGS+= --localstatedir=${SQWEBMAIL_STATEDIR:Q} CONFIGURE_ARGS+= --datadir=${PREFIX}/share/courier CONFIGURE_ARGS+= --program-transform-name='s/\.rc$$//' -CONFIGURE_ARGS+= --enable-cgibindir=${PREFIX}/libexec/cgi-bin +CONFIGURE_ARGS+= --enable-cgibindir=${PREFIX}/libexec/courier/cgi-bin CONFIGURE_ARGS+= --enable-https=auto CONFIGURE_ARGS+= --enable-imagedir=${SQWEBMAIL_IMAGEDIR:Q} CONFIGURE_ARGS+= --enable-imageurl=${SQWEBMAIL_IMAGEURL:Q} @@ -62,11 +59,15 @@ CONFIGURE_ARGS+= --with-mailer="${SENDMAIL} -oi -t" CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP:Q} CONFIGURE_ARGS+= --with-piddir=${VARBASE}/run +CONFIGURE_ENV+= GZIP=${TOOLS_PATH.gzip:Q} CONFIGURE_ENV+= GPG="${LOCALBASE}/bin/gpg" CONFIGURE_ENV+= ldapsearch="${LOCALBASE}/bin/ldapsearch" -MAKE_DIRS= ${VARBASE}/run -OWN_DIRS= ${SQWEBMAIL_STATEDIR} +REQD_DIRS+= ${DATADIR} ${DOCDIR} ${EGDIR} ${LIBEXECDIR} +REQD_DIRS_PERMS+= ${LIBEXECDIR}/cgi-bin \ + ${ROOT_USER} ${ROOT_GROUP} 0700 +MAKE_DIRS+= ${VARBASE}/run ${LOCALSTATEDIR} +OWN_DIRS+= ${SQWEBMAIL_STATEDIR} OWN_DIRS+= ${SQWEBMAIL_CACHEDIR} OWN_DIRS_PERMS= ${SQWEBMAIL_CALENDARDIR} \ ${ROOT_USER} ${COURIER_GROUP} 0755 @@ -77,24 +78,21 @@ OWN_DIRS_PERMS+= ${SQWEBMAIL_CALENDARDIR}/private \ OWN_DIRS_PERMS+= ${SQWEBMAIL_CALENDARDIR}/localcache \ ${ROOT_USER} ${COURIER_GROUP} 0700 -GEN_FILES= ldapaddressbook sqwebmaild -FILES_SUBST+= GEN_FILES=${GEN_FILES:Q} - -.for FILE in ${GEN_FILES} -CONF_FILES+= ${EGDIR}/${FILE}.dist ${PKG_SYSCONFDIR}/${FILE} +.for _file_ in calendarmode ldapaddressbook.dist sqwebmaild.dist +CONF_FILES_PERMS+= ${EGDIR}/${_file_} \ + ${PKG_SYSCONFDIR}/${_file_:S/.dist$//} \ + ${COURIER_FILE_PERMS} .endfor -CONF_FILES+= ${EGDIR}/calendarmode ${PKG_SYSCONFDIR}/calendarmode -CONF_FILES_PERMS= # empty -.for FILE in cleancache.pl ldapsearch sendit.sh -CONF_FILES_PERMS+= ${PREFIX}/share/courier/sqwebmail/${FILE} \ - ${PKG_SYSCONFDIR}/${FILE} \ - ${ROOT_USER} ${ROOT_GROUP} 0755 +.for _file_ in cleancache.pl ldapsearch sendit.sh +CONF_FILES_PERMS+= ${PREFIX}/share/courier/sqwebmail/${_file_} \ + ${PKG_SYSCONFDIR}/${_file_} \ + ${COURIER_SCRIPT_PERMS} .endfor -SPECIAL_PERMS= libexec/courier/sqwebpasswd \ +SPECIAL_PERMS= ${LIBEXECDIR}/sqwebpasswd \ ${COURIER_USER} ${COURIER_GROUP} 2755 -RCD_SCRIPTS= sqwebmail -INSTALLATION_DIRS= bin man/man1 sbin +RCD_SCRIPTS= sqwebmail +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 sbin .include "../../devel/gettext-lib/buildlink3.mk" .include "../../security/courier-authlib/buildlink3.mk" @@ -103,14 +101,21 @@ INSTALLATION_DIRS= bin man/man1 sbin post-build: ${ECHO} "local" > ${WRKDIR}/calendarmode -post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/gpglib/webgpg ${PREFIX}/sbin +# The sqwebmail install target incorrectly overwrites the mode on +# cgi-bin directory, so fix it back to the right value. +# +fix-perms: + ${CHMOD} 0700 ${LIBEXECDIR}/cgi-bin + +post-install: fix-perms + ${LN} -s ${PREFIX}/share/courier/sqwebmail/webgpg ${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/gpglib/mimegpg ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/gpglib/mimegpg.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/gpglib/mimegpg.1 ${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_DATA} ${WRKSRC}/gpglib/mimegpg.html ${DOCDIR} ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKDIR}/calendarmode ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/sqwebmail/sqwebmail.pamconf \ - ${EGDIR}/webmail.pam + ${EGDIR}/webmail.authpam ${INSTALL_DATA_DIR} ${DOCDIR}/sqwebmail ${INSTALL_DATA} ${WRKSRC}/README.logindomainlist.html \ ${DOCDIR}/sqwebmail @@ -118,7 +123,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/gpglib/README.html \ ${DOCDIR}/sqwebmail/README.gpg.html ${INSTALL_DATA} ${WRKSRC}/pcp/README.html \ - ${DOCDIR}/sqwebmail/README.pcp.html + ${DOCDIR}/pcp_README.html ${INSTALL_DATA} ${WRKSRC}/sqwebmail/BUGS.html ${DOCDIR}/sqwebmail ${INSTALL_DATA} ${WRKSRC}/sqwebmail/SECURITY.html ${DOCDIR}/sqwebmail diff --git a/mail/sqwebmail/PLIST b/mail/sqwebmail/PLIST index 9a34bf4dd4b..7e58572e269 100644 --- a/mail/sqwebmail/PLIST +++ b/mail/sqwebmail/PLIST @@ -1,6 +1,6 @@ -@comment $NetBSD: PLIST,v 1.6 2006/01/03 05:59:12 jlam Exp $ +@comment $NetBSD: PLIST,v 1.7 2006/04/28 18:16:25 jlam Exp $ bin/mimegpg -libexec/cgi-bin/sqwebmail +libexec/courier/cgi-bin/sqwebmail libexec/courier/pcpd libexec/courier/sqwebmaild libexec/courier/sqwebpasswd @@ -106,23 +106,21 @@ share/courier/sqwebmail/images/uncancel.png share/courier/sqwebmail/images/wikifmt.html share/courier/sqwebmail/ldapsearch share/courier/sqwebmail/sendit.sh +share/courier/sqwebmail/webgpg +share/doc/courier/mimegpg.html +share/doc/courier/pcp_README.html share/doc/courier/sqwebmail/BUGS.html share/doc/courier/sqwebmail/INSTALL.html share/doc/courier/sqwebmail/README.gpg.html share/doc/courier/sqwebmail/README.logindomainlist.html -share/doc/courier/sqwebmail/README.pcp.html share/doc/courier/sqwebmail/SECURITY.html share/examples/courier/calendarmode share/examples/courier/ldapaddressbook.dist share/examples/courier/sqwebmaild.dist -share/examples/courier/webmail.pam +share/examples/courier/webmail.authpam share/examples/rc.d/sqwebmail -@unexec ${RMDIR} -p %D/share/examples/courier 2>/dev/null || ${TRUE} @dirrm share/doc/courier/sqwebmail -@unexec ${RMDIR} -p %D/share/doc/html/courier 2>/dev/null || ${TRUE} @dirrm share/courier/sqwebmail/images @dirrm share/courier/sqwebmail/html/en-us @dirrm share/courier/sqwebmail/html @dirrm share/courier/sqwebmail -@unexec ${RMDIR} -p %D/share/courier 2>/dev/null || ${TRUE} -@unexec ${RMDIR} -p %D/libexec/courier 2>/dev/null || ${TRUE} diff --git a/mail/sqwebmail/distinfo b/mail/sqwebmail/distinfo index 08c9a087d70..80839e1238b 100644 --- a/mail/sqwebmail/distinfo +++ b/mail/sqwebmail/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.13 2006/01/03 05:59:12 jlam Exp $ +$NetBSD: distinfo,v 1.14 2006/04/28 18:16:25 jlam Exp $ -SHA1 (sqwebmail-5.0.7.tar.bz2) = 32c5a8b36e2a329ba28263491a165bab946c7c48 -RMD160 (sqwebmail-5.0.7.tar.bz2) = 81bfd353f52803436009962a07a571f6fc973b9a -Size (sqwebmail-5.0.7.tar.bz2) = 3559891 bytes +SHA1 (sqwebmail-5.1.1.tar.bz2) = e86038cba592be05d74aff71b63bed3e8d99d9d7 +RMD160 (sqwebmail-5.1.1.tar.bz2) = 08d0aca1d6fb512349532f6460202f35c32af3b4 +Size (sqwebmail-5.1.1.tar.bz2) = 3747059 bytes SHA1 (patch-aa) = 5f263487244e8127845050a19d3b68356f846aa2 -SHA1 (patch-ad) = 5207b327b2e88bc75a820fcd7467a8ddf207bfb3 -SHA1 (patch-ah) = 8624f6bc7453ee2544a18e0bd1d7d2e0044c083f +SHA1 (patch-ad) = abfadf45c5f85fea963ff18ca17fbee948e4572e +SHA1 (patch-ah) = daf02c2c3de74b6e6a4ed0b077759ebc6775756e SHA1 (patch-ai) = def2f4d30bf5f15ea78f401f3c4ca2f2ec8c0ad2 -SHA1 (patch-aj) = 9341a88e5b3894bbb9121083d2edcc14193308e7 +SHA1 (patch-aj) = 2ad7d2500a54ca4f94ba00aaab89df29adcf864e diff --git a/mail/sqwebmail/files/sqwebmail.sh b/mail/sqwebmail/files/sqwebmail.sh index d033b837066..8ef467fb874 100644 --- a/mail/sqwebmail/files/sqwebmail.sh +++ b/mail/sqwebmail/files/sqwebmail.sh @@ -1,11 +1,12 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: sqwebmail.sh,v 1.3 2005/02/18 22:12:56 jlam Exp $ +# $NetBSD: sqwebmail.sh,v 1.4 2006/04/28 18:16:25 jlam Exp $ # # Courier SqWebMail services daemon # # PROVIDE: sqwebmail # REQUIRE: authdaemond +# KEYWORD: shutdown . /etc/rc.subr @@ -15,7 +16,6 @@ command="@PREFIX@/sbin/courierlogger" ctl_command="@PREFIX@/sbin/sqwebmaild" pidfile="@VARBASE@/run/sqwebmaild.pid" required_files="@PKG_SYSCONFDIR@/calendarmode @PKG_SYSCONFDIR@/sqwebmaild" -required_vars="authdaemond" start_cmd="courier_doit start" stop_cmd="courier_doit stop" @@ -23,37 +23,22 @@ stop_cmd="courier_doit stop" courier_doit() { action=$1 - case ${action} in + case $action in start) - for _f in $required_vars; do - eval _value=\$${_f} - case $_value in - [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) - ;; - *) - @ECHO@ 1>&2 "$0: WARNING: \$${_f} is not set" - if [ -z $rc_force ]; then - return 1 - fi - ;; - esac - done for f in $required_files; do if [ ! -r "$f" ]; then @ECHO@ 1>&2 "$0: WARNING: $f is not readable" - if [ -z $rc_force ]; then - return 1 - fi + return 1 fi done @ECHO@ "Starting ${name}." + ${ctl_command} $action ;; stop) @ECHO@ "Stopping ${name}." + ${ctl_command} $action ;; esac - - ${ctl_command} ${action} } load_rc_config $name diff --git a/mail/sqwebmail/patches/patch-ad b/mail/sqwebmail/patches/patch-ad index e63b36b1b02..1d748001348 100644 --- a/mail/sqwebmail/patches/patch-ad +++ b/mail/sqwebmail/patches/patch-ad @@ -1,17 +1,8 @@ -$NetBSD: patch-ad,v 1.5 2005/08/11 00:03:51 jlam Exp $ +$NetBSD: patch-ad,v 1.6 2006/04/28 18:16:25 jlam Exp $ ---- sqwebmail/Makefile.in.orig 2005-07-23 10:00:36.000000000 -0400 +--- sqwebmail/Makefile.in.orig 2006-03-04 09:18:53.000000000 -0500 +++ sqwebmail/Makefile.in -@@ -284,7 +284,7 @@ CLEANFILES = htmllibdir.h ldapsearch web - - DISTCLEANFILES = webmail.authpam - SUBDIRS = images html --script_SCRIPTS = sendit.sh cleancache.pl ldapsearch webgpg -+script_SCRIPTS = sendit.sh cleancache.pl ldapsearch - sysconf_DATA = ldapaddressbook.dist sqwebmaild.dist - DOCS = SECURITY BUGS TODO SECURITY.html BUGS.html TODO.html - noinst_DATA = $(DOCS) TIMEZONELIST -@@ -979,7 +979,7 @@ install-perms-local: install-perms-cache +@@ -991,7 +991,7 @@ install-perms-local: install-perms-cache htmllibdir.h: config.status echo '#define HTMLLIBDIR "@htmldir@"' >htmllibdir.h @@ -20,7 +11,7 @@ $NetBSD: patch-ad,v 1.5 2005/08/11 00:03:51 jlam Exp $ echo '#define CALENDARMODE "$(sysconfdir)/calendarmode"' >>htmllibdir.h echo '#define LOGINDOMAINLIST "$(sysconfdir)/logindomainlist"' >>htmllibdir.h echo '#define MAXMSGSIZE @MAXMSGSIZE@' >>htmllibdir.h -@@ -987,7 +987,7 @@ htmllibdir.h: config.status +@@ -999,7 +999,7 @@ htmllibdir.h: config.status echo '#define SOCKDIR "$(localstatedir)"' >>htmllibdir.h echo '#define SHAREDINDEXFILE "$(sysconfdir)/shared/index"' >>htmllibdir.h echo '#define SQWEBPASSWD "$(pkglibexecdir)/sqwebpasswd"' >>htmllibdir.h @@ -29,7 +20,7 @@ $NetBSD: patch-ad,v 1.5 2005/08/11 00:03:51 jlam Exp $ ; then \ echo '#define HOSTNAMEFILE "$(sysconfdir)/defaultdomain"' >>htmllibdir.h \ ; echo '#define MAKEMIME "$(bindir)/makemime"' >>htmllibdir.h \ -@@ -996,7 +996,7 @@ htmllibdir.h: config.status +@@ -1008,7 +1008,7 @@ htmllibdir.h: config.status ; echo '#define MAKEMIME "$(pkglibexecdir)/makemime"' >>htmllibdir.h \ ; fi echo '#define LDAPADDRESSBOOK "$(sysconfdir)/ldapaddressbook"' >>htmllibdir.h @@ -38,7 +29,7 @@ $NetBSD: patch-ad,v 1.5 2005/08/11 00:03:51 jlam Exp $ echo '#define AUTHCHARSET "$(sysconfdir)/authcharset"' >>htmllibdir.h ldapsearch: ../ldapaddressbook/ldapsearch -@@ -1024,9 +1024,6 @@ install-perms-cache: +@@ -1036,9 +1036,6 @@ install-perms-cache: @echo "@cachedir@ 700 @cacheowner@ bin" >>permissions.dat cache-reminder: diff --git a/mail/sqwebmail/patches/patch-ah b/mail/sqwebmail/patches/patch-ah index 3bc00e3e051..e19badd1b43 100644 --- a/mail/sqwebmail/patches/patch-ah +++ b/mail/sqwebmail/patches/patch-ah @@ -1,8 +1,8 @@ -$NetBSD: patch-ah,v 1.2 2005/08/11 00:03:51 jlam Exp $ +$NetBSD: patch-ah,v 1.3 2006/04/28 18:16:25 jlam Exp $ ---- sqwebmail/configure.orig 2005-07-23 10:00:37.000000000 -0400 +--- sqwebmail/configure.orig 2006-03-04 09:18:54.000000000 -0500 +++ sqwebmail/configure -@@ -19780,7 +19780,7 @@ fi; +@@ -20267,7 +20267,7 @@ fi; diff --git a/mail/sqwebmail/patches/patch-aj b/mail/sqwebmail/patches/patch-aj index 732a9cf59ca..35af1e6c656 100644 --- a/mail/sqwebmail/patches/patch-aj +++ b/mail/sqwebmail/patches/patch-aj @@ -1,8 +1,8 @@ -$NetBSD: patch-aj,v 1.4 2006/01/03 05:59:12 jlam Exp $ +$NetBSD: patch-aj,v 1.5 2006/04/28 18:16:25 jlam Exp $ ---- INSTALL.html.orig 2005-11-17 22:38:11.000000000 -0500 +--- INSTALL.html.orig 2006-02-25 12:13:16.000000000 -0500 +++ INSTALL.html -@@ -700,7 +700,7 @@ Qmail box.</p> +@@ -707,7 +707,7 @@ Qmail box.</p> installation. The following presumes that SqWebMail's configuration files are installed in <code>/usr/lib/sqwebmail</code> (the default).</p> |