utf8ify_rfc822_string() is in libcitadel now
[citadel.git] / libcitadel / lib / libcitadel.c
index 8c83bfd9a34130c4771e1d0d8fd0b268a90a68b6..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 <sys/stat.h>
 #include <errno.h>
 #include "libcitadel.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) {
+       return LIBCITADEL_VERSION_NUMBER;
+}
+
+void ShutDownLibCitadel(void)
+{
+       ShutDownLibCitadelMime();
+       WildFireShutdown();
+       xdg_mime_shutdown();
 }