editing login.html (uppercase/lowercase)

any idea to uppercase or lowercase all submited login ?

i modify this at login.html

function doLogin() {
document.sendin.username.value = document.login.username.value> .toUpperCase()> ;
document.sendin.password.value = hexMD5(‘$(chap-id)’ + document.login.password.value + ‘$(chap-challenge)’);
document.sendin.submit();
return false;
}

i input lower username but it doesnt work , i still got lowercase username on radius.log

any clue ?[/quote]

Might be that your RADIUS server does a conversion to lowercase of the usernames he’s receiving? Wouldn’t be too uncommon…

Best regards,
Christian Meis

there`r lower_username at radius.conf but i set it to NO. i checked at radius.log it showed username that i had input without any conversion.. any way to convert all username to uppercase/lowercase before it send to radius ?