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

Inizio della pagina
Delete this message
Reply to this message
Autore: Andy Millar
Data:  
To: pr0fess0r
CC: exim-users
Oggetto: 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