• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

fake MIME-Version header

T

troymc

Guest
I am sending html emails from php using the mail() function and am getting an error. It is from qmail-scanner. This is the error that is in the email when I receive it...

X-Qmail-Scanner-1.25st: added fake MIME-Version header MIME-Version: 1.0

Does anyone know how to get rid of this. It is in the actual email and is a problem since my customers are wondering why forms from their sites are saying this. I know the problem comes from adding the html header in the php file, but is there a way to get around this? Here is my actual mail call from the php page...

mail($mailTo, $mailSubject, $mailMessage, "From: " . $mailFrom . "\r\nContent-type: text/html\r\n") or die("Could not send mail");
 
Back
Top