If I did not oversee a reply, noone ever fixed the problem described
here.
I did the following which fixed it for me.
replace (around line 885):
PHP Code:
$message2 = eregi_replace("\{[^}]*\}","",$message);
with:
PHP Code:
$message2 = ereg_replace("\r\n","",$message);
$message2 = eregi_replace("\{[^}]*\}","",$message2);
Oh and last but not least thanks for the great hack.