Re: [exim] Help setting up exim w/PHP on Ubuntu

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Andy Millar
Data:  
Para: pr0fess0r
CC: exim-users
Assunto: Re: [exim] Help setting up exim w/PHP on Ubuntu
Hi,

> The problem is I am sending mail through my ISP who doesnt like the
> sender www-data@hobbiton (Hobbiton is the name of my server)


Have you tried specifying the From: header to a legitimate domain.

It looks like your ISP doesn't like the fact that hobbiton is an invalid
domain.

If you're using PHP mail(), try:

mail('to@address', 'subject', 'message', "From: webmaster@???\n");

This might make them happier.

Let me know if that helps,

- Andy