aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-account-disable/mail-account-disable.c
blob: 886b66a66fe40b4532b38b99fde1d2dfb510f626 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * 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/>  
 *
 *
 * Authors:
 *      Shreyas Srinivasan <sshreyas@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <glib.h>
#include <glib/gi18n.h>
#include <string.h>
#include <mail/mail-component.h>
#include <mail/em-folder-selector.h>
#include <mail/em-popup.h>
#include <mail/em-account-editor.h>
#include <mail/mail-config.h>
#include <libedataserver/e-account.h>
#include <libedataserver/e-account-list.h>

#define ACCOUNT_DISABLE 0
#define PROXY_LOGOUT 1

void mail_account_disable (EPopup *ep, EPopupItem *p, void *data);
void org_gnome_create_mail_account_disable (EPlugin *ep, EMPopupTargetFolder *t);

static EPopupItem popup_items[] = {
    { E_POPUP_ITEM, "40.emc.04", N_("_Disable"), mail_account_disable, NULL, NULL, 0, EM_POPUP_FOLDER_STORE },
    { E_POPUP_ITEM, "40.emc.04", N_("Proxy _Logout"), mail_account_disable, NULL, NULL, 0, EM_POPUP_FOLDER_STORE }
};

static void
popup_free (EPopup *ep, GSList *items, void *data)
{
    g_slist_free (items);
}

void
mail_account_disable (EPopup *ep, EPopupItem *p, void *data)
{
    MailComponent *component;
    EAccount *account = data;

    g_assert (account != NULL);

    component = mail_component_peek ();

    if (mail_config_has_proxies (account))
        mail_config_remove_account_proxies (account);

    account->enabled = !account->enabled;
    e_account_list_change (mail_config_get_accounts (), account);
    mail_component_remove_store_by_uri (component, account->source->url);

    if (account->parent_uid)
        mail_config_remove_account (account);

    mail_config_save_accounts();
}

void
org_gnome_create_mail_account_disable (EPlugin *ep, EMPopupTargetFolder *t)
{
    EAccount *account;
    GSList *menus = NULL;

    account = mail_config_get_account_by_source_url (t->uri);

    if (account == NULL)
        return;

    if (g_strrstr (t->uri,"groupwise://") && account->parent_uid) {
        popup_items[PROXY_LOGOUT].label =  _(popup_items [PROXY_LOGOUT].label);
        menus = g_slist_prepend (menus, &popup_items [PROXY_LOGOUT]);
    }
    else {
        popup_items[ACCOUNT_DISABLE].label =  _(popup_items [ACCOUNT_DISABLE].label);
        menus = g_slist_prepend (menus, &popup_items [ACCOUNT_DISABLE]);
    }

    e_popup_add_items (t->target.popup, menus, NULL, popup_free, account);
}