utf8ify_rfc822_string() is in libcitadel now
[citadel.git] / libcitadel / lib / libcitadel.c
index 38d811d2d59d44eb14b2393a44150804beeecbd8..bc88219ff0b0966e266e051ceea4d23ae41f8a1c 100644 (file)
@@ -1,6 +1,10 @@
 /*
- * $Id$
+ * Main stuff for libcitadel
  *
+ * Copyright (c) 1987-2013 by the citadel.org team
+ *
+// This program is open source software.  Use, duplication, or disclosure
+// is subject to the terms of the GNU General Public License, version 3.
  */
 
 #include <stdlib.h>
 #include "xdgmime/xdgmime.h"
 #include "libcitadellocal.h"
 
+ConstStr RoomNetCfgStrs[maxRoomNetCfg] = {
+       {HKEY(strof(subpending))},
+       {HKEY(strof(unsubpending))},
+       {HKEY(strof(lastsent))}, /* Server internal use only */
+       {HKEY(strof(ignet_push_share))},
+       {HKEY(strof(listrecp))},
+       {HKEY(strof(digestrecp))},
+       {HKEY(strof(pop3client))},
+       {HKEY(strof(rssclient))},
+       {HKEY(strof(participate))}
+// No, not one of..    {HKEY(strof(maxRoomNetCfg))}
+};
+
+
+
+extern int EnableSplice;
+extern int ZLibCompressionRatio;
+
 char *libcitadel_version_string(void) {
-       return "$Id$";
+       return "libcitadel(unnumbered)";
 }
 
 int libcitadel_version_number(void) {
@@ -27,6 +49,6 @@ int libcitadel_version_number(void) {
 void ShutDownLibCitadel(void)
 {
        ShutDownLibCitadelMime();
-
+       WildFireShutdown();
        xdg_mime_shutdown();
 }