From 98297fbb8b916425a8ea63671853411e80ced51e Mon Sep 17 00:00:00 2001 From: Michael Zucci Date: Thu, 23 Jun 2005 04:18:03 +0000 Subject: Initial import svn path=/trunk/; revision=29570 --- plugins/default-mailer/default-mailer.c | 67 +++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 plugins/default-mailer/default-mailer.c (limited to 'plugins/default-mailer/default-mailer.c') diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c new file mode 100644 index 0000000000..83f71ed2df --- /dev/null +++ b/plugins/default-mailer/default-mailer.c @@ -0,0 +1,67 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Author: Jonathan Dieter + * + * Copyright 2005 Jonathan Dieter + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +#include +#include + +#include +#include + +#include +#include + +#define GCONF_KEY_CHECKDEFAULT "/apps/evolution/mail/prompts/checkdefault" +#define GCONF_KEY_MAILTO_ENABLED "/desktop/gnome/url-handlers/mailto/enabled" +#define GCONF_KEY_MAILTO_COMMAND "/desktop/gnome/url-handlers/mailto/command" + +void org_gnome_default_mailer_check_default (EPlugin *ep, ESEventTargetUpgrade *target); + +void +org_gnome_default_mailer_check_default (EPlugin *ep, ESEventTargetUpgrade *target) +{ + GConfClient *client; + gchar *mailer; + GConfValue *is_key; + + client = gconf_client_get_default (); + + /* See whether the check default mailer key has already been set */ + is_key = gconf_client_get(client, GCONF_KEY_CHECKDEFAULT, NULL); + if(!is_key) + gconf_client_set_bool(client, GCONF_KEY_CHECKDEFAULT, TRUE, NULL); + g_free(is_key); + + /* Check whether we're supposed to check whether or not we are the default mailer */ + if(gconf_client_get_bool(client, GCONF_KEY_CHECKDEFAULT, NULL)) { + mailer = gconf_client_get_string(client, GCONF_KEY_MAILTO_COMMAND, NULL); + + /* Check whether we are the default mailer */ + if(mailer == NULL || (strcmp(mailer, "@evolution %s") != 0 && strcmp(mailer, "evolution %s") != 0)) { + /* Ask whether we should be the default mailer */ + if(em_utils_prompt_user(NULL, GCONF_KEY_CHECKDEFAULT, "org.gnome.default.mailer:check-default", NULL)) { + gconf_client_set_bool(client, GCONF_KEY_MAILTO_ENABLED, TRUE, NULL); + gconf_client_set_string(client, GCONF_KEY_MAILTO_COMMAND, "evolution %s", NULL); + } + } + + g_free(mailer); + } +} -- cgit v1.2.3