martin: server/perl-kolab/Kolab-Mailer Mailer.pm,1.2,1.3

cvs at intevation.de cvs at intevation.de
Sat Jun 11 11:40:45 CEST 2005


Author: martin

Update of /kolabrepository/server/perl-kolab/Kolab-Mailer
In directory doto:/tmp/cvs-serv28300/perl-kolab/Kolab-Mailer

Modified Files:
	Mailer.pm 
Log Message:
Martin Konold: Fix from Gunnar Wrobel


Index: Mailer.pm
===================================================================
RCS file: /kolabrepository/server/perl-kolab/Kolab-Mailer/Mailer.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Mailer.pm	8 Jun 2005 12:44:35 -0000	1.2
+++ Mailer.pm	11 Jun 2005 09:40:43 -0000	1.3
@@ -68,7 +68,7 @@
         $mesg->attach(Data => $data);
     }
 
-    open(SENDMAIL, '|' . $Kolab::config{'prefix'} . $ap::config->{sbindir}/sendmail -oi -t -odq);
+    open(SENDMAIL, '|' . $Kolab::config{'prefix'} . $ap::config->{sbindir} . '/sendmail -oi -t -odq');
     $mesg->print(\*SENDMAIL);
     close(SENDMAIL);
 }
@@ -87,7 +87,7 @@
         Data    => $text,
     );
 
-    open(SENDMAIL, '|' . $Kolab::config{'prefix'} . $ap::config->{sbindir}/sendmail -oi -t -odq);
+    open(SENDMAIL, '|' . $Kolab::config{'prefix'} . $ap::config->{sbindir} . '/sendmail -oi -t -odq');
     $mesg->print(\*SENDMAIL);
     close(SENDMAIL);
 }





More information about the commits mailing list