/[docman]/adduser.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /adduser.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations)
Wed Jun 20 07:57:32 2001 UTC (22 years, 9 months ago) by dpavlin
Branch: MAIN
Changes since 1.2: +1 -1 lines
File MIME type: text/plain
bug fix: md5 hash of password

1 #!/usr/bin/perl -w
2
3 # perl script to add users to Document Manager's .htusers file
4
5 use Digest::MD5 qw(md5_hex);
6
7 my $htpasswd = shift @ARGV || ".htusers";
8
9 my $login = shift @ARGV;
10 while (! $login) {
11 print "login: ";
12 $login=<STDIN>; chomp $login;
13 }
14
15 my $fullname = shift @ARGV;
16 while (! $fullname) {
17 print "full name: ";
18 $fullname=<STDIN>; chomp $fullname;
19 }
20
21 my $passwd = shift @ARGV;
22 if (! $passwd) {
23 print "password [auth_pop3]: ";
24 $passwd=<STDIN>; chomp $passwd;
25 if ($passwd eq "") {
26 $passwd="auth_pop3";
27 }
28 }
29 if (substr($passwd,0,5) ne "auth_") {
30 $passwd=md5_hex($login.$passwd);
31 }
32
33 my $email = shift @ARGV;
34 while (! $email || $email !~ /\w@\w/) {
35 print "e-mail: ";
36 $email=<STDIN>; chomp $email;
37 print "e-mail address needs to have user\@domain for auth_pop3",
38 " to work!\n" if ($email !~ /\w@\w/);
39 }
40
41 if (! -e "$htpasswd") {
42 print "creating $htpasswd\n";
43 open(HTPASSWD,"> $htpasswd") || die "open $htpasswd: $!";
44 } else {
45 open(HTPASSWD,">> $htpasswd") || die "append $htpasswd: $!";
46 }
47
48 print HTPASSWD "$login:$fullname:$passwd:$email\n";
49 close(HTPASSWD);

  ViewVC Help
Powered by ViewVC 1.1.26