Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Jul : Indy 9.00.10 and SpamAssassin 3.0.3 MIME_BOUND_RKFINDY
| Subject: | Indy 9.00.10 and SpamAssassin 3.0.3 MIME_BOUND_RKFINDY |
| Posted by: | "tao lin" (lams_..@hotmail.com) |
| Date: | Thu, 27 Jul 2006 15:48:28 +1200 |
Hi,
I am using Indy 9.00.10 with D6 sp2. And I create a html email using TIdSMTP
and TIdMessage component.
My Delphi code like this:
============================================
SMTP.Host := SMTPServer;
Msg.Clear;
Msg.Recipients.EMailAddresses := lUserEmails;
Msg.From.Text := 'info@hello.com';
Msg.Subject := MySubject;
lHtmlReport.Text := HtmlReportString;
Msg.Body.Assign(lHtmlReport);
Msg.ContentType := 'multipart/mixed';
txtpart := TIdText.Create(Msg.MessageParts);
txtpart.ContentType := 'text/plain';
txtpart.Body.Text := '';
htmpart := TIdText.Create(Msg.MessageParts, lHtmlReport);
htmpart.ContentType := 'text/html';
lErrMsg := SendMessage;
============================================
When I received this message by Exim3 and SpamAssassin 3.0.3. It treat my
email as spam. Here is the message header:
============================================
Content-Type: multipart/alternative;
boundary="=_NextPart_2rfkindysadvnqw3nerasdf"
MIME-Version: 1.0
Date: Thu, 27 Jul 2006 14:20:41 +1200
X-Priority: 3
Message-Id: <E1G5wBd-0004dy-00@host>
X-Scanner: exiscan *1G5wBd-0004dy-00*ZEI0kL0Ak92*hello.com
X-Scanner: exiscan *1G5vbP-00069Q-00*OL.qBOjzrMw*hello.com
X-Spam-Prev-Subject: Course Progress Report For OS1
X-Spam-Flag: YES
X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on metis
X-Spam-Level: **
X-Spam-Status: Yes, score=2.4 required=2.0 tests=BAYES_00,HTML_80_90,
HTML_MESSAGE,MIME_BOUND_NEXTPART,MIME_BOUND_RKFINDY,MIME_HTML_MOSTLY,
MPART_ALT_DIFF,NO_REAL_NAME,PRIORITY_NO_NAME autolearn=no
version=3.0.3
X-Spam-Report:
* 2.7 MIME_BOUND_RKFINDY Spam tool pattern in MIME boundary (rfkindy)
* 0.0 NO_REAL_NAME From: does not include a real name
* 0.1 HTML_80_90 BODY: Message is 80% to 90% HTML
* 1.0 MIME_HTML_MOSTLY BODY: Multipart message mostly text/html MIME
* 0.0 HTML_MESSAGE BODY: HTML included in message
* 0.1 MPART_ALT_DIFF BODY: HTML and text parts are different
* -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1%
* [score: 0.0000]
* 0.0 MIME_BOUND_NEXTPART Spam tool pattern in MIME boundary
* 1.1 PRIORITY_NO_NAME Message has priority, but no X-Mailer/User-Agent
This is a multi-part message in MIME format
============================================
I don't know why my email score 2.7 for MIME_BOUND_RKFINDY Spam tool pattern
in MIME boundary. What the MIME_BOUND_RKFINDY mean and how can I make my
email get pass the SpamAssassin?
Cheers,
Tao