Autor: Andy Millar
Fecha:
A: pr0fess0r
Cc: exim-users
Asunto: 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