aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/ChangeLog7
-rw-r--r--plugins/groupwise-features/install-shared.c4
-rw-r--r--plugins/groupwise-features/share-folder-common.c7
3 files changed, 7 insertions, 11 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index da6d28bd9a..6398ef81a0 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,3 +1,10 @@
+2005-09-30 Vivek Jain <jvivek@novell.com>
+
+ * shared-folder-common.c: (org_gnome_create_option)
+ : (org_gnome_shared_folder_factory)
+ * install-shared.c : (org_gnome_popup_wizard)
+ enable shared-folder functionalilty, remove env check
+
2005-09-28 Sankar P <psankar@novell.com>
* proxy.c (proxy_dialog_store_widgets_data):
diff --git a/plugins/groupwise-features/install-shared.c b/plugins/groupwise-features/install-shared.c
index d4179421f8..40ae0a26d5 100644
--- a/plugins/groupwise-features/install-shared.c
+++ b/plugins/groupwise-features/install-shared.c
@@ -193,10 +193,6 @@ org_gnome_popup_wizard (EPlugin *ep, EMEventTargetMessage *target)
char *notification;
char *start_message;
- /* XXX:Remove this when server has a fix to show mails in shared-folder*/
- if (!getenv("GROUPWISE_SHARED_FOLDER"))
- return;
-
if (!msg)
return ;
diff --git a/plugins/groupwise-features/share-folder-common.c b/plugins/groupwise-features/share-folder-common.c
index f98d0de494..ee006369e5 100644
--- a/plugins/groupwise-features/share-folder-common.c
+++ b/plugins/groupwise-features/share-folder-common.c
@@ -351,9 +351,6 @@ org_gnome_create_option(EPlugin *ep, EMPopupTargetFolder *t)
int i = 0;
static int first = 0;
- /*XXX: Remove this when server has a fix to show mails in shared-folder*/
- if (!getenv("GROUPWISE_SHARED_FOLDER"))
- return;
if (! g_strrstr (t->uri, "groupwise://"))
return ;
@@ -407,10 +404,6 @@ org_gnome_shared_folder_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_d
EMConfigTargetFolder *target= (EMConfigTargetFolder *)hook_data->config->target;
CamelFolder *folder = target->folder;
- /*XXX: Remove this when server has a fix to show mails in shared-folder*/
- if (!getenv("GROUPWISE_SHARED_FOLDER"))
- return NULL;
-
folder_name = g_strdup (folder->full_name);
folderuri = g_strdup(target->uri);
if (folderuri && folder_name)