Hi,
we're using CloudLinux 7.9 with cPanel and got the following problem.
Our test script:
After executing this script i'll get 2 E-Mails both containing a "Reply-To" field which is set to [email protected] and not [email protected].
We can't find any reference of this behaviour on Google and have no experts on Exim Config Reading.
We'll also supply any configs requested.
Thank you in advance.
HK Computerdienst GmbH
we're using CloudLinux 7.9 with cPanel and got the following problem.
Our test script:
Code:
$to = '[email protected]';
$from = '[email protected]';
$reply_to = '[email protected]';
$betreff = 'Der Betreff';
$nachricht = 'Hallo';
$header1 = '' .
'From: ' . $from . "\r\n" .
'Reply-To: ' . $reply_to . "\r\n" .
'X-Mailer: ';
$header2 = '' .
'From: ' . $from . "\r\n" .
'X-Mailer: ';
mail($to, 'reply-to test', $nachricht, $header1);
mail($to, 'sendmail override respond-to test', $nachricht, $header2, '-f' . $reply_to);
We can't find any reference of this behaviour on Google and have no experts on Exim Config Reading.
We'll also supply any configs requested.
Thank you in advance.
HK Computerdienst GmbH
Last edited by a moderator: