[Codestriker-commits] CVS update: codestriker/lib/Codestriker/TopicListeners Email.pm
Brought to you by:
sits
|
From: <si...@us...> - 2007-06-29 06:54:29
|
User: sits
Date: 07/06/28 23:54:28
Modified: . CHANGELOG
lib/Codestriker/TopicListeners Email.pm
Log:
Add the MIME-Version header to emails to ensure RFC2045 complaince.
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- CHANGELOG 29 Jun 2007 05:38:30 -0000 1.204
+++ CHANGELOG 29 Jun 2007 06:54:27 -0000 1.205
@@ -15,6 +15,10 @@
* Improved patch file parsing for handling binary file changes.
+* Ensure emails sent contain the header "MIME-Version: 1.0" for
+ RFC2045 conformance. Submitted by Vadim Zeitlin
+ <va...@us...>.
+
Version 1.9.3
* The project list screen now displays for each project, the total
Index: Email.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/TopicListeners/Email.pm,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- Email.pm 15 Jun 2006 06:40:54 -0000 1.21
+++ Email.pm 29 Jun 2007 06:54:28 -0000 1.22
@@ -497,6 +497,7 @@
# unicode characters.
$smtp->datasend("Content-Type: text/plain; charset=\"utf-8\"\n");
$smtp->datasend("Content-Transfer-Encoding: quoted-printable\n");
+ $smtp->datasend("MIME-Version: 1.0\n");
# Insert a blank line for the body.
$smtp->datasend("\n");
|