NetTalk Central
NetTalk E-Mail => E-Mail - Ask For Help => Topic started by: Alberto on April 30, 2014, 07:53:19 AM
-
Please, if anybody can help me.
I´using NT to send an email and its allways marked as spam and I dont understand why
This is part of the email code
------------------------------------------
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on web06
X-Spam-Flag: YES
X-Spam-Level: **********
X-Spam-Status: Yes, score=10.2 required=7.0 tests=FSL_HELO_NON_FQDN_1,
HELO_DYNAMIC_IPADDR2,HELO_NO_DOMAIN,RDNS_NONE autolearn=no version=3.3.1
X-Spam-Report:
* 2.4 FSL_HELO_NON_FQDN_1 FSL_HELO_NON_FQDN_1
* 2.8 HELO_DYNAMIC_IPADDR2 Relay HELO'd using suspicious hostname (IP addr
* 2)
* 2.4 RDNS_NONE Delivered to internal network by a host with no rDNS
* 2.6 HELO_NO_DOMAIN Relay reports its domain incorrectly
Received: from 3709-6f7b08611f ([190.106.132.104]) by web06.fangio.net with MailEnable ESMTP; Wed, 30 Apr 2014 13:43:50 -0300
Message-ID: <d20140430t124515.29c1r949828.00@3709-6f7b08611f>
From: "doctoranyplace@armi.com.ar" <doctoranyplace@armi.com.ar>
To: "alberto_michelis@armi.com.ar" <alberto_michelis@armi.com.ar>
CC: "dap@armi.com.ar" <dap@armi.com.ar>
Subject: ***SPAM*** Doctor any place, Cuenta Modificada
-------------------------------------------------------------------------------------
2.4 Dont know what it means
2.8 Why suspicious hostname?
2.4 Internal network ?
2.6 I think I´m not doing relay
Please help!
Thanks
-
Alberto,
we don't have the complete content of your email.
but I've noticed that if in your content you include a URL with IP addresses instead of domain names they are always tagged as spam.
change the ip address to a named url or create one, etc, and you won't get it tagged as spam..
just something to watch our for.
Best Regards...
Roberto Renz
-
Thanks Roberto,
But if you are talking about the receive line.
If I send an email with Thunderbird, identic to the other one the receive line is as:
Received: from [192.168.1.101] ([201.231.86.227]) by web06.fangio.net with MailEnable ESMTP; Wed, 30 Apr 2014 15:43:06 -0300
and it is not marker as spam.
-
If I had to guess, I suspect it's the HELO property you're using (or more accurately, not using.)
Note: To make things a bit easier, in 8.11 I've extended the EmailParametersGroup to include
pHelo String(255)
pSSL Long
pStartTLS Long
This allows you to control these parameters from the calling procedure, however usually you just set these once in the SendMail procedure and you don't need to pass them.
Basically
ThisSendEmail.Server.Helo = 'Something'
If you leave it blank it uses the Machine's "Hostname". (Which in your case looks like IPADDR2 or something.)
What should you set it to? That depends a bit on how you are doing email from this machine. This article is a good primer though;
http://www.linuxmagic.com/best_practices/valid_helo_domain.html
Cheers
Bruce
-
Cool ! waiting for 8.11 !