aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-folder-subscription.c
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2006-07-24 18:26:02 +0800
committerSushma Rai <rsushma@src.gnome.org>2006-07-24 18:26:02 +0800
commit401a1b85c6a5c5988cda3a2075e8320ed1d58daf (patch)
treed7d20f01d96fec5a554f5b905f929d4107a063ee /plugins/exchange-operations/exchange-folder-subscription.c
parentbaff5e98a4553645813544978825428c864a5c3c (diff)
downloadgsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar.gz
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar.bz2
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar.lz
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar.xz
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.tar.zst
gsoc2013-evolution-401a1b85c6a5c5988cda3a2075e8320ed1d58daf.zip
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
Diffstat (limited to 'plugins/exchange-operations/exchange-folder-subscription.c')
-rw-r--r--plugins/exchange-operations/exchange-folder-subscription.c6
1 files changed, 6 insertions, 0 deletions
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;