RCVD_BY_IP Received by mail server with no name

Swift Mailer is a fantastic library for sending email with php. Discuss this library or ask any questions about it here.

Moderators: Chris Corbyn, General Moderators

Post Reply
daneel
Forum Newbie
Posts: 19
Joined: Wed Apr 09, 2008 3:39 pm

RCVD_BY_IP Received by mail server with no name

Post by daneel »

I get this SpamAssasin rule when sending an email with swift from my server...
I've looked it up and seems to be that the server is sending HELO command with its IP and not with its name. If that's why, does anyone know if it's because I'm missing something in swift configuration or it's because is something not well configured in my mail server ?

:banghead:

thanks :roll:
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Re: RCVD_BY_IP Received by mail server with no name

Post by Chris Corbyn »

Swift isn't able to figure out the domain name for some reason. Running on command line perhaps?

You're able to specify it explicitly however.

Code: Select all

$swift = new Swift($connection, 'your-domain.tld');
:)
Post Reply