summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7320f33)
raw | patch | inline | side by side (parent: 7320f33)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 10 Dec 2008 08:35:28 +0000 (08:35 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 10 Dec 2008 08:35:28 +0000 (08:35 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13225 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/gosa-plugins/kolab/personal/mail/kolab/class_mail-methods-kolab.inc b/gosa-plugins/kolab/personal/mail/kolab/class_mail-methods-kolab.inc
index 89527213eb4b3649d308d0e5ed5772d935df504f..97f876c7fcbd74ee687f953f6c39931dc5281256 100644 (file)
class mailMethodKolab extends mailMethodCyrus
{
-
/* Allow modification of account_ids for existing mail accounts */
- protected $modifyableMail = FALSE;
+ protected $modifyableMail = FALSE;
+
+ /* Allow modification of the mail server attribute existing mail accounts */
+ protected $modifyableServer = TRUE;
/* Enforces same value for 'mail' as used for 'cn' */
protected $mailEqualsCN = TRUE;
diff --git a/gosa-plugins/mail/personal/mail/class_mail-methods-cyrus.inc b/gosa-plugins/mail/personal/mail/class_mail-methods-cyrus.inc
index 4c81f9cfd3602638eef532802f02864b9f1a8818..dc1bc39c8bad24c5ded282d1d304c48d79854a01 100644 (file)
protected $quota_loaded = FALSE;
/* Allow modification of account_ids for existing mail accounts */
- protected $modifyableMail = FALSE;
+ protected $modifyableMail = FALSE;
+
+ /* Allow modification of the mail server attribute existing mail accounts */
+ protected $modifyableServer = FALSE;
/* Enforces same value for 'mail' as used for 'cn' */
protected $mailEqualsCN = FALSE;
diff --git a/gosa-plugins/mail/personal/mail/class_mail-methods.inc b/gosa-plugins/mail/personal/mail/class_mail-methods.inc
index 7b4abf37473245aac27d15e95a0cd29205ee8815..e59b30f128feab35ffa35a860c0492d08da1b487 100644 (file)
class mailMethod{
/* Allow modification of account_ids for existing mail accounts */
- protected $modifyableMail = TRUE;
+ protected $modifyableMail = TRUE;
+
+ /* Allow modification of the mail server attribute existing mail accounts */
+ protected $modifyableServer = TRUE;
/* Enforces same value for 'mail' as used for 'cn' */
protected $mailEqualsCN = FALSE;
}
+ public function isModifyableServer()
+ {
+ return($this->modifyableServer);
+ }
+
+
/*! \brief Returns TRUE if the action caused an error.
@return Boolean TRUE on error else FALSE
*/