]> code.citadel.org Git - citadel.git/commitdiff
Added a comment next to the string
authorArt Cancro <ajc@citadel.org>
Wed, 7 Mar 2007 20:05:50 +0000 (20:05 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 7 Mar 2007 20:05:50 +0000 (20:05 +0000)
'Mailbox already exists, or create failed' in serv_imap.c indicating
that the Bynari connector is looking for that exact string, so don't
change it.

citadel/serv_imap.c

index 939a9a87ddbedce2552e8dc41a5f1bd3a4173c7f..5b95ae63ee707124f97118ffde0d34f58becff30 100644 (file)
@@ -992,9 +992,8 @@ void imap_create(int num_parms, char *parms[])
 
        ret = create_room(roomname, newroomtype, "", floornum, 1, 0, newroomview);
        if (ret == 0) {
-               cprintf
-                   ("%s NO Mailbox already exists, or create failed\r\n",
-                    parms[0]);
+               /*** DO NOT CHANGE THIS ERROR MESSAGE IN ANY WAY!  BYNARI CONNECTOR DEPENDS ON IT! ***/
+               cprintf("%s NO Mailbox already exists, or create failed\r\n", parms[0]);
        } else {
                cprintf("%s OK CREATE completed\r\n", parms[0]);
        }