Code

Updated kolab2.2 mail method
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 9 Dec 2008 10:38:46 +0000 (10:38 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 9 Dec 2008 10:38:46 +0000 (10:38 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13199 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/kolab/personal/mail/kolab/class_mail-methods-kolab22.inc

index 19835b188f863448c6eff7857c790016f5b7f6a3..6b78f4653c3f92442cf62c50c082a38e2cb7eb76 100644 (file)
@@ -27,6 +27,23 @@ class mailMethodKolab22 extends mailMethodKolab
   {
     return(array("gonicus.de"));
   } 
+
+
+  /*! \brief  Returns a list of all possible acls.
+      @return Array   ACLs.
+  */
+  public function getAclTypes()
+  {
+    $acls["lrsw"]     = _("read");
+    $acls["lrswp"]    = _("post");
+    $acls["p"]        = _("external post");
+    $acls["lrswip"]   = _("append");
+    $acls["lrswipcd"] = _("write");
+    $acls["lrswipcda"]= _("admin");
+    $acls["lrswipkxtecda"]= _("super-admin");
+    $acls[" "]= _("none");
+    return($acls);
+  }
 }