Ticket #4562 (closed Patches: fixed)

Opened 3 years ago

Last modified 3 years ago

Enable multiple Fax Email Destination - update Ticket #4326

Reported by: DHuang Assigned to: mbrevda
Priority: major Milestone: 2.9
Component: Fax Version: 2.8-branch
Keywords: Cc:
Confirmation: Unreviewed Distro:
Backend Engine: All Distro Ver:
Backend Ver: SVN Revision (if applicable):

Description

Required this patch to enable multiple fax email destination

--- fax-process.pl_org 2010-09-29 15:30:17.000000000 +0800 +++ fax-process.pl 2010-09-29 15:21:14.000000000 +0800 @@ -232,7 +232,7 @@ $encoded

my $smtp = Net::SMTP-> new("127.0.0.1", Debug => 0) or

die "Net::SMTP::new: $!";

$smtp-> mail($from);

-$smtp-> recipient($to); +$smtp-> recipient(split(',',"$to"));

$smtp-> data(); $smtp-> datasend($msg); $smtp-> dataend();

Change History

09/29/10 03:38:18 changed by DHuang

--- fax-process.pl_org  2010-09-29 15:30:17.000000000 +0800
+++ fax-process.pl      2010-09-29 15:21:14.000000000 +0800
@@ -232,7 +232,7 @@ $encoded 
 my $smtp = Net::SMTP-> new("127.0.0.1", Debug => 0) or
   die "Net::SMTP::new: $!";
 $smtp-> mail($from);
-$smtp-> recipient($to);
+$smtp-> recipient(split(',',"$to"));
 $smtp-> data();
 $smtp-> datasend($msg);
 $smtp-> dataend();

10/25/10 09:02:15 changed by mbrevda

  • status changed from new to closed.
  • resolution set to fixed.

(In [10445]) closes #4562; re #4326; Enable multiple Fax Email Destination