Quieten the user 0 message to the Aide room.
authorDave West <davew@uncensored.citadel.org>
Sat, 5 Apr 2008 19:51:53 +0000 (19:51 +0000)
committerDave West <davew@uncensored.citadel.org>
Sat, 5 Apr 2008 19:51:53 +0000 (19:51 +0000)
commitf6a784d414ae095a6d9cd6a0e0de453adfb19692
tree10ae15317d1048a2fc57455eda237f062d7805bf
parente5d2f1a62f71469f8e3f71adc6d89db5850b8b96
Quieten the user 0 message to the Aide room.
User 0 is created as a side effect of the system posting messages from
the masterCC. This side effect has the benefit of recording the number
of messages the system has generated.
Should we make use of this somewhere?
The actual code that creates the user 0 is in CtdlSubmitMsg() and reads
as
        /* Bump this user's messages posted counter. */
        CtdlLogPrintf(CTDL_DEBUG, "Updating user\n");
        lgetuser(&CCC->user, CCC->curr_user);
        CCC->user.posted = CCC->user.posted + 1;
        lputuser(&CCC->user);

Its around msgbase.c:2624
citadel/modules/expire/serv_expire.c