X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmsgbase.c;h=9e092a47b3177fbf258b381e7d8d75959527463e;hb=46c921f7d98ad2b588065bdb2da1b637772225a7;hp=97397b52b7511c6ce7487678712dc7e3ad10085e;hpb=70f34b3d0496469291c947f06a7b2dbff62628b2;p=citadel.git diff --git a/citadel/msgbase.c b/citadel/msgbase.c index 97397b52b..9e092a47b 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -2143,15 +2143,22 @@ int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newms lprintf(CTDL_DEBUG, "CtdlSaveMsgPointerInRoom() skips repl checks\n"); } +#if 0 /* Submit this room for net processing */ network_queue_room(&CC->room, NULL); +#endif + + /* Submit this room for processing by hooks */ + PerformRoomHooks(&CC->room); +#if 0 #ifdef HAVE_LIBSIEVE /* If this is someone's inbox, submit the room for sieve processing */ if (!strcasecmp(&CC->room.QRname[11], MAILROOM)) { sieve_queue_room(&CC->room); } #endif /* HAVE_LIBSIEVE */ +#endif /* Go back to the room we were in before we wandered here... */ getroom(&CC->room, hold_rm);