]> code.citadel.org Git - citadel.git/blobdiff - gaim-citadel/citadel.c
* Move to GPL v3
[citadel.git] / gaim-citadel / citadel.c
index c33541c9d3033cf7c9e61be1d02fee81989e2033..1e753a36e7d01c4cfd965af428ab7c89c91f8897 100644 (file)
@@ -2,10 +2,10 @@
  * Gaim Citadel plugin.
  * 
  * © 2006 David Given.
- * This code is licensed under the GPL v2. See the file COPYING in this
+ * This code is licensed under the GPL v3. See the file COPYING in this
  * directory for the full license text.
  *
- * $Id: auth.c 4258 2006-01-29 13:34:44 +0000 (Sun, 29 Jan 2006) dothebart $
+ * $Id:citadel.c 4326 2006-02-18 12:26:22Z hjalfi $
  */
 
 #define GAIM_PLUGINS
@@ -33,7 +33,7 @@ extern void tolua_gaim_close(lua_State* L);
 #define VERSION "0.2"
 #define CITADEL_DEFAULT_SERVER "uncensored.citadel.org"
 #define CITADEL_DEFAULT_PORT 504
-#define CITADEL_POLL_INTERVAL 10
+#define CITADEL_POLL_INTERVAL 60
 #define LUA_MICROCODE "/plugindata/citadel.lua"
 
 struct citadel {
@@ -559,6 +559,9 @@ static void _init_plugin(GaimPlugin *plugin)
        option = gaim_account_option_int_new(_("Port"), "port", CITADEL_DEFAULT_PORT);
        protocol.protocol_options = g_list_append(protocol.protocol_options, option);
 
+       option = gaim_account_option_bool_new(_("Everyone here's a buddy"), "no_blist", FALSE);
+       protocol.protocol_options = g_list_append(protocol.protocol_options, option);
+
        option = gaim_account_option_bool_new(_("Use TLS"), "use_tls", TRUE);
        protocol.protocol_options = g_list_append(protocol.protocol_options, option);