From ac4a28bc65308f93bd46e7eebcf91f8de1a2525c Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 8 Jan 2007 04:04:40 +0000 Subject: [PATCH] Updated user mail account plugin to support CYRUSUNIXSTYLE for a single or global
section. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5470 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/personal/mail/class_mailAccount.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/personal/mail/class_mailAccount.inc b/plugins/personal/mail/class_mailAccount.inc index 14ebe5457..a0bc50807 100644 --- a/plugins/personal/mail/class_mailAccount.inc +++ b/plugins/personal/mail/class_mailAccount.inc @@ -91,16 +91,16 @@ class mailAccount extends plugin } } - /* Create the account prefix user. user/ Preset folder prefix. Will change it later to respect altnamespace. */ if (isset($this->config->current['CYRUSUNIXSTYLE']) && $this->config->current['CYRUSUNIXSTYLE'] == "true"){ $this->folder_prefix= "user/"; + }elseif (isset($this->config->data['MAIN']['CYRUSUNIXSTYLE']) && $this->config->data['MAIN']['CYRUSUNIXSTYLE'] == "true"){ + $this->folder_prefix= "user/"; } else { $this->folder_prefix= "user."; } - /* This is not a new account, parse additional attributes */ if (($dn != NULL) && ($dn != "new") && $this->is_account){ -- 2.30.2