From 752d70c96cbcca39bf6b0e2e409e460bac40dc3d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 4 Apr 2008 16:51:23 +0000 Subject: [PATCH] Reduced the output of the SMTP HELP command. Now it just points to http://www.ietf.org/rfc/rfc2821.txt --- citadel/modules/smtp/serv_smtp.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/citadel/modules/smtp/serv_smtp.c b/citadel/modules/smtp/serv_smtp.c index 6326168d7..fbfeaa6b0 100644 --- a/citadel/modules/smtp/serv_smtp.c +++ b/citadel/modules/smtp/serv_smtp.c @@ -282,17 +282,7 @@ void smtp_hello(char *argbuf, int which_command) { * Implement HELP command. */ void smtp_help(void) { - cprintf("214-Commands accepted:\r\n"); - cprintf("214- DATA\r\n"); - cprintf("214- EHLO\r\n"); - cprintf("214- HELO\r\n"); - cprintf("214- HELP\r\n"); - cprintf("214- MAIL\r\n"); - cprintf("214- NOOP\r\n"); - cprintf("214- QUIT\r\n"); - cprintf("214- RCPT\r\n"); - cprintf("214- RSET\r\n"); - cprintf("214 \r\n"); + cprintf("214 RTFM http://www.ietf.org/rfc/rfc2821.txt\r\n"); } -- 2.39.2