Comment 2 for bug 826250

Revision history for this message
Rubén Díaz (outime) wrote :

If we remove the ".", that would mean we're not telling the mail server what kind of content is being sent.

Current code is like the following:

  $headers = "MIME-Version: 1.0\r\n";
  $headers .= "Content-type: text/html; charset=UTF-8\r\n";
  $headers .= "From: ".$jk->name." <".$jk->admin_mail.">";

What is probably happening imho is that spam filters are giving an increased amount of spam points because of the HTML and some words. Two possible solutions would be:

a) Use plain text (dirty one)
b) Use a spam filter (someone said SpamAssassin?) and check the analysis results.

Since Jisko is not being developed anymore, and it's only accepting security/bug patches... if someone is able to provide some additional, clarifying information about this, I'll be glad to include it as a new revision at out SVN.