X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_chat.c;h=197ace6dd1e19c32be44b4e9401ce581b3b5e0d4;hb=1cb1846881827420b481ce8742c4d10ac18afe9c;hp=b6f1e59e22f70231e01c257e81931459098aea97;hpb=561766aa347a0f6673e7bbebf7e29a70e456e507;p=citadel.git diff --git a/citadel/serv_chat.c b/citadel/serv_chat.c index b6f1e59e2..197ace6dd 100644 --- a/citadel/serv_chat.c +++ b/citadel/serv_chat.c @@ -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); }