]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_notes.c
mk_module_init.sh now tests to see if echo supports -e and -E
[citadel.git] / citadel / serv_notes.c
index be07912d80b58f8a27b3b3b934ce4751c507c684..47e968b03bd22cfc8ba6b00947e2edda66a9742a 100644 (file)
 #include <limits.h>
 #include "citadel.h"
 #include "server.h"
-#include "sysdep_decls.h"
 #include "citserver.h"
 #include "support.h"
 #include "config.h"
-#include "serv_extensions.h"
 #include "room_ops.h"
 #include "user_ops.h"
 #include "policy.h"
@@ -43,6 +41,9 @@
 #include "msgbase.h"
 #include "tools.h"
 
+#include "ctdl_module.h"
+
+
 
 /*
  * If we are in a "notes" view room, and the client has sent an RFC822
@@ -102,8 +103,10 @@ int serv_notes_beforesave(struct CtdlMessage *msg)
 }
 
 
-char *serv_notes_init(void)
+CTDL_MODULE_INIT(notes)
 {
        CtdlRegisterMessageHook(serv_notes_beforesave, EVT_BEFORESAVE);
+
+       /* return our Subversion id for the Log */
        return "$Id$";
 }