Exim email localhost.localdomain
From: mypersonalemailaddress<
Exim is some how rewriting the envelope on me to using this domain?
Any idea's what might be happening?
Delivered-To:
Received: by 10.112.9.66 with SMTP id x2csp32962lba;
Sat, 31 Mar 2012 12:29:53 -0700 (PDT)
Received: by 10.229.137.144 with SMTP id w16mr1175818qct.8.1333222192567;
Sat, 31 Mar 2012 12:29:52 -0700 (PDT)
Return-Path: <
Received: from mydomainNAME.com (mydomainNAME.com. [97.107.128.**])
by mx.google.com with ESMTPS id m16si5712730qct.73.2012.03.31.12.29.52
(version=TLSv1/SSLv3 cipher=OTHER);
Sat, 31 Mar 2012 12:29:52 -0700 (PDT)
Received-SPF: neutral (google.com: 97.107.128.** is neither permitted nor denied by best guess record for domain of
Authentication-Results: mx.google.com; spf=neutral (google.com: 97.107.128.** is neither permitted nor denied by best guess record for domain of
Received: from localhost ([127.0.0.1] helo=localhost.localdomain)
by mydomainNAME.com with esmtps (TLSv1:AES256-SHA:256)
(Exim 4.63)
(envelope-from <
id 1SE3zj-0008T6-RK
for
Received: (from apache@localhost)
by localhost.localdomain (8.13.8/8.13.8/Submit) id q2VJTpbB032554;
Sat, 31 Mar 2012 12:29:51 -0700
Date: Sat, 31 Mar 2012 12:29:51 -0700
Message-Id: <
To:
Subject: mypersonalemailaddressING
From: mypersonalemailaddress<
Reply-To:
X-Mailer: PHP/5.1.6MIME-Version: 1.0
Content-Type: text/html; charset=ISO-8859-1
This is just a mypersonalemailaddress.
1 Reply
@aot2002:
It seems that in this email the FROM: is being changed to "localhost.localdomain".
From: mypersonalemailaddress<
mydomainname.com@localhost.localdomain >Exim is some how rewriting the envelope on me to using this domain?
Any idea's what might be happening?
My best guess is you could do this in runtime.
I have same problem before(but i use Postfix not Exim). I send email through php script
$from =
$mail = new PHPMailer();
$mail->From=$from;
$mail->Sender=$from;
$mail->AddCustomHeader("Reply-to:$from");
these lines fix my problem.