Diff for /loncom/auth/lonauth.pm between versions 1.122 and 1.144

version 1.122, 2012/08/27 00:52:45 version 1.144, 2017/08/08 16:43:54
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # User Authentication Module  # User Authentication Module
 #  #
 # $Id$  # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
 # This file is part of the LearningOnline Network with CAPA (LON-CAPA).  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 #  #
 # LON-CAPA is free software; you can redistribute it and/or modify  # LON-CAPA is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by  # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or  # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.  # (at your option) any later version.
 #  #
 # LON-CAPA is distributed in the hope that it will be useful,  # LON-CAPA is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.  # GNU General Public License for more details.
 #  #
 # You should have received a copy of the GNU General Public License  # You should have received a copy of the GNU General Public License
 # along with LON-CAPA; if not, write to the Free Software  # along with LON-CAPA; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #  #
 # /home/httpd/html/adm/gpl.txt  # /home/httpd/html/adm/gpl.txt
 #  #
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 package Apache::lonauth;  package Apache::lonauth;
   
 use strict;  use strict;
 use LONCAPA;  use LONCAPA qw(:DEFAULT :match);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use CGI qw(:standard);  use CGI qw(:standard);
 use DynaLoader; # for Crypt::DES version  use Apache::loncommon();
 use Crypt::DES;  use Apache::lonnet;
 use Apache::loncommon();  use Apache::lonmenu();
 use Apache::lonnet;  use Apache::createaccount;
 use Apache::lonmenu();  use Fcntl qw(:flock);
 use Apache::createaccount;  use Apache::lonlocal;
 use Fcntl qw(:flock);  use Apache::File();
 use Apache::lonlocal;  use HTML::Entities;
 use Apache::File();  use Digest::MD5;
 use HTML::Entities;   
    # ------------------------------------------------------------ Successful login
 # ------------------------------------------------------------ Successful login  sub success {
 sub success {      my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,
     my ($r, $username, $domain, $authhost, $lowerurl, $extra_env,   $form) = @_;
  $form) = @_;  
   # ------------------------------------------------------------ Get cookie ready
 # ------------------------------------------------------------ Get cookie ready      my $cookie =
     my $cookie =   &Apache::loncommon::init_user_environment($r, $username, $domain,
  &Apache::loncommon::init_user_environment($r, $username, $domain,    $authhost, $form,
   $authhost, $form,    {'extra_env' => $extra_env,});
   {'extra_env' => $extra_env,});  
       my $public=($username eq 'public' && $domain eq 'public');
     my $public=($username eq 'public' && $domain eq 'public');  
       if ($public or $lowerurl eq 'noredirect') { return $cookie; }
     if ($public or $lowerurl eq 'noredirect') { return $cookie; }  
   # -------------------------------------------------------------------- Log this
 # -------------------------------------------------------------------- Log this  
       &Apache::lonnet::log($domain,$username,$authhost,
     &Apache::lonnet::log($domain,$username,$authhost,                           "Login $ENV{'REMOTE_ADDR'}");
                          "Login $ENV{'REMOTE_ADDR'}");  
   # ------------------------------------------------- Check for critical messages
 # ------------------------------------------------- Check for critical messages  
       my @what=&Apache::lonnet::dump('critical',$domain,$username);
     my @what=&Apache::lonnet::dump('critical',$domain,$username);      if ($what[0]) {
     if ($what[0]) {   if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
  if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {      $lowerurl='/adm/email?critical=display';
     $lowerurl='/adm/email?critical=display';          }
         }      }
     }  
   # ----------------------------------------------------------- Get cookies ready
 # ------------------------------------------------------------ Get cookie ready      my ($securecookie,$defaultcookie);
     $cookie="lonID=$cookie; path=/";      if ($ENV{'SERVER_PORT'} == 443) {
 # -------------------------------------------------------- Menu script and info          $securecookie="lonID=$cookie; path=/; HttpOnly; secure";
     my $destination = $lowerurl;          my $lonidsdir=$r->dir_config('lonIDsDir');
           if (($lonidsdir) && (-e "$lonidsdir/$cookie.id")) {
     if (defined($form->{role})) {              my $linkname=substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, 32).'_linked';
         my $envkey = 'user.role.'.$form->{role};              if (-e "$lonidsdir/$linkname.id") {
         my $now=time;                  unlink("$lonidsdir/$linkname.id");
         my $then=$env{'user.login.time'};              }
         my $refresh=$env{'user.refresh.time'};              my $made_symlink = eval { symlink("$lonidsdir/$cookie.id",
         my $update=$env{'user.update.time'};                                                "$lonidsdir/$linkname.id"); 1 };
         if (!$update) {              if ($made_symlink) {
             $update = $then;                  $defaultcookie = "lonLinkID=$linkname; path=/; HttpOnly;";
         }                  &Apache::lonnet::appenv({'user.linkedenv' => "$lonidsdir/$linkname.id"});
         if (exists($env{$envkey})) {              }
             my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);          }
             &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,      } else {
                                          \$trolecode,\$tstatus,\$tstart,\$tend);          $defaultcookie = "lonID=$cookie; path=/; HttpOnly;";
             if ($tstatus eq 'is') {      }
                 $destination  .= ($destination =~ /\?/) ? '&' : '?';  # -------------------------------------------------------- Menu script and info
                 my $newrole = &HTML::Entities::encode($form->{role},'"<>&');      my $destination = $lowerurl;
                 $destination .= 'selectrole=1&'.$newrole.'=1';  
             }      if (defined($form->{role})) {
         }          my $envkey = 'user.role.'.$form->{role};
     }          my $now=time;
     if (defined($form->{symb})) {          my $then=$env{'user.login.time'};
         my $destsymb = $form->{symb};          my $refresh=$env{'user.refresh.time'};
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          my $update=$env{'user.update.time'};
         if ($destsymb =~ /___/) {          if (!$update) {
             # FIXME Need to deal with encrypted symbs and urls as needed.              $update = $then;
             my ($map,$resid,$desturl)=split(/___/,$destsymb);          }
             unless ($desturl=~/^(adm|uploaded|editupload|public)/) {          if (exists($env{$envkey})) {
                 $desturl = &Apache::lonnet::clutter($desturl);              my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus);
             }              &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
             $desturl = &HTML::Entities::encode($desturl,'"<>&');                                           \$trolecode,\$tstatus,\$tstart,\$tend);
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              if ($tstatus eq 'is') {
             $destination .= '&destinationurl='.$desturl.                  $destination  .= ($destination =~ /\?/) ? '&' : '?';
                             '&destsymb='.$destsymb;                  my $newrole = &HTML::Entities::encode($form->{role},'"<>&');
         } else {                  $destination .= 'selectrole=1&'.$newrole.'=1';
             $destsymb = &HTML::Entities::encode($destsymb,'"<>&');              }
             $destination .= '&destinationurl='.$destsymb;          }
         }      }
     }      if (defined($form->{symb})) {
     if ($destination =~ m{^/adm/roles}) {          my $destsymb = $form->{symb};
         $destination  .= ($destination =~ /\?/) ? '&' : '?';          $destination  .= ($destination =~ /\?/) ? '&' : '?';
         $destination .= 'source=login';          if ($destsymb =~ /___/) {
     }              # FIXME Need to deal with encrypted symbs and urls as needed.
               my ($map,$resid,$desturl)=split(/___/,$destsymb);
     my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');              $desturl = &Apache::lonnet::clutter($desturl);
     my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';              $desturl = &HTML::Entities::encode($desturl,'"<>&');
     my $brcrum = [{'href' => '',              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
                    'text' => 'Successful Login'},];              $destination .= 'destinationurl='.$desturl.
     my $start_page=&Apache::loncommon::start_page('Successful Login',                              '&destsymb='.$destsymb;
                                                   $header,          } else {
                                                   {'bread_crumbs' => $brcrum,});              $destsymb = &HTML::Entities::encode($destsymb,'"<>&');
     my $end_page  =&Apache::loncommon::end_page();              $destination .= 'destinationurl='.$destsymb;
           }
  my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';      }
 # ------------------------------------------------- Output for successful login      if ($destination =~ m{^/adm/roles}) {
           $destination  .= ($destination =~ /\?/) ? '&' : '?';
     &Apache::loncommon::content_type($r,'text/html');          $destination .= 'source=login';
     $r->header_out('Set-cookie' => $cookie);      }
     $r->send_http_header;  
       my $windowinfo = Apache::lonhtmlcommon::scripttag('self.name="loncapaclient";');
     my %lt=&Apache::lonlocal::texthash(      my $header = '<meta HTTP-EQUIV="Refresh" CONTENT="0; url='.$destination.'" />';
        'wel' => 'Welcome',      my $brcrum = [{'href' => '',
        'pro' => 'Login problems?',                     'text' => 'Successful Login'},];
        );      my $args = {'bread_crumbs' => $brcrum,};
     my $loginhelp = &loginhelpdisplay($domain);      unless ((defined($form->{role})) || (defined($form->{symb}))) {
     if ($loginhelp) {          my $update=$env{'user.update.time'};
         $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';          if (!$update) {
     }              $update = $env{'user.login.time'};
           }
     my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');           my %roles_in_env;
     $r->print(<<ENDSUCCESS);          my $showcount = &Apache::lonroles::roles_from_env(\%roles_in_env,$update);
 $start_page          if ($showcount == 1) {
 $windowinfo              foreach my $rolecode (keys(%roles_in_env)) {
 <h1>$lt{'wel'}</h1>                  my ($cid) = ($rolecode =~ m{^\Quser.role.st./\E($match_domain/$match_courseid)(?:/|$)});
 $welcome                  if ($cid) {
 $loginhelp                      my %coursedescription =
 $continuelink                          &Apache::lonnet::coursedescription($cid,{'one_time' => '1'});
 $end_page                      if ($coursedescription{'type'} eq 'Placement') {
 ENDSUCCESS                          $args->{'crstype'} = 'Placement';
 }                      }
                       last;
 # --------------------------------------------------------------- Failed login!                  }
               }
 sub failed {          }
     my ($r,$message,$form) = @_;      }
     my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef);      my $start_page=&Apache::loncommon::start_page('Successful Login',
     my $retry = '/adm/login?username='.$form->{'uname'}.                                                    $header,$args);
                 '&domain='.$form->{'udom'};      my $end_page  =&Apache::loncommon::end_page();
     if (exists($form->{role})) {  
         $retry .= '&role='.$form->{role};   my $continuelink='<a href="'.$destination.'">'.&mt('Continue').'</a>';
     }  # ------------------------------------------------- Output for successful login
     if (exists($form->{symb})) {  
         $retry .= '&symb='.$form->{symb};      &Apache::loncommon::content_type($r,'text/html');
     }      if ($securecookie) {
     my $end_page   = &Apache::loncommon::end_page();          $r->headers_out->add('Set-cookie' => $securecookie);
     &Apache::loncommon::content_type($r,'text/html');      }
     $r->send_http_header;      if ($defaultcookie) {
     $r->print(          $r->headers_out->add('Set-cookie' => $defaultcookie);
        $start_page      }
       .'<h1>'.&mt('Sorry ...').'</h1>'      $r->send_http_header;
       .'<p class="LC_warning">'.&mt($message).'</p>'  
       .'<p>'.&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>')      my %lt=&Apache::lonlocal::texthash(
       .'</p>'         'wel' => 'Welcome',
       .'<p><a href="/adm/loginproblems.html">'.&mt('Login problems?').'</a></p>'         'pro' => 'Login problems?',
       .$end_page         );
     );      my $loginhelp = &loginhelpdisplay($domain);
  }      if ($loginhelp) {
           $loginhelp = '<p><a href="'.$loginhelp.'">'.$lt{'pro'}.'</a></p>';
 # ------------------------------------------------------------------ Rerouting!      }
   
 sub reroute {      my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
     my ($r) = @_;      $r->print(<<ENDSUCCESS);
     &Apache::loncommon::content_type($r,'text/html');  $start_page
     $r->send_http_header;  $windowinfo
     my $msg='<h1>'.&mt('Sorry ...').'</h1>'  <h1>$lt{'wel'}</h1>
            .&mt('Please [_1]log in again[_2].');  $welcome
     &Apache::loncommon::simple_error_page($r,'Rerouting',$msg);  $loginhelp
 }  $continuelink
   $end_page
 # ---------------------------------------------------------------- Main handler  ENDSUCCESS
       return;
 sub handler {  }
     my $r = shift;  
     my $londocroot = $r->dir_config('lonDocRoot');  # --------------------------------------------------------------- Failed login!
     my $form;  
 # Are we re-routing?  sub failed {
     if (-e "$londocroot/lon-status/reroute.txt") {      my ($r,$message,$form) = @_;
  &reroute($r);      (undef,undef,undef,my $clientmathml,my $clientunicode) =
  return OK;          &Apache::loncommon::decode_user_agent();
     }      my $args = {};
       if ($clientunicode && !$clientmathml) {
     &Apache::lonlocal::get_language_handle($r);          $args = {'browser.unicode' => 1};
       }
 # -------------------------------- Prevent users from attempting to login twice  
     my $handle = &Apache::lonnet::check_for_valid_session($r);      my $start_page = &Apache::loncommon::start_page('Unsuccessful Login',undef,$args);
     if ($handle ne '') {      my $uname = &Apache::loncommon::cleanup_html($form->{'uname'});
         my $lonidsdir=$r->dir_config('lonIDsDir');      my $udom = &Apache::loncommon::cleanup_html($form->{'udom'});
         if ($handle=~/^publicuser\_/) {      if (&Apache::lonnet::domain($udom,'description') eq '') {
 # For "public user" - remove it, we apparently really want to login          undef($udom);
             unlink($r->dir_config('lonIDsDir')."/$handle.id");      }
         } else {      my $retry = '/adm/login';
 # Indeed, a valid token is found      if ($uname eq $form->{'uname'}) {
             &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);          $retry .= '?username='.$uname;
     &Apache::loncommon::content_type($r,'text/html');      }
     $r->send_http_header;      if ($udom) {
     my $start_page =           $retry .= (($retry=~/\?/)?'&amp;':'?').'domain='.$udom;
         &Apache::loncommon::start_page('Already logged in');      }
     my $end_page =       if (exists($form->{role})) {
         &Apache::loncommon::end_page();          my $role = &Apache::loncommon::cleanup_html($form->{role});
             my $dest = '/adm/roles';          if ($role ne '') {
             if ($env{'form.firsturl'} ne '') {              $retry .= (($retry=~/\?/)?'&amp;':'?').'role='.$role;
                 $dest = $env{'form.firsturl'};          }
             }      }
             $r->print(      if (exists($form->{symb})) {
                $start_page          my $symb = &Apache::loncommon::cleanup_html($form->{symb});
               .'<p class="LC_warning>"'.&mt('You are already logged in!').'</p>'          if ($symb ne '') {
               .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'              $retry .= (($retry=~/\?/)?'&amp;':'?').'symb='.$symb;
                     ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')          }
               .'</p>'      }
               .$end_page      my $end_page = &Apache::loncommon::end_page();
             );      &Apache::loncommon::content_type($r,'text/html');
             return OK;      $r->send_http_header;
         }      my @actions =
     }           (&mt('Please [_1]log in again[_2].','<a href="'.$retry.'">','</a>'));
       my $loginhelp = &loginhelpdisplay($udom);
 # ---------------------------------------------------- No valid token, continue      if ($loginhelp) {
           push(@actions, '<a href="'.$loginhelp.'">'.&mt('Login problems?').'</a>');
       }
     my $buffer;      #FIXME: link to helpdesk might be added here
     if ($r->header_in('Content-length') > 0) {  
  $r->read($buffer,$r->header_in('Content-length'),0);      $r->print(
     }         $start_page
     my %form;        .'<h2>'.&mt('Sorry ...').'</h2>'
     foreach my $pair (split(/&/,$buffer)) {        .&Apache::lonhtmlcommon::confirm_success(&mt($message),1).'<br /><br />'
        my ($name,$value) = split(/=/,$pair);        .&Apache::lonhtmlcommon::actionbox(\@actions)
        $value =~ tr/+/ /;        .$end_page
        $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;      );
        $form{$name}=$value;   }
     }   
   # ------------------------------------------------------------------ Rerouting!
     if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {  
  &failed($r,'Username, password and domain need to be specified.',  sub reroute {
  \%form);      my ($r) = @_;
         return OK;      &Apache::loncommon::content_type($r,'text/html');
     }      $r->send_http_header;
       my $msg='<b>'.&mt('Sorry ...').'</b><br />'
 # split user logging in and "su"-user             .&mt('Please [_1]log in again[_2].');
       &Apache::loncommon::simple_error_page($r,'Rerouting',$msg,{'no_auto_mt_msg' => 1});
     ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});  }
     $form{'uname'} = &LONCAPA::clean_username($form{'uname'});  
     $form{'suname'}= &LONCAPA::clean_username($form{'suname'});  # ---------------------------------------------------------------- Main handler
     $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});  
   sub handler {
     my $role   = $r->dir_config('lonRole');      my $r = shift;
     my $domain = $r->dir_config('lonDefDomain');      my $londocroot = $r->dir_config('lonDocRoot');
     my $prodir = $r->dir_config('lonUsersDir');  # Are we re-routing?
     my $contact_name = &mt('LON-CAPA helpdesk');      if (-e "$londocroot/lon-status/reroute.txt") {
    &reroute($r);
 # ---------------------------------------- Get the information from login token   return OK;
       }
     my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},  
                                       $form{'serverid'});      &Apache::lonlocal::get_language_handle($r);
   
     if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||   # -------------------------------- Prevent users from attempting to login twice
         ($tmpinfo eq 'no_such_host')) {      my $handle = &Apache::lonnet::check_for_valid_session($r);
  &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);      if ($handle ne '') {
         return OK;          my $lonidsdir=$r->dir_config('lonIDsDir');
     } else {          if ($handle=~/^publicuser\_/) {
  my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},  # For "public user" - remove it, we apparently really want to login
    $form{'serverid'});              unlink($r->dir_config('lonIDsDir')."/$handle.id");
         if ( $reply ne 'ok' ) {          } else {
             &failed($r,'Session could not be opened.',\%form);  # Indeed, a valid token is found
     &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");              &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
     return OK;      &Apache::loncommon::content_type($r,'text/html');
  }      $r->send_http_header;
     }      my $start_page =
           &Apache::loncommon::start_page('Already logged in');
     if (!&Apache::lonnet::domain($form{'udom'})) {      my $end_page =
         &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);          &Apache::loncommon::end_page();
         return OK;              my $dest = '/adm/roles';
     }              if ($env{'form.firsturl'} ne '') {
                   $dest = $env{'form.firsturl'};
     my ($key,$firsturl,$rolestr,$symbstr)=split(/&/,$tmpinfo);              }
     if ($rolestr) {              $r->print(
         $rolestr = &unescape($rolestr);                 $start_page
     }                .'<p class="LC_warning">'.&mt('You are already logged in!').'</p>'
     if ($symbstr) {                .'<p>'.&mt('Please either [_1]continue the current session[_2] or [_3]log out[_4].'
         $symbstr= &unescape($symbstr);                      ,'<a href="'.$dest.'">','</a>','<a href="/adm/logout">','</a>')
     }                .'</p>'
     if ($rolestr =~ /^role=/) {                .$end_page
         (undef,$form{'role'}) = split('=',$rolestr);              );
     }              return OK;
     if ($symbstr =~ /^symb=/) {           }
         (undef,$form{'symb'}) = split('=',$symbstr);      }
     }  
   # ---------------------------------------------------- No valid token, continue
     my $keybin=pack("H16",$key);  
   
     my $cipher;      my $buffer;
     if ($Crypt::DES::VERSION>=2.03) {      if ($r->header_in('Content-length') > 0) {
  $cipher=new Crypt::DES $keybin;   $r->read($buffer,$r->header_in('Content-length'),0);
     }      }
     else {      my %form;
  $cipher=new DES $keybin;      foreach my $pair (split(/&/,$buffer)) {
     }         my ($name,$value) = split(/=/,$pair);
     my $upass='';         $value =~ tr/+/ /;
     for (my $i=0;$i<=2;$i++) {         $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
  my $chunk=         $form{$name}=$value;
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},0,16))));      }
   
  $chunk.=      if ((!$form{'uname'}) || (!$form{'upass0'}) || (!$form{'udom'})) {
     $cipher->decrypt(unpack("a8",pack("H16",substr($form{'upass'.$i},16,16))));   &failed($r,'Username, password and domain need to be specified.',
    \%form);
  $chunk=substr($chunk,1,ord(substr($chunk,0,1)));          return OK;
  $upass.=$chunk;      }
     }  
   # split user logging in and "su"-user
 # ---------------------------------------------------------------- Authenticate  
       ($form{'uname'},$form{'suname'})=split(/\:/,$form{'uname'});
     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});      $form{'uname'} = &LONCAPA::clean_username($form{'uname'});
     my ($cancreate,$statustocreate) =      $form{'suname'}= &LONCAPA::clean_username($form{'suname'});
         &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});      $form{'udom'}  = &LONCAPA::clean_domain(  $form{'udom'});
     my $defaultauth;  
     if (ref($cancreate) eq 'ARRAY') {      my $role   = $r->dir_config('lonRole');
         if (grep(/^login$/,@{$cancreate})) {      my $domain = $r->dir_config('lonDefDomain');
             $defaultauth = 1;      my $prodir = $r->dir_config('lonUsersDir');
         }      my $contact_name = &mt('LON-CAPA helpdesk');
     }  
     my $clientcancheckhost = 1;  # ---------------------------------------- Get the information from login token
     my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,  
                                               $form{'udom'},$defaultauth,      my $tmpinfo=Apache::lonnet::reply('tmpget:'.$form{'logtoken'},
                                               $clientcancheckhost);                                        $form{'serverid'});
       
 # --------------------------------------------------------------------- Failed?      if (($tmpinfo=~/^error/) || ($tmpinfo eq 'con_lost') ||
           ($tmpinfo eq 'no_such_host')) {
     if ($authhost eq 'no_host') {   &failed($r,'Information needed to verify your login information is missing, inaccessible or expired.',\%form);
  &failed($r,'Username and/or password could not be authenticated.',          return OK;
  \%form);      } else {
         return OK;   my $reply = &Apache::lonnet::reply('tmpdel:'.$form{'logtoken'},
     } elsif ($authhost eq 'no_account_on_host') {     $form{'serverid'});
         if ($defaultauth) {          if ( $reply ne 'ok' ) {
             my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');              &failed($r,'Session could not be opened.',\%form);
             unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {      &Apache::lonnet::logthis("ERROR got a reply of $reply when trying to contact ". $form{'serverid'}." to get login token");
                 return OK;      return OK;
             }   }
             my $start_page =       }
                 &Apache::loncommon::start_page('Create a user account in LON-CAPA');  
             my $lonhost = $r->dir_config('lonHostID');      if (!&Apache::lonnet::domain($form{'udom'})) {
             my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};          &failed($r,'The domain you provided is not a valid LON-CAPA domain.',\%form);
             my $contacts =           return OK;
                 &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',      }
                                                         $form{'udom'},$origmail);  
             my ($contact_email) = split(',',$contacts);       my ($key,$firsturl,$rolestr,$symbstr,$iptokenstr)=split(/&/,$tmpinfo);
             my $output =       if ($rolestr) {
                 &Apache::createaccount::username_check($form{'uname'},$form{'udom'},          $rolestr = &unescape($rolestr);
                                                        $domdesc,'',$lonhost,      }
                                                        $contact_email,$contact_name,      if ($symbstr) {
                                                        undef,$statustocreate);          $symbstr= &unescape($symbstr);
             &Apache::loncommon::content_type($r,'text/html');      }
             $r->send_http_header;      if ($iptokenstr) {
             &Apache::createaccount::print_header($r,$start_page);          $iptokenstr = &unescape($iptokenstr);
             $r->print('<h3>'.&mt('Account creation').'</h3>'.      }
                       &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.      if ($rolestr =~ /^role=/) {
                       $output.&Apache::loncommon::end_page());          (undef,$form{'role'}) = split('=',$rolestr);
             return OK;      }
         } else {      if ($symbstr =~ /^symb=/) {
             &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);          (undef,$form{'symb'}) = split('=',$symbstr);
             return OK;      }
         }      if ($iptokenstr =~ /^iptoken=/) {
     }          (undef,$form{'iptoken'}) = split('=',$iptokenstr);
       }
     if (($firsturl eq '') ||   
  ($firsturl=~/^\/adm\/(logout|remote)/)) {      my $upass = $ENV{HTTPS} ? $form{'upass0'}
  $firsturl='/adm/roles';          : &Apache::loncommon::des_decrypt($key,$form{'upass0'});
     }  
 # --------------------------------- Are we attempting to login as somebody else?  # ---------------------------------------------------------------- Authenticate
     if ($form{'suname'}) {  
 # ------------ see if the original user has enough privileges to pull this stunt      my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$form{'udom'});
  if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {      my ($cancreate,$statustocreate) =
 # ---------------------------------------------------- see if the su-user exists          &Apache::createaccount::get_creation_controls($form{'udom'},$domconfig{'usercreation'});
     unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})      my $defaultauth;
  eq 'no_host') {      if (ref($cancreate) eq 'ARRAY') {
  &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));          if (grep(/^login$/,@{$cancreate})) {
 # ------------------------------ see if the su-user is not too highly privileged              $defaultauth = 1;
  unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {          }
 # -------------------------------------------------------- actually switch users      }
     &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.      my $clientcancheckhost = 1;
  ' logging in as '.$form{'suname'});      my $authhost=Apache::lonnet::authenticate($form{'uname'},$upass,
     $form{'uname'}=$form{'suname'};                                                $form{'udom'},$defaultauth,
  } else {                                                $clientcancheckhost);
     &Apache::lonnet::logthis('Attempted switch user to privileged user');     
  }  # --------------------------------------------------------------------- Failed?
     }  
  } else {      if ($authhost eq 'no_host') {
     &Apache::lonnet::logthis('Non-privileged user attempting switch user');   &failed($r,'Username and/or password could not be authenticated.',
  }   \%form);
     }          return OK;
       } elsif ($authhost eq 'no_account_on_host') {
     my ($is_balancer,$otherserver) =           if ($defaultauth) {
         &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'});              my $domdesc = &Apache::lonnet::domain($form{'udom'},'description');
               unless (&check_can_host($r,\%form,'no_account_on_host',$domdesc)) {
     if ($is_balancer) {                  return OK;
         if (!$otherserver) {               }
             ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});              my $start_page =
         }                  &Apache::loncommon::start_page('Create a user account in LON-CAPA');
         if ($otherserver) {              my $lonhost = $r->dir_config('lonHostID');
             &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                      \%form);              my $contacts =
     $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);                  &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
         } else {                                                          $form{'udom'},$origmail);
             $r->print(&noswitch());              my ($contact_email) = split(',',$contacts);
         }              my $output =
         return OK;                  &Apache::createaccount::username_check($form{'uname'},$form{'udom'},
     } else {                                                         $domdesc,'',$lonhost,
         if (!&check_can_host($r,\%form,$authhost)) {                                                         $contact_email,$contact_name,
             my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});                                                         undef,$statustocreate);
             if ($otherserver) {              &Apache::loncommon::content_type($r,'text/html');
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,              $r->send_http_header;
                          \%form);              &Apache::createaccount::print_header($r,$start_page);
                 $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver.'&origurl='.$firsturl);              $r->print('<h3>'.&mt('Account creation').'</h3>'.
             } else {                        &mt('Although your username and password were authenticated, you do not currently have a LON-CAPA account at this institution.').'<br />'.
                 $r->print(&noswitch());                        $output.&Apache::loncommon::end_page());
             }              return OK;
             return OK;          } else {
         }              &failed($r,'Although your username and password were authenticated, you do not currently have a LON-CAPA account in this domain, and you are not permitted to create one.',\%form);
               return OK;
 # ------------------------------------------------------- Do the load balancing          }
       }
 # ---------------------------------------------------------- Determine own load  
         my $loadlim = $r->dir_config('lonLoadLim');      if (($firsturl eq '') ||
         my $loadavg;   ($firsturl=~/^\/adm\/(logout|remote)/)) {
         {   $firsturl='/adm/roles';
             my $loadfile=Apache::File->new('/proc/loadavg');      }
             $loadavg=<$loadfile>;  
         }      my $hosthere;
         $loadavg =~ s/\s.*//g;      if ($form{'iptoken'}) {
         my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);          my %sessiondata = &Apache::lonnet::tmpget($form{'iptoken'});
         my $userloadpercent=&Apache::lonnet::userload();          my $delete = &Apache::lonnet::tmpdel($form{'iptoken'});
           if (($sessiondata{'domain'} eq $form{'udom'}) &&
 # ---------------------------------------------------------- Are we overloaded?              ($sessiondata{'username'} eq $form{'uname'})) {
         if ((($userloadpercent>100.0)||($loadpercent>100.0))) {              $hosthere = 1;
             my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});          }
             if (!$unloaded) {      }
                 ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});  
             }  # --------------------------------- Are we attempting to login as somebody else?
             if ($unloaded) {      if ($form{'suname'}) {
                 &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',  # ------------ see if the original user has enough privileges to pull this stunt
                          undef,\%form);   if (&Apache::lonnet::privileged($form{'uname'},$form{'udom'})) {
                 $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);  # ---------------------------------------------------- see if the su-user exists
                 return OK;      unless (&Apache::lonnet::homeserver($form{'suname'},$form{'udom'})
             }   eq 'no_host') {
         }   &Apache::lonnet::logthis(&Apache::lonnet::homeserver($form{'suname'},$form{'udom'}));
         &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,  # ------------------------------ see if the su-user is not too highly privileged
                  \%form);   unless (&Apache::lonnet::privileged($form{'suname'},$form{'udom'})) {
         return OK;  # -------------------------------------------------------- actually switch users
     }      &Apache::lonnet::logperm('User '.$form{'uname'}.' at '.$form{'udom'}.
 }   ' logging in as '.$form{'suname'});
       $form{'uname'}=$form{'suname'};
 sub check_can_host {   } else {
     my ($r,$form,$authhost,$domdesc) = @_;      &Apache::lonnet::logthis('Attempted switch user to privileged user');
     return unless (ref($form) eq 'HASH');   }
     my $canhost = 1;      }
     my $lonhost = $r->dir_config('lonHostID');   } else {
     my $udom = $form->{'udom'};      &Apache::lonnet::logthis('Non-privileged user attempting switch user');
     my @intdoms;   }
     my $internet_names = &Apache::lonnet::get_internet_names($lonhost);      }
     if (ref($internet_names) eq 'ARRAY') {  
         @intdoms = @{$internet_names};      my ($is_balancer,$otherserver);
     }  
     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');      unless ($hosthere) {
     my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);          ($is_balancer,$otherserver) =
     unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {              &Apache::lonnet::check_loadbalancing($form{'uname'},$form{'udom'},'login');
         my $machine_dom = &Apache::lonnet::host_domain($lonhost);          if ($is_balancer) {
         my $hostname = &Apache::lonnet::hostname($lonhost);              if ($otherserver eq '') {
         my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);                  my $lowest_load;
         my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);                  ($otherserver,undef,undef,undef,$lowest_load) = &Apache::lonnet::choose_server($form{'udom'});
         my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);                  if ($lowest_load > 100) {
         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);                      $otherserver = &Apache::lonnet::spareserver($lowest_load,$lowest_load,1,$form{'udom'});
         my $loncaparev;                  }
         if ($authhost eq 'no_account_on_host') {              }
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);              if ($otherserver ne '') {
         } else {                  my @hosts = &Apache::lonnet::current_machine_ids();
             $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);                  if (grep(/^\Q$otherserver\E$/,@hosts)) {
         }                      $hosthere = $otherserver;
         $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,                  }
                                                      $udomdefaults{'remotesessions'},              }
                                                      $defdomdefaults{'hostedsessions'});          }
     }      }
     unless ($canhost) {  
         if ($authhost eq 'no_account_on_host') {      if (($is_balancer) && (!$hosthere)) {
             my $checkloginvia = 1;          if ($otherserver) {
             my ($login_host,$hostname) =               &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
                 &Apache::lonnet::choose_server($udom,$checkloginvia);                       \%form);
             &Apache::loncommon::content_type($r,'text/html');              my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             $r->send_http_header;              if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
             if ($login_host ne '') {                  $switchto .= '&origurl='.$firsturl;
                 my $protocol = $Apache::lonnet::protocol{$login_host};              }
                 $protocol = 'http' if ($protocol ne 'https');              if ($form{'role'}) {
                 my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';                  $switchto .= '&role='.$form{'role'};
                 $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').              }
                           '<h3>'.&mt('Account creation').'</h3>'.              if ($form{'symb'}) {
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.                  $switchto .= '&symb='.$form{'symb'};
                           '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.              }
                           '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').              $r->internal_redirect($switchto);
                           &Apache::loncommon::end_page());          } else {
             } else {              $r->print(&noswitch());
                 $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').          }
                           '<h3>'.&mt('Account creation unavailable').'</h3>'.          return OK;
                           &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.      } else {
                           '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.          if (!&check_can_host($r,\%form,$authhost)) {
                           &Apache::loncommon::end_page());              my ($otherserver) = &Apache::lonnet::choose_server($form{'udom'});
             }              if ($otherserver) {
         } else {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',undef,
             &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,                           \%form);
                      $form);                  my $switchto = '/adm/switchserver?otherserver='.$otherserver;
             my ($otherserver) = &Apache::lonnet::choose_server($udom);                  if (($firsturl) && ($firsturl ne '/adm/switchserver') && ($firsturl ne '/adm/roles')) {
             $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);                      $switchto .= '&origurl='.$firsturl;
         }                  }
     }                  if ($form{'role'}) {
     return $canhost;                      $switchto .= '&role='.$form{'role'};
 }                  }
                   if ($form{'symb'}) {
 sub noswitch {                      $switchto .= '&symb='.$form{'symb'};
     my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').                  }
                  '<h3>'.&mt('Session unavailable').'</h3>'.                  $r->internal_redirect($switchto);
                  &mt('This LON-CAPA server is unable to host your session.').'<br />'.              } else {
                  '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.                  $r->print(&noswitch());
                  &Apache::loncommon::end_page();              }
     return $result;              return OK;
 }          }
   
 sub loginhelpdisplay {  # ------------------------------------------------------- Do the load balancing
     my ($authdomain) = @_;  
     my $login_help = 1;  # ---------------------------------------------------------- Determine own load
     my $lang = &Apache::lonlocal::current_language();          my $loadlim = $r->dir_config('lonLoadLim');
     if ($login_help) {          my $loadavg;
         my $dom = $authdomain;          {
         if ($dom eq '') {              my $loadfile=Apache::File->new('/proc/loadavg');
             $dom = &Apache::lonnet::default_login_domain();              $loadavg=<$loadfile>;
         }          }
         my %domconfhash = &Apache::loncommon::get_domainconf($dom);          $loadavg =~ s/\s.*//g;
         my $loginhelp_url;          my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
         if ($lang) {          my $userloadpercent=&Apache::lonnet::userload();
             $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};  
             if ($loginhelp_url ne '') {  # ---------------------------------------------------------- Are we overloaded?
                 return $loginhelp_url;          if ((($userloadpercent>100.0)||($loadpercent>100.0))) {
             }              my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent,1,$form{'udom'});
         }              if (!$unloaded) {
         $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};                  ($unloaded) = &Apache::lonnet::choose_server($form{'udom'});
         if ($loginhelp_url ne '') {              }
             return $loginhelp_url;              if ($unloaded) {
         } else {                  &success($r,$form{'uname'},$form{'udom'},$authhost,'noredirect',
             return '/adm/loginproblems.html';                           undef,\%form);
         }                  $r->internal_redirect('/adm/switchserver?otherserver='.$unloaded.'&origurl='.$firsturl);
     }                  return OK;
     return;              }
 }          }
           if (($is_balancer) && ($hosthere)) {
 1;              $form{'noloadbalance'} = $hosthere;
 __END__          }
           &success($r,$form{'uname'},$form{'udom'},$authhost,$firsturl,undef,
                    \%form);
           return OK;
       }
   }
   
   sub check_can_host {
       my ($r,$form,$authhost,$domdesc) = @_;
       return unless (ref($form) eq 'HASH');
       my $canhost = 1;
       my $lonhost = $r->dir_config('lonHostID');
       my $udom = $form->{'udom'};
       my @intdoms;
       my $internet_names = &Apache::lonnet::get_internet_names($lonhost);
       if (ref($internet_names) eq 'ARRAY') {
           @intdoms = @{$internet_names};
       }
       my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
       my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
       unless ($uint_dom ne '' && grep(/^\Q$uint_dom\E$/,@intdoms)) {
           my $machine_dom = &Apache::lonnet::host_domain($lonhost);
           my $hostname = &Apache::lonnet::hostname($lonhost);
           my $serverhomeID = &Apache::lonnet::get_server_homeID($hostname);
           my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
           my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
           my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
           my $loncaparev;
           if ($authhost eq 'no_account_on_host') {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom);
           } else {
               $loncaparev = &Apache::lonnet::get_server_loncaparev($machine_dom,$lonhost);
           }
           $canhost = &Apache::lonnet::can_host_session($udom,$lonhost,$loncaparev,
                                                        $udomdefaults{'remotesessions'},
                                                        $defdomdefaults{'hostedsessions'});
       }
       unless ($canhost) {
           if ($authhost eq 'no_account_on_host') {
               my $checkloginvia = 1;
               my ($login_host,$hostname) =
                   &Apache::lonnet::choose_server($udom,$checkloginvia);
               &Apache::loncommon::content_type($r,'text/html');
               $r->send_http_header;
               if ($login_host ne '') {
                   my $protocol = $Apache::lonnet::protocol{$login_host};
                   $protocol = 'http' if ($protocol ne 'https');
                   my $newurl = $protocol.'://'.$hostname.'/adm/createaccount';
                   $r->print(&Apache::loncommon::start_page('Create a user account in LON-CAPA').
                             '<h3>'.&mt('Account creation').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('You will be able to create one by logging into a LON-CAPA server within the [_1] domain.',$domdesc).'</p>'.
                             '<p>'.&mt('[_1]Log in[_2]','<a href="'.$newurl.'">','</a>').
                             &Apache::loncommon::end_page());
               } else {
                   $r->print(&Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                             '<h3>'.&mt('Account creation unavailable').'</h3>'.
                             &mt('You do not currently have a LON-CAPA account at this institution.').'<br />'.
                             '<p>'.&mt('Currently a LON-CAPA server is not available within the [_1] domain for you to log-in to, to create an account.',$domdesc).'</p>'.
                             &Apache::loncommon::end_page());
               }
           } else {
               &success($r,$form->{'uname'},$udom,$authhost,'noredirect',undef,
                        $form);
               my ($otherserver) = &Apache::lonnet::choose_server($udom);
               $r->internal_redirect('/adm/switchserver?otherserver='.$otherserver);
           }
       }
       return $canhost;
   }
   
   sub noswitch {
       my $result = &Apache::loncommon::start_page('Access to LON-CAPA unavailable').
                    '<h3>'.&mt('Session unavailable').'</h3>'.
                    &mt('This LON-CAPA server is unable to host your session.').'<br />'.
                    '<p>'.&mt('Currently no other LON-CAPA server is available to host your session either.').'</p>'.
                    &Apache::loncommon::end_page();
       return $result;
   }
   
   sub loginhelpdisplay {
       my ($authdomain) = @_;
       my $login_help = 1;
       my $lang = &Apache::lonlocal::current_language();
       if ($login_help) {
           my $dom = $authdomain;
           if ($dom eq '') {
               $dom = &Apache::lonnet::default_login_domain();
           }
           my %domconfhash = &Apache::loncommon::get_domainconf($dom);
           my $loginhelp_url;
           if ($lang) {
               $loginhelp_url = $domconfhash{$dom.'.login.helpurl_'.$lang};
               if ($loginhelp_url ne '') {
                   return $loginhelp_url;
               }
           }
           $loginhelp_url = $domconfhash{$dom.'.login.helpurl_nolang'};
           if ($loginhelp_url ne '') {
               return $loginhelp_url;
           } else {
               return '/adm/loginproblems.html';
           }
       }
       return;
   }
   
   1;
   __END__
   
   

Removed from v.1.122  
changed lines
  Added in v.1.144


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>