pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/squirrelmail Add patch from squirrelmail repository:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/359699520309
branches:  trunk
changeset: 476075:359699520309
user:      bouyer <bouyer%pkgsrc.org@localhost>
date:      Wed Jun 02 18:50:26 2004 +0000

description:
Add patch from squirrelmail repository:
"Fix typo in compose.php reply/reply to all quoting (#963499)."
Without this, reply/reply all won't work when quoting a message.
Bump PKGREVISION.

diffstat:

 mail/squirrelmail/Makefile         |   3 ++-
 mail/squirrelmail/distinfo         |   3 ++-
 mail/squirrelmail/patches/patch-ab |  23 +++++++++++++++++++++++
 3 files changed, 27 insertions(+), 2 deletions(-)

diffs (50 lines):

diff -r bcc7462e899a -r 359699520309 mail/squirrelmail/Makefile
--- a/mail/squirrelmail/Makefile        Wed Jun 02 18:45:00 2004 +0000
+++ b/mail/squirrelmail/Makefile        Wed Jun 02 18:50:26 2004 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.39 2004/05/31 20:14:39 bouyer Exp $
+# $NetBSD: Makefile,v 1.40 2004/06/02 18:50:26 bouyer Exp $
 
 DISTNAME=      squirrelmail-1.4.3
+PKGREVISION=   1
 CATEGORIES=    mail www
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=squirrelmail/}
 EXTRACT_SUFX=  .tar.bz2
diff -r bcc7462e899a -r 359699520309 mail/squirrelmail/distinfo
--- a/mail/squirrelmail/distinfo        Wed Jun 02 18:45:00 2004 +0000
+++ b/mail/squirrelmail/distinfo        Wed Jun 02 18:50:26 2004 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.16 2004/05/31 20:14:39 bouyer Exp $
+$NetBSD: distinfo,v 1.17 2004/06/02 18:50:26 bouyer Exp $
 
 SHA1 (squirrelmail-1.4.3.tar.bz2) = 8eb0c45e322b18994732baba70a81168e5a8a0ff
 Size (squirrelmail-1.4.3.tar.bz2) = 2254146 bytes
 SHA1 (patch-aa) = cad816ce6e36def3f1b99ba831aa297c074d5aca
+SHA1 (patch-ab) = d53432baf29324123c53c9f5fbe123b3dbeb7f7f
diff -r bcc7462e899a -r 359699520309 mail/squirrelmail/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/squirrelmail/patches/patch-ab        Wed Jun 02 18:50:26 2004 +0000
@@ -0,0 +1,23 @@
+--- src/compose.php.orig       Wed Jun  2 20:38:45 2004
++++ src/compose.php    Wed Jun  2 20:38:19 2004
+@@ -14,7 +14,7 @@
+  *    - Send mail
+  *    - Save As Draft
+  *
+- * $Id: patch-ab,v 1.3 2004/06/02 18:50:27 bouyer Exp $
++ * $Id: patch-ab,v 1.3 2004/06/02 18:50:27 bouyer Exp $
+  */
+ 
+ /* Path for SquirrelMail required files. */
+@@ -757,9 +757,9 @@
+               sqWordWrap($rewrap_body[$i], ($editor_size));
+                 if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
+                     $gt = $matches[1];
+-                    $body .= $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n";
++                    $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n";
+                 } else {
+-                    $body .= $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n";
++                    $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n";
+                 }
+                 unset($rewrap_body[$i]);
+             }



Home | Main Index | Thread Index | Old Index