* Fix a typo in lib/sql/attrmap.php3
authorkkalev <kkalev>
Wed, 5 Feb 2003 21:26:22 +0000 (21:26 +0000)
committerkkalev <kkalev>
Wed, 5 Feb 2003 21:26:22 +0000 (21:26 +0000)
* Add an entry in the FAQ about the Dialup-Access attribute

dialup_admin/Changelog
dialup_admin/FAQ
dialup_admin/lib/sql/attrmap.php3

index 69895d7..bcfedd6 100644 (file)
@@ -7,6 +7,8 @@ Ver 1.63:
 * Add a configuration directive general_charset. Add a language meta tag in all pages
 * Use sql_extra_servers directive when adding users in the badusers table. Add a da_sql_host_connect() function
   to connect to a specific sql host
+* Fix a typo in lib/sql/attrmap.php3
+* Add an entry in the FAQ about the Dialup-Access attribute
 Ver 1.62:
 * Remove one sql query from user_admin which was not needed.
 * Instead of a query like "LIKE 'YYYY-MM-DD%'" use "AcctStopTime >= 'YYYY-MM-DD 00:00:00 AND AcctStopTime
index 8a729e3..c36243f 100644 (file)
@@ -50,6 +50,19 @@ uses the correct snmpwalk command and that it returns the correct results (snmfi
 servers). Try commenting out general_finger_type so that the Online Users page will just query the radacct
 table and not try to do a finger on the NAS.
 
+> Even though I have uncommented Dialup-Access in user_edits.attrs, when
+> editing a user, that field is not available.  Is this because in sql.attrmap
+> I have:
+>
+> checkItem     Dialup-Access                   none
+>
+> What should the attribute be?
+
+Dialup-Access is an attribute used by the ldap module. It is not implemented in
+the sql module, that's why the mapping is set to none.
+You could set Auth-Type to Reject instead.
+
+
 >
 > After I make a few changes in one of the configuration files things only work like they worked before
 >
index c69f1a8..b4c02ef 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-#Read ldap attribute map
+#Read sql attribute map
 $ARR = file("$config[general_sql_attrmap]");
 foreach($ARR as $val){
        $val=chop($val);