+15May01=======================================================================
+1. set/lockout now prevents any outgoing connection taking place.
14May01=======================================================================
1. fix problem with re-reading in db definitions for remote databases.
2. try to prevent situations where two can (semi) successfully login, probably
return (1, $self->msg('outconn', $call)) if grep {$_->{call} eq $call} @main::outstanding_connects;
return (1, $self->msg('conscript', $lccall)) unless -e "$main::root/connect/$lccall";
+my $user = DXUser->get($call);
+return (1, $self->msg('lockout', $call)) if $user->lockout;
+
my @out;
push @out, $self->msg('constart', $call);
ExtMsg::start_connect($call, "$main::root/connect/$lccall");