- Don't use the term "eplugin" for modules. - Use the term "plugin" instead of "eplugin" for plugins. - Split SpamAssassin settings into a separate schema.
59 lines
2.0 KiB
C
59 lines
2.0 KiB
C
/*
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with the program; if not, see <http://www.gnu.org/licenses/>
|
|
*
|
|
*
|
|
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
|
|
*
|
|
*/
|
|
|
|
#ifndef __BBDB_H__
|
|
#define __BBDB_H__
|
|
|
|
/* Where to store the config values */
|
|
#define CONF_SCHEMA "org.gnome.evolution.plugin.autocontacts"
|
|
#define CONF_KEY_ENABLE "enable"
|
|
#define CONF_KEY_ENABLE_GAIM "auto-sync-gaim"
|
|
#define CONF_KEY_WHICH_ADDRESSBOOK "addressbook-source"
|
|
#define CONF_KEY_WHICH_ADDRESSBOOK_GAIM "gaim-addressbook-source"
|
|
#define CONF_KEY_GAIM_LAST_SYNC_TIME "gaim-last-sync-time"
|
|
#define CONF_KEY_GAIM_LAST_SYNC_MD5 "gaim-last-sync-md5"
|
|
#define CONF_KEY_GAIM_CHECK_INTERVAL "gaim-check-interval"
|
|
|
|
/* How often to poll the buddy list for changes (every two minutes is default) */
|
|
#define BBDB_BLIST_DEFAULT_CHECK_INTERVAL (2 * 60)
|
|
|
|
#define GAIM_ADDRESSBOOK 1
|
|
#define AUTOMATIC_CONTACTS_ADDRESSBOOK 0
|
|
|
|
#include <libebook/e-book-client.h>
|
|
#include <libebook/e-contact.h>
|
|
|
|
/* bbdb.c */
|
|
/* creates an EBookClient for a given type (gaim or contacts), but doesn't open it;
|
|
* this function should be called in a main thread. */
|
|
EBookClient *bbdb_create_book_client (gint type);
|
|
|
|
/* opens an EBookClient. Returns false if it fails, and unrefs the book too;
|
|
* this function can be called in any thread */
|
|
gboolean bbdb_open_book_client (EBookClient *client);
|
|
|
|
gboolean bbdb_check_gaim_enabled (void);
|
|
|
|
/* gaimbuddies.c */
|
|
void bbdb_sync_buddy_list (void);
|
|
void bbdb_sync_buddy_list_check (void);
|
|
|
|
#endif /* __BBDB_H__ */
|