svn commit: [2296] trunk/lib/Act/Handler/Talk/Edit.pm: in case more than one address is given, only use the first for the From:
maddingue at free.fr
maddingue at free.fr
Tue Apr 16 01:10:15 CEST 2013
Revision: 2296
Author: maddingue
Date: 2013-04-16 01:10:15 +0200 (Tue, 16 Apr 2013)
Log Message:
-----------
in case more than one address is given, only use the first for the From:
Modified Paths:
--------------
trunk/lib/Act/Handler/Talk/Edit.pm
Modified: trunk/lib/Act/Handler/Talk/Edit.pm
===================================================================
--- trunk/lib/Act/Handler/Talk/Edit.pm 2013-04-15 23:05:42 UTC (rev 2295)
+++ trunk/lib/Act/Handler/Talk/Edit.pm 2013-04-15 23:10:15 UTC (rev 2296)
@@ -336,9 +336,11 @@
}
$template->process("talk/notify_$slot", \$output{$slot});
}
+
# send the notification email
+ my ($from) = split /,/, $Config->talks_submissions_notify_address;
Act::Email::send(
- from => $Config->talks_submissions_notify_address,
+ from => $from,
to => $Config->talks_submissions_notify_address,
xheaders => {
'X-Act' => join(
More information about the Act-cvs
mailing list