Ok, to shed some more light on this.
Unless also Amos with his eMailaya fu*ked up something then the problem is in 
synapse.

To test this I wrote quick and dirty send code in synapse:
The message that was sent was in example below exactly the same as in tbird and 
it was NOT delivered when send with synapse.

var smtp: TSMTPSend;
begin
  smtp := TSMTPSend.Create;
  smtp.UserName := Edit2.Text;
  smtp.Password := Edit3.Text;
  smtp.TargetHost := Edit1.Text;

  memo2.Clear;

  smtp.Login;
  memo2.Lines.Add(smtp.ResultString);
  smtp.MailFrom(Edit2.Text, Length(Memo1.Text));
  memo2.Lines.Add(smtp.ResultString);
  smtp.MailTo(Edit2.Text);
  memo2.Lines.Add(smtp.ResultString);
  smtp.MailData(Memo1.Lines);
  memo2.Lines.Add(smtp.ResultString);
  smtp.Logout;
  memo2.Lines.Add(smtp.ResultString);
  FreeAndNil(smtp);

This is the content of the log (memo2)

235 CRAM-MD5 authentication successful
250 MAIL FROM:<[EMAIL PROTECTED]> OK
250 RCPT TO:<[EMAIL PROTECTED]> OK
250 <45864E2400432190> Mail accepted
221 smtpin.laposte.net QUIT

Regards,
Miha

"Miha Vrhovnik" <[EMAIL PROTECTED]> wrote on 22.1.2007 20:06:15:
Ok, this is the weirdest thing, that has happened to me.

 I can send messages to myself on laposte server via laposte smtp with tbird, 
dreammail, fox mail, and they ARE delivered to mailbox, but if I send them with 
synapse they are NOT, server reports no errors on send.

 Lukas I can provide more details directly to your e-mail. Together with sample 
application.

Message below is delivered when send with tbird, but not when send with synapse:

 Message-ID: <[EMAIL PROTECTED]>
 Date: Mon, 22 Jan 2007 17:59:26 +0100
 From: miha <[EMAIL PROTECTED]>
 User-Agent: Thunderbird 2.0b1 (Windows/20070116)
 MIME-Version: 1.0
 To: [EMAIL PROTECTED]
 Subject: tb test
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit

 bwahhaaa

 Regards,
 Miha

 --
It's time to get rid of your current e-mail client ...
... and start using si.Mail.

It's small & free. ( http://simail.sourceforge.net/ )
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to