From ac6cf36f218b9b4d7cef75cb78352c0261a5034c Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 17 Mar 2007 09:01:13 +0000 Subject: [PATCH] advertise ESMTP darcs-hash:20070317090113-5007d-aebd067c386efd8b4f758dda8c43dccda33697c8.gz --- src/org/ibex/mail/SMTP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/ibex/mail/SMTP.java b/src/org/ibex/mail/SMTP.java index 409818c..487d544 100644 --- a/src/org/ibex/mail/SMTP.java +++ b/src/org/ibex/mail/SMTP.java @@ -88,7 +88,7 @@ public class SMTP { public void handleRequest(Connection conn) throws IOException { conn.setTimeout(5 * 60 * 1000); conn.setNewline("\r\n"); - conn.println("220 " + conn.vhost + " SMTP " + this.getClass().getName()); + conn.println("220 " + conn.vhost + " ESMTP " + this.getClass().getName()); Address from = null; Vector to = new Vector(); boolean ehlo = false; -- 1.7.10.4