From: Art Cancro Date: Fri, 1 May 2015 20:43:51 +0000 (-0400) Subject: migrated serv_messages.c to new config format X-Git-Tag: Release_902~167^2~15 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=faab5388d7714103fbdd8ae4b5aaed10d26d71fd migrated serv_messages.c to new config format --- diff --git a/citadel/modules/ctdlproto/serv_messages.c b/citadel/modules/ctdlproto/serv_messages.c index 2d3208a22..3a51e16b6 100644 --- a/citadel/modules/ctdlproto/serv_messages.c +++ b/citadel/modules/ctdlproto/serv_messages.c @@ -1,7 +1,7 @@ /* * represent messages to the citadel clients * - * Copyright (c) 1987-2012 by the citadel.org team + * Copyright (c) 1987-2015 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3. @@ -20,11 +20,11 @@ #include "internet_addressing.h" #include "user_ops.h" #include "room_ops.h" +#include "config.h" extern char *msgkeys[]; - /* * Back end for the MSGS command: output message number only. */ @@ -34,7 +34,6 @@ void simple_listing(long msgnum, void *userdata) } - /* * Back end for the MSGS command: output header summary. */ @@ -137,7 +136,7 @@ void cmd_msgs(char *cmdbuf) else mode = MSGS_ALL; - if ( (mode == MSGS_SEARCH) && (!config.c_enable_fulltext) ) { + if ( (mode == MSGS_SEARCH) && (!CtdlGetConfigInt("c_enable_fulltext")) ) { cprintf("%d Full text index is not enabled on this server.\n", ERROR + CMD_NOT_SUPPORTED); return;