wilde: server/php-kolab/Kolab_Filter dovecotlda-quoting.patch, NONE, 1.1.2.1 Kolab_Filter.spec, 1.19, 1.19.2.1 Makefile, 1.8, 1.8.2.1

cvs at kolab.org cvs at kolab.org
Tue Mar 17 12:46:18 CET 2009


Author: wilde

Update of /kolabrepository/server/php-kolab/Kolab_Filter
In directory doto:/tmp/cvs-serv1789/php-kolab/Kolab_Filter

Modified Files:
      Tag: kolab_2_2_branch
	Kolab_Filter.spec Makefile 
Added Files:
      Tag: kolab_2_2_branch
	dovecotlda-quoting.patch 
Log Message:
Fixed quoting of arguments in DovecotLDA transport.


--- NEW FILE: dovecotlda-quoting.patch ---
--- a/lib/Horde/Kolab/Filter/Transport/DovecotLDA.php
+++ b/lib/Horde/Kolab/Filter/Transport/DovecotLDA.php
@@ -218,8 +218,8 @@
 
         $deliver = $conf['kolab']['filter']['dovecot_deliver'];
 
-        $this->_deliver_fh = popen($deliver . ' -f ' . $this->_envelopeSender .
-                                   ' -d ' . $recipient, "w");
+        $this->_deliver_fh = popen($deliver . ' -f "' . $this->_envelopeSender .
+                                   '" -d "' . $recipient . '"', "w");
         if ($this->_deliver_fh === false) {
             return PEAR::raiseError('Failed to connect to the dovecot delivery tool!');
         }

Index: Kolab_Filter.spec
===================================================================
RCS file: /kolabrepository/server/php-kolab/Kolab_Filter/Kolab_Filter.spec,v
retrieving revision 1.19
retrieving revision 1.19.2.1
diff -u -d -r1.19 -r1.19.2.1
--- Kolab_Filter.spec	3 Mar 2009 16:25:07 -0000	1.19
+++ Kolab_Filter.spec	17 Mar 2009 11:46:16 -0000	1.19.2.1
@@ -1,7 +1,7 @@
 # Variables
 %define         V_package Kolab_Filter
 %define         V_version 0.1.4
-%define         V_release 20090303
+%define         V_release 20090317
 
 # Package Information
 Name:	   %{V_package}
@@ -22,6 +22,7 @@
 Patch0:    issue3435.patch
 Patch1:    issue3192.patch
 Patch2:    issue3441.patch
+Patch3:    dovecotlda-quoting.patch
 
 # Build Info
 Prefix:	   %{l_prefix}
@@ -59,6 +60,7 @@
 	%patch -p3 -P 0
 	%patch -p1 -P 1
 	%patch -p1 -P 2
+	%patch -p1 -P 3
 	cp %{S:1} .
 %build
 

Index: Makefile
===================================================================
RCS file: /kolabrepository/server/php-kolab/Kolab_Filter/Makefile,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -u -d -r1.8 -r1.8.2.1
--- Makefile	3 Mar 2009 16:25:07 -0000	1.8
+++ Makefile	17 Mar 2009 11:46:16 -0000	1.8.2.1
@@ -21,7 +21,7 @@
 
 SOURCE_URL=http://pear.horde.org/get
 SOURCE_0=$(PACKAGE)-$(VERSION).tgz
-EXTRA=ChangeLog issue3435.patch issue3192.patch issue3441.patch package.xml
+EXTRA=ChangeLog issue3435.patch issue3192.patch issue3441.patch dovecotlda-quoting.patch package.xml
 
 .PHONY: all
 all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm





More information about the commits mailing list