summaryrefslogtreecommitdiff
path: root/localuserinfo
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2007-02-07 13:10:50 +0000
committerJonas Smedegaard <dr@jones.dk>2007-02-07 13:10:50 +0000
commit24858533efe1c342031c7757289fa1b5dca47243 (patch)
tree135ac28c6ac0bd09f9fa0105215ee7f27984417b /localuserinfo
parentf3fc925e3ac2e8faac63a37d96f516642243e66a (diff)
Fix --mail and --fullname flags, and disable --mail per default.
Diffstat (limited to 'localuserinfo')
-rwxr-xr-xlocaluserinfo8
1 files changed, 4 insertions, 4 deletions
diff --git a/localuserinfo b/localuserinfo
index 1773802..a5dfee6 100755
--- a/localuserinfo
+++ b/localuserinfo
@@ -1,5 +1,5 @@
#!/usr/bin/perl -wT
-my $ID = q$Id: localuserinfo,v 1.5 2007-02-07 13:09:10 jonas Exp $;
+my $ID = q$Id: localuserinfo,v 1.6 2007-02-07 13:10:50 jonas Exp $;
#
# localuserinfo -- List fullname for each user
#
@@ -32,7 +32,7 @@ use User::grent;
our $verbose = 1; # should we be verbose?
my $ignore_badname = 0; # should we ignore bad names?
my $include_fullname = 1;
-my $include_mail = 1;
+my $include_mail = 0;
our $custom_string;
my $use_custom_string = 0;
@@ -78,8 +78,8 @@ while (my $username = shift @names) {
die "Use of custom string not yet implemented!";
} else {
my @output;
- push (@output, $fullname) if (defined($include_fullname));
- push (@output, "$username\@$maildomain") if (defined($include_mail));
+ push (@output, $fullname) if ($include_fullname);
+ push (@output, "$username\@$maildomain") if ($include_mail);
$string = join(' ', @output);
}