* Did most of the migration from save_message() to CtdlSaveMsg(). The
[citadel.git] / citadel / serv_chat.c
index b6f1e59e22f70231e01c257e81931459098aea97..197ace6dd1e19c32be44b4e9401ce581b3b5e0d4 100644 (file)
@@ -496,7 +496,11 @@ int send_express_message(char *lun, char *x_user, char *x_msg)
        }
        end_critical_section(S_SESSION_TABLE);
 
-       /* Log the page to disk if configured to do so */
+       /* Log the page to disk if configured to do so 
+
+
+       ****** FIX FIX FIX   add this back in *************
+
        if ((strlen(config.c_logpages) > 0) && (do_send) ) {
                fp = fopen(CC->temp, "wb");
                fprintf(fp, "%c%c%c", 255, MES_NORMAL, 0);
@@ -511,6 +515,7 @@ int send_express_message(char *lun, char *x_user, char *x_msg)
                save_message(CC->temp, "", config.c_logpages, MES_LOCAL, 1);
                unlink(CC->temp);
        }
+       *************************************/
        return (message_sent);
 }