##
# debug
sub showdata {
my ($head,$data) = @_;
print qq( key $head \n);
foreach (sort keys %$data){
print qq( $_ $$data{$_} \n);
}
print q(
);
}
showdata("Unverified",\%dbm1);
showdata("Verified",\%dbm2);
####
# $dbm1{$form{'usermail'}} = "$accountID";
$dbm1{"$accountID"} = $form{'usermail'};