Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: exim: users

Almost there - Soft fail in headers

 

 

exim users RSS feed   Index | Next | Previous | View Threaded


beren at beren

Nov 18, 2009, 3:49 AM

Post #1 of 1 (247 views)
Permalink
Almost there - Soft fail in headers

Hi,

I'm almost there.. everything works fine with my exim installation pointing
to two gmail smarthosts, but i'm getting a soft fail in the headers.

Here are my headers:


Delivered-To: beren [at] beren
Received: by 10.100.109.1 with SMTP id h1cs240328anc;
Wed, 18 Nov 2009 03:42:00 -0800 (PST)
Received: by 10.213.96.83 with SMTP id g19mr358150ebn.20.1258544519179;
Wed, 18 Nov 2009 03:41:59 -0800 (PST)
Return-Path: <beren+caf_=beren=beren.net.au [at] aquacouture>
Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.25])
by mx.google.com with ESMTP id 10si35786eyd.31.2009.11.18.03.41.58;
Wed, 18 Nov 2009 03:41:58 -0800 (PST)
Received-SPF: softfail (google.com: domain of transitioning
beren+caf_=beren=beren.net.au [at] aquacouture does not designate
74.125.78.25 as permitted sender) client-ip=74.125.78.25;
Authentication-Results: mx.google.com; spf=softfail (google.com:
domain of transitioning
beren+caf_=beren=beren.net.au [at] aquacouture does not designate
74.125.78.25 as permitted sender)
smtp.mail=beren+caf_=beren=beren.net.au [at] aquacouture
Received: by ey-out-2122.google.com with SMTP id d26so112760eyd.23
for <beren [at] beren>; Wed, 18 Nov 2009 03:41:57 -0800 (PST)
Received: by 10.213.109.69 with SMTP id i5mr1423758ebp.11.1258544517327;
Wed, 18 Nov 2009 03:41:57 -0800 (PST)
X-Forwarded-To: beren [at] beren
X-Forwarded-For: beren [at] aquacouture beren [at] beren
Delivered-To: beren [at] aquacouture
Received: by 10.213.113.209 with SMTP id b17cs101733ebq;
Wed, 18 Nov 2009 03:41:57 -0800 (PST)
Received: by 10.204.48.194 with SMTP id s2mr6591237bkf.210.1258544516938;
Wed, 18 Nov 2009 03:41:56 -0800 (PST)
Return-Path: <donotreply [at] aquacouture>
Received: from mail-fx0-f209.google.com (mail-fx0-f209.google.com
[209.85.220.209])
by mx.google.com with ESMTP id 24si4360034fxm.3.2009.11.18.03.41.56;
Wed, 18 Nov 2009 03:41:56 -0800 (PST)
Received-SPF: softfail (google.com: domain of transitioning
donotreply [at] aquacouture does not designate 209.85.220.209 as
permitted sender) client-ip=209.85.220.209;
Received: by fxm1 with SMTP id 1so2484961fxm.32
for <beren [at] aquacouture>; Wed, 18 Nov 2009 03:41:56 -0800 (PST)
Received: by 10.216.91.5 with SMTP id g5mr1487815wef.168.1258544516151;
Wed, 18 Nov 2009 03:41:56 -0800 (PST)
Return-Path: <donotreply [at] aquacouture>
Received: from aquacouture
(ec2-79-125-18-68.eu-west-1.compute.amazonaws.com [79.125.18.68])
by mx.google.com with ESMTPS id t2sm13846809gve.12.2009.11.18.03.41.54
(version=TLSv1/SSLv3 cipher=RC4-MD5);
Wed, 18 Nov 2009 03:41:55 -0800 (PST)
Received: from www-data by aquacouture with local (Exim 4.69)
(envelope-from <www-data [at] aquacouture>)
id 1NAiv4-0001AQ-2u
for beren [at] aquacouture; Wed, 18 Nov 2009 11:41:54 +0000
Date: Wed, 18 Nov 2009 11:41:54 +0000
To: test <beren [at] aquacouture>
From: test <donotreply [at] aquacouture>
Reply-to: Beren Gamble <djberen [at] gmail>
Subject: Email enquiry
Message-ID: <8632b81652c3a0b89a9a8a4b128b5959 [at] test>
X-Priority: 3
X-Mailer: PHPMailer 5.1 (phpmailer.worxware.com)
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="b1_8632b81652c3a0b89a9a8a4b128b5959"


--b1_8632b81652c3a0b89a9a8a4b128b5959
Content-Type: text/plain; charset = "iso-8859-1"
Content-Transfer-Encoding: 8bit

Email: djberen [at] gmail


--b1_8632b81652c3a0b89a9a8a4b128b5959
Content-Type: text/html; charset = "iso-8859-1"
Content-Transfer-Encoding: 8bit

Email: djberen [at] gmail<br>test





--b1_8632b81652c3a0b89a9a8a4b128b5959--

I'm not sure where it's gettin the IP addresses from (!) - the 74.125.x.x is
the same range that my server is on, but a different IP, so I'm not sure
what's happening there.

Also, if by chance you know PHPMailer, here is the script i'm using:

$mail = new PHPMailer();
$mail->From = $fromEmail;
$mail->FromName = $fromName;
$mail->Host = $emailHost;
$mail->Mailer = "smtp";
$mail->IsSMTP();
$mail->AddAddress($toEmail, $fromName);
$mail->Subject = $subject;
$mail->Body = $bodyContent;
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port //
SMTP server
$mail->Username = $emailUsername; // SMTP server username
$mail->Password = $emailPassword; // SMTP server password
$mail->AddReplyTo("djberen [at] gmail","Beren Gamble");

$mail->IsSendmail();

Any help would be greatly appreciated... thank you!
--
## List details at http://lists.exim.org/mailman/listinfo/exim-users
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/

exim users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.