From 401a1b85c6a5c5988cda3a2075e8320ed1d58daf Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Mon, 24 Jul 2006 10:26:02 +0000 Subject: Handling the errors EXCHANGE_ACCOUNT_FOLDER_GC_NOTREACHABLE and EXCHANGE_ACCOUNT_FOLDER_NO_SUCH_USER. Added an error code folder-no-gc-error and corresponding error string. Fixes #234359. svn path=/trunk/; revision=32403 --- plugins/exchange-operations/exchange-folder-subscription.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugins/exchange-operations/exchange-folder-subscription.c') diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c index 2c75af875b..19f84d1cdc 100644 --- a/plugins/exchange-operations/exchange-folder-subscription.c +++ b/plugins/exchange-operations/exchange-folder-subscription.c @@ -259,6 +259,12 @@ subscribe_to_folder (GtkWidget *dialog, gint response, gpointer data) case EXCHANGE_ACCOUNT_FOLDER_UNSUPPORTED_OPERATION: e_error_run (NULL, ERROR_DOMAIN ":folder-unsupported-error", NULL); break; + case EXCHANGE_ACCOUNT_FOLDER_GC_NOTREACHABLE: + e_error_run (NULL, ERROR_DOMAIN ":folder-no-gc-error", NULL); + break; + case EXCHANGE_ACCOUNT_FOLDER_NO_SUCH_USER: + e_error_run (NULL, ERROR_DOMAIN ":no-user-error", user_email_address, NULL); + break; case EXCHANGE_ACCOUNT_FOLDER_GENERIC_ERROR: e_error_run (NULL, ERROR_DOMAIN ":folder-generic-error", NULL); break; -- cgit v1.2.3