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/share-folder-common.c4
2 files changed, 11 insertions, 0 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index 330ed6384d..b11ca999c1 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-07 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #300336
+
+ * share-folder-common.c: (users_dialog_response):
+ Ensure vfolder is running.
+
2007-12-06 Alex Kloss <alexkloss@att.net>
** Fix for bug #347328
diff --git a/plugins/groupwise-features/share-folder-common.c b/plugins/groupwise-features/share-folder-common.c
index 952980b171..9427788de3 100644
--- a/plugins/groupwise-features/share-folder-common.c
+++ b/plugins/groupwise-features/share-folder-common.c
@@ -273,6 +273,10 @@ users_dialog_response(GtkWidget *dialog, int response, struct ShareInfo *ssi)
if (CAMEL_IS_VEE_STORE(store)) {
EMVFolderRule *rule;
+ /* ensures vfolder is running */
+ if (!vfolder_loaded ())
+ vfolder_load_storage ();
+
rule = em_vfolder_rule_new();
filter_rule_set_name((FilterRule *)rule, path);
vfolder_gui_add_rule(rule);