radius-password config value to set the attribute used for plaintext pw's
authorivan <ivan>
Wed, 9 Oct 2002 13:07:52 +0000 (13:07 +0000)
committerivan <ivan>
Wed, 9 Oct 2002 13:07:52 +0000 (13:07 +0000)
FS/FS/Conf.pm
FS/FS/svc_acct.pm

index c086040..777fe1c 100644 (file)
@@ -981,6 +981,14 @@ httemplate/docs/config.html
     'type'        => 'textarea',
   },
 
+  {
+    'key'         => 'raidus-password',
+    'section'     => 'unclassified',
+    'description' => 'RADIUS attribute for plain-text passwords.',
+    'type'        => 'select',
+    'select_enum' => [ 'Password', 'User-Password' ],
+  },
+
 );
 
 1;
index b8e9cfc..4805499 100644 (file)
@@ -10,6 +10,7 @@ use vars qw( @ISA $noexport_hack $conf
              $mydomain
              $welcome_template $welcome_from $welcome_subject $welcome_mimetype
              $smtpmachine
+             $radius_password
              $dirhash
              @saltset @pw_set );
 use Carp;
@@ -64,6 +65,7 @@ $FS::UID::callback{'FS::svc_acct'} = sub {
     $welcome_template = '';
   }
   $smtpmachine = $conf->config('smtpmachine');
+  $radius_password = $conf->config('radius-password') || 'Password';
 };
 
 @saltset = ( 'a'..'z' , 'A'..'Z' , '0'..'9' , '.' , '/' );
@@ -867,7 +869,7 @@ expected to change in the future.
 sub radius_check {
   my $self = shift;
   my $password = $self->_password;
-  my $pw_attrib = length($password) <= 12 ? 'Password' : 'Crypt-Password';
+  my $pw_attrib = length($password) <= 12 ? $radius_password : 'Crypt-Password';
   ( $pw_attrib => $self->_password,
     map {
       /^(rc_(.*))$/;