From 2d9601e6fcd95f676951116910627be2fd4914e1 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 30 Dec 2006 00:35:47 +0000 Subject: [PATCH] add an extra flush in SMTP darcs-hash:20061230003547-5007d-4c72be810674eeb08014b5ba32a09e404d09e9ce.gz --- src/org/ibex/mail/protocol/SMTP.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/ibex/mail/protocol/SMTP.java b/src/org/ibex/mail/protocol/SMTP.java index 90fb2ec..b5ea75b 100644 --- a/src/org/ibex/mail/protocol/SMTP.java +++ b/src/org/ibex/mail/protocol/SMTP.java @@ -126,6 +126,7 @@ public class SMTP { } else { conn.println("551 sorry, " + addr + " is not on this machine"); } + conn.flush(); } else if (c.startsWith("DATA")) { //if (from == null) { conn.println("503 MAIL FROM command must precede DATA"); continue; } if (to == null || to.size()==0) { conn.println("503 RCPT TO command must precede DATA"); continue; } -- 1.7.10.4