[Codestriker-commits] CVS update: codestriker/lib/Codestriker/TopicListeners Email.pm
Brought to you by:
sits
|
From: <si...@us...> - 2006-06-15 06:41:07
|
User: sits
Date: 06/06/14 23:40:54
Modified: lib/Codestriker/TopicListeners Email.pm
Log:
The create new topic email had an extra newline inserted after the
subject, which meant some mail servers (Exchange) thought this was the
end of the headers section, and then ignored the Content-Type and
Content-Transfer-Encoding headers, which created a malformed email.
Index: Email.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/TopicListeners/Email.pm,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- Email.pm 10 Jun 2006 02:58:34 -0000 1.20
+++ Email.pm 15 Jun 2006 06:40:54 -0000 1.21
@@ -419,7 +419,7 @@
"", "", "",
$query->url(), 0);
- my $subject = "[REVIEW] Topic $event_name \"" . $topic->{title} . "\" \n";
+ my $subject = "[REVIEW] Topic $event_name \"" . $topic->{title} . "\"";
my $body =
"Topic \"$topic->{title}\"\n" .
"Author: $topic->{author}\n" .
|