Browse Source

debug configOptions

andre 5 years ago
parent
commit
817e365c8a
1 changed files with 1 additions and 10 deletions
  1. 1 10
      zimbraSingle.inc

+ 1 - 10
zimbraSingle.inc

@@ -393,7 +393,6 @@ function zimbraSingleConfigOptions($params) {
         "Type" => "dropdown",
         "Options" => implode(',', $cosNames),
         "Description" => "Select COS",
-        'SimpleMode' => true,
     );
     $apiDomainManager = new Zm_Domain($api);
     $response = $apiDomainManager->getAllDomains();
@@ -411,18 +410,10 @@ function zimbraSingleConfigOptions($params) {
     $configOptions['maildomains'] = array(
         "FriendlyName" => "Mail Domain",
         "Type" => "dropdown",
-        "Multiple" => true,
+        "Multiple" => yes,
         "Options" => implode(',', $domainNames),
         "Description" => "select maildomains",
-        'SimpleMode' => true,
     );
-/*    foreach($domainNames as $domainName) {
-        $configOptions[$domainName] = array(
-            "FriendlyName" => $domainName,
-            "Type" => "yesno",
-            "Description" => "activate to use this maildomain in customer selection",
-        );
-    } */
     return $configOptions;
 }