summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cfcde7f)
raw | patch | inline | side by side (parent: cfcde7f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Sep 2006 07:37:26 +0000 (07:37 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Sep 2006 07:37:26 +0000 (07:37 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4775 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_servKolab.inc | patch | blob | history |
index 3365211b96bee4bb46b8a62fadb5869848e14f9c..feb471c50e63c950b40b4f0ca66d5174f3a6e9e2 100644 (file)
***************/
/* Set relayhost and if we have MX lookup enabled*/
- if($this->acl_is_writeable("postfixmxrelayenabled")){
- if($this->postfix_mxrelayenabled) {
- $smarty->assign("RelayMxSupportCheck"," checked ");
- } else {
- $smarty->assign("RelayMxSupportCheck","");
- }
+ if($this->postfix_mxrelayenabled) {
+ $smarty->assign("RelayMxSupportCheck"," checked ");
+ } else {
+ $smarty->assign("RelayMxSupportCheck","");
}
/* Set acls */
}
}
- /* Toggle relay check */
- $this->postfix_mxrelayenabled= isset($_POST['RelayMxSupport']);
+ /* Toggell relay check */
+ if($this->acl_is_writeable("postfixmxrelayenabled")){
+ $this->postfix_mxrelayenabled= isset($_POST['RelayMxSupport']);
+ }
}
}