2 * @file purple-setting.c
6 * Copyright (C) 2010-2016 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "connection.h"
28 #include "sipe-backend.h"
29 #include "sipe-core.h"
31 #include "purple-private.h"
34 * Map sipe_setting values to purple account setting keys
36 * This needs to be kept in sync with
39 * purple-plugin-common.c:sipe_purple_account_options()
43 const gchar
*default_value
;
44 } settings
[SIPE_SETTING_LAST
] = {
45 { "email_url", NULL
}, /* SIPE_SETTING_EMAIL_URL */
46 { "email_login", NULL
}, /* SIPE_SETTING_EMAIL_LOGIN */
47 { "email_password", NULL
}, /* SIPE_SETTING_EMAIL_PASSWORD */
48 { "groupchat_user", NULL
}, /* SIPE_SETTING_GROUPCHAT_USER */
49 { "rdp_client", "remmina" }, /* SIPE_SETTING_RDP_CLIENT */
50 { "useragent", NULL
} /* SIPE_SETTING_USER_AGENT */
53 const gchar
*sipe_backend_setting(struct sipe_core_public
*sipe_public
,
56 return(purple_account_get_string(purple_connection_get_account(sipe_public
->backend_private
->gc
),
58 settings
[type
].default_value
));