Schloss auf einem Hügel
Rufposten
 
Text. Bild. Ton.
Diese Seite berichtet von München aus über Multimedia, digitales Storytelling und Kunst im Netz. Und stellt eigene Entwicklungen in diesem Bereich vor.

Rufposten wird betrieben von Matthias Eberl.
Über mich
Kontakt
Kurse



»Put up some data.
Suggest someone else does.
Manage a subject area.
Write some software.
Send us suggestions.
Tell your friends.«
Tim Berners-Lee, der Erfinder des World Wide Web, auf einer der ersten Seiten im WWW.





RSS Feed





Bad Headers using Feedback Plugin for Blosxom

meta-uz:

This is not of interest for the most readers here, but for all those still running a blosxom weblog with the feedback plugin from Frank Hecker (he stopped support long time ago). With some perl versions you may get the following error in the notification mail for some blog posts:

bad headers - Improper use of control character (char 0D hex)

To fix this, you have to change the following lines in the feedback plugin:

    $smtp->datasend("Subject: [$blosxom::blog_title] Feedback: "
                    . "\"$blosxom::title\"\n");

Change it to this:

# Changes because of Bad Headers Error
my $titel_stripped = $blosxom::title;
$titel_stripped =~ s/\r//g;
    $smtp->datasend("Subject: [$blosxom::blog_title] Feedback: "
                    . "\"$titel_stripped\"\n");

Veröffentlicht am 08. Dec. 2010. in [/Interna] Kommentare: 0




Valid XHTML 1.0  Powered by Blosxom