=== modified file 'webserver_auth.module'
--- webserver_auth.module	2008-06-13 19:48:41 +0000
+++ webserver_auth.module	2008-06-13 20:21:04 +0000
@@ -1,18 +1,16 @@
 <?php
-// $Id: webserver_auth.module,v 1.20 2008/04/21 16:43:26 weitzman Exp $
+// $Id$

 
-function webserver_auth_menu($may_cache) {
-  if ($may_cache) {
-    $items[] = array(
-      'title' => t('Webserver authentication'),
-      'path' => "admin/settings/webserver_auth",
-      'callback' => "drupal_get_form",
-      'callback arguments' => array('webserver_auth_settings'),
-      'description' => t('Configure a domain for generating email addresses. Optional.'),
-    );
-  }
+function webserver_auth_menu() {
+  $items = array();
+  $items['admin/settings/webserver_auth'] = array(
+    'title' => t('Webserver authentication'),
+    'description' => t('Configure a domain for generating email addresses. Optional.'),
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('webserver_auth_settings'),
+    'access arguments' => array('administer site configuration'),
+  );
   return $items;
-
 }
 
 function webserver_auth_init() {
