When the maximum number of client connections has been exceeded, turn away SMTP clien...
authorArt Cancro <ajc@uncensored.citadel.org>
Thu, 14 Jul 2011 16:09:55 +0000 (12:09 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 21:35:18 +0000 (21:35 +0000)
citadel/modules/smtp/serv_smtp.c

index 885bf950f1193111294a3ddaa515868a2910fb93..dcaf51952e204b354b01eb841af0c6355cc96c30 100644 (file)
@@ -144,9 +144,7 @@ void smtp_greeting(int is_msa)
        /* Otherwise we're either clean or we check later. */
 
        if (CC->nologin==1) {
-               cprintf("500 Too many users are already online (maximum is %d)\r\n",
-                       config.c_maxsessions
-               );
+               cprintf("451 Too many connections are already open; please try again later.\r\n");
                CC->kill_me = KILLME_MAX_SESSIONS_EXCEEDED;
                /* no need to free_recipients(valid), it's not allocated yet */
                return;