Code

Updated comments in heimdal plugin
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Nov 2007 13:43:48 +0000 (13:43 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Nov 2007 13:43:48 +0000 (13:43 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7875 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_password-methods-heimdal.inc

index fb087474733e60aaaa6a9c9d91912d88cde436ad..b4b2c52d28abd2c0362409023e5e8a61903ec424 100644 (file)
@@ -30,12 +30,13 @@ class passwordMethodheimdal extends passwordMethod
 
        function is_available()
        {
+    #TODO
     # Check if heimdal information is available
     # in configuration and return true/false
     #
-    # In particular, we need the hook to feed kadmin
+    # In particular, we need the "heimdal_keygen" to feed kadmin in order to return "true".
     #
-    return true;
+    return false;
        }
 
 
@@ -52,14 +53,19 @@ class passwordMethodheimdal extends passwordMethod
 
   function remove_from_parent()
   {
+    #TODO
     # Find and remove kerberos entry below $this->dn
+    # See https://oss.gonicus.de/labs/gosa/ticket/223
   }
 
 
   function set_password()
   {
+    #TODO
     # Add or modify kerberos entry below $this->dn
-
+    # See https://oss.gonicus.de/labs/gosa/ticket/223
+    # Order: create entries, then call the heimdal_keygen hook with the realm (returned by generate_hash)
+    #        to let it add the missing kerberos keys.
   }
 
 
@@ -81,7 +87,10 @@ class passwordMethodheimdal extends passwordMethod
 
   function configure()
   {
-    echo "Show dialog";
+    #TODO
+    # * Handle POST's from and for this dialog
+    # * Return filled template for the config sub-dialog.
+    # See https://oss.gonicus.de/labs/gosa/ticket/223
   }
 
 }