9efea57ddf
* Missing </table> when displaying folder list. * Use SQWEBMAIL_RANDSEED if it's set, instead of sendit.sh's inode. * Remove hardcoded reference to TIMEOUTHARD * Global footer wasn't being added correctly to HTML-formatted mail. * Fixes to inferred HTML formatting. * Fix signing of multipart messages that contain 8 bit content.
22 lines
551 B
Text
22 lines
551 B
Text
$NetBSD: patch-am,v 1.2 2007/10/15 15:38:52 jlam Exp $
|
|
|
|
--- pcp/configure.orig Sun Jul 22 01:27:29 2007
|
|
+++ pcp/configure
|
|
@@ -28669,14 +28669,15 @@ LIBS="$saveLIBS"
|
|
echo $NETLIBS >pcp.libs
|
|
|
|
|
|
-if test -d ${srcdir}/../courier
|
|
+if true || test -d ${srcdir}/../courier
|
|
then
|
|
scriptdir="$datadir/sqwebmail"
|
|
else
|
|
scriptdir="$prefix"
|
|
fi
|
|
|
|
-SENDIT="$scriptdir/sendit.sh"
|
|
+# sendit.sh can be customized, so we call it from $(sysconfdir).
|
|
+SENDIT="$sysconfdir/sendit.sh"
|
|
|
|
|
|
{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
|