Blah.
[squirrelmail.git] / plugins / administrator / auth.php
index 517d70e010da327b0cda30ec0f09cc8cde04624c..4026aaf666a87bd1f0d42631288262d988ebdc80 100644 (file)
@@ -1,23 +1,33 @@
 <?php
 
 <?php
 
-function adm_check_user() {
+/*
+ *  This function tell other modules what users have access
+ *  to the plugin.
+ *  
+ *  Philippe Mingo
+ *  
+ *  $Id$
+ */
 
 
-    GLOBAL $username;
+function adm_check_user() {
+    GLOBAL $username, $PHP_SELF;
 
 
-    $auth = FALSE;
-    
-    if ( file_exists( '../plugins/administrator/admins' ) ) {
-        $auths = file( '../plugins/administrator/admins' );
-        $auth = in_array( "$username\n", $auths );
-    }else if ( $adm_id = fileowner('../config/config.php') ) {
+    if (strpos('options.php', $PHP_SELF)) {
+        $auth = FALSE;
+    } else if (file_exists(SM_PATH . 'plugins/administrator/admins')) {
+        $auths = file(SM_PATH . 'plugins/administrator/admins');
+        $auth = in_array("$username\n", $auths);
+    } else if (file_exists(SM_PATH . 'config/admins')) {
+        $auths = file(SM_PATH . 'config/admins');
+        $auth = in_array("$username\n", $auths);
+    } else if ($adm_id = fileowner(SM_PATH . 'config/config.php')) {
         $adm = posix_getpwuid( $adm_id );
         $adm = posix_getpwuid( $adm_id );
-        if ( $username == $adm['name'] ) {
-            $auth = TRUE;
-        } 
+        $auth = ($username == $adm['name']);
+    } else {
+        $auth = FALSE;
     }
 
     }
 
-    return( $auth );
-
+    return ($auth);
 }
 
 }
 
-?>
\ No newline at end of file
+?>