On Sun, Jun 08, 2003 at 03:32:44PM +0100, p cooper wrote:
> Got exim nearly sorted( after giving up on sendmail
> :-)))
> Im using a script to email form information:
> open (MAIL, "|$mail_program") || die "Could Not
> Open Mail Program: $!";
> print MAIL <<__END_OF_MAIL__;#
> To: $to
> Reply-to: $from
> Subject: $subject
> Content-type: text/plain
> $messagebody
> __END_OF_MAIL__
> close (MAIL);
> -----------------------------------------------
> the emails are coming out the other end as from
> apache<apache@???> rather than the
> 'from string:
I see no "From: " header in your example above.
> no idea where to start looking to sort this
> :-((
Set a correct FromM: header and maybe consult the docs for the
trusted_user option.
HTH,
Florian