summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2002-10-09 13:07:54 +0000
committerivan <ivan>2002-10-09 13:07:54 +0000
commit3fcc6847417cbda9fd027a4286db5e59aea6d901 (patch)
treedb515ce0c1bb38f71eacae9a69496683759551bd
parent61e25db54f2da624a79ecedb6bf3d678c7fdefc5 (diff)
radius-password config value to set the attribute used for plaintext pw's
-rw-r--r--FS/FS/Conf.pm8
-rw-r--r--FS/FS/svc_acct.pm4
2 files changed, 11 insertions, 1 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 3fdaf218a..4dd80c121 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -967,6 +967,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;
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm
index 6c0807df2..b5ade6fac 100644
--- a/FS/FS/svc_acct.pm
+++ b/FS/FS/svc_acct.pm
@@ -9,6 +9,7 @@ use vars qw( @ISA $noexport_hack $conf
$username_uppercase
$welcome_template $welcome_from $welcome_subject $welcome_mimetype
$smtpmachine
+ $radius_password
$dirhash
@saltset @pw_set );
use Carp;
@@ -60,6 +61,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' , '.' , '/' );
@@ -858,7 +860,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 => $password,
map {
/^(rc_(.*))$/;