# HG changeset patch # User Christian Arnold # Date 1237888838 -3600 # Node ID bb1b17fee8c389d6e45a7e7b7c9f1c1dc514e9bf # Parent 744cb8934861145007faf8b39080743496b47d9a add mail header Content-Type and Content-Transfer-Encoding diff -r 744cb8934861 -r bb1b17fee8c3 debian/changelog --- a/debian/changelog Wed Feb 11 11:08:08 2009 +0000 +++ b/debian/changelog Tue Mar 24 11:00:38 2009 +0100 @@ -1,3 +1,10 @@ +logbuch (0.28-1) stable; urgency=low + + * new upstream + * add mail header Content-Type and Content-Transfer-Encoding + + -- Christian Arnold Tue, 24 Mar 2009 10:49:48 +0100 + logbuch (0.27-1) stable; urgency=low * new upstream diff -r 744cb8934861 -r bb1b17fee8c3 log.pl --- a/log.pl Wed Feb 11 11:08:08 2009 +0000 +++ b/log.pl Tue Mar 24 11:00:38 2009 +0100 @@ -222,6 +222,8 @@ $subject =~ s/\n(.)/\n\t$1/g; $mailer->open({ + "Content-Type" => "text/plain; charset=utf-8", + "Content-Transfer-Encoding" => "8bit", "To" => $mailto, "Subject" => $subject}); print $mailer $head, "\n", $text;