From bf88544d864661f6594ac23ec2e8a8d910627a2c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 26 Apr 2007 21:45:37 +0000 Subject: [PATCH] Add a comment in smtp_greeting() warning that the fqdn *must* appear immediately after the 220 status code, and this should never be changed. --- citadel/serv_smtp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/citadel/serv_smtp.c b/citadel/serv_smtp.c index 39128f466..d4ff45a83 100644 --- a/citadel/serv_smtp.c +++ b/citadel/serv_smtp.c @@ -155,6 +155,9 @@ void smtp_greeting(int is_msa) return; } + /* Note: the FQDN *must* appear as the first thing after the 220 code. + * Some clients (including citmail.c) depend on it being there. + */ cprintf("220 %s ESMTP Citadel server ready.\r\n", config.c_fqdn); } -- 2.39.2