aboutsummaryrefslogtreecommitdiffstats
path: root/mail/session.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-05-22 06:40:15 +0800
committernobody <nobody@localhost>2000-05-22 06:40:15 +0800
commitb5f82e57fa8f5cc4538d3fd5e88cef6409265e0b (patch)
tree70ea22d6a4da2e07bedfe85a5cddc5e7ad0a1246 /mail/session.c
parent3f5d9cb60827ca2a5e032e95aa241cc8376ab46f (diff)
downloadgsoc2013-evolution-GNOME_APPLETS_1_2_0.tar
gsoc2013-evolution-GNOME_APPLETS_1_2_0.tar.gz
gsoc2013-evolution-GNOME_APPLETS_1_2_0.tar.bz2
gsoc2013-evolution-GNOME_APPLETS_1_2_0.tar.lz
gsoc2013-evolution-GNOME_APPLETS_1_2_0.tar.xz
gsoc2013-evolution-GNOME_APPLETS_1_2_0.tar.zst
gsoc2013-evolution-GNOME_APPLETS_1_2_0.zip
This commit was manufactured by cvs2svn to create tagGNOME_APPLETS_1_2_0
'GNOME_APPLETS_1_2_0'. svn path=/tags/GNOME_APPLETS_1_2_0/; revision=3153
Diffstat (limited to 'mail/session.c')
-rw-r--r--mail/session.c62
1 files changed, 0 insertions, 62 deletions
diff --git a/mail/session.c b/mail/session.c
deleted file mode 100644
index b7b24920b0..0000000000
--- a/mail/session.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * session.c: handles the session infomration and resource manipulation
- *
- * Author:
- * Miguel de Icaza (miguel@gnu.org)
- *
- * (C) 2000 Helix Code, Inc. http://www.helixcode.com
- */
-#include <config.h>
-#include <gnome.h>
-#include "mail.h"
-#include "e-util/e-setup.h"
-
-CamelSession *session;
-
-static void
-request_callback (gchar *string, gpointer data)
-{
- char **ans = data;
-
- if (string)
- *ans = g_strdup(string);
- else
- *ans = NULL;
-}
-
-static char *
-evolution_auth_callback (char *prompt, gboolean secret,
- CamelService *service, char *item,
- CamelException *ex)
-{
- GtkWidget *dialog;
- char *ans;
-
- /* XXX look up stored passwords */
-
- /* XXX parent window? */
- dialog = gnome_request_dialog (secret, prompt, NULL, 0,
- request_callback, &ans, NULL);
- if (!dialog) {
- camel_exception_set (ex, CAMEL_EXCEPTION_SYSTEM,
- "Could not create dialog box.");
- return NULL;
- }
- if (gnome_dialog_run_and_close (GNOME_DIALOG (dialog)) == -1 ||
- ans == NULL) {
- camel_exception_set (ex, CAMEL_EXCEPTION_USER_CANCEL,
- "User cancelled query.");
- return NULL;
- }
-
- return ans;
-}
-
-void
-session_init (void)
-{
- e_setup_base_dir ();
- camel_init ();
-
- session = camel_session_new (evolution_auth_callback);
-}