Recebido: (de www-data @ localhost)

3

Todos os e-mails provenientes do meu servidor têm Received: (from www-data@localhost) , mesmo que eu tenha definido 127.0.0.1 mydomain.org mydomain server2 em / etc / hosts. Eu acho que essa é a razão pela qual ele está acabando na pasta de spam.

Como posso alterar este Received: (from www-data@localhost) ?

    $headers = "Sender: " . $fromMail . "\r\n";
    $headers .= "From: " . $fromMail . "\r\n";
    $headers .= "Reply-To: ". $replayFromMail . "\r\n";
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";

    mail($urow['email'],$subject,$notify,$headers);

Eu também tentei adicionar -f [email protected]:

mail($urow['email'],$subject,$notify,$headers,"-f [email protected]");

Por que eu acho que está relacionado ao problema de spam?

de link

This IP address is HELO'ing as "localhost.localdomain" which violates the relevant standards (specifically: RFC5321).

The CBL does not list for RFC violations per-se. This particular behaviour, however, correlates strongly to spambot infections. In other words, out of thousands upon thousands of IP addresses HELO'ing this way, all but a handful are infected and spewing junk. Even if it isn't an infection, it's a misconfiguration that should be fixed, because many spam filtering mechanisms operate with the same rules, and it's best to fix it regardless of whether the CBL notices it or not.

    
por Orlo 05.03.2014 / 21:25

0 respostas

Tags