X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=bin%2Fsvc_acct.export;fp=bin%2Fsvc_acct.export;h=3ea444df9ebfce634c457dce000760dea881ceba;hp=e28de4aa79e59b1a0f8ca5627b848bfd338a29d8;hb=f3a66fc4b25eb9fcc74a9fea56c48a61a1eea012;hpb=04ccbc0a0d5a09a8522427bcb278fa1b96826d74 diff --git a/bin/svc_acct.export b/bin/svc_acct.export index e28de4aa7..3ea444df9 100755 --- a/bin/svc_acct.export +++ b/bin/svc_acct.export @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: svc_acct.export,v 1.29 2002-02-12 02:11:07 ivan Exp $ +# $Id: svc_acct.export,v 1.30 2002-02-12 18:37:43 ivan Exp $ # # Create and export password, radius and vpopmail password files: # passwd, passwd.adjunct, shadow, acp_passwd, acp_userinfo, acp_dialup @@ -289,7 +289,7 @@ foreach $svc_domain (sort {$a->domain cmp $b->domain} @svc_domain) { $username=$svc_acct->username . $svc_domain->domain; } elsif ($userpolicy =~ /^append domain$/) { $username=$svc_acct->username . $svc_domain->domain; - } elsif ($userpolicy =~ /^append @domain$/) { + } elsif ($userpolicy =~ /^append \@domain$/) { $username=$svc_acct->username . '@'. $svc_domain->domain; } else { die "Unknown policy in username_policy\n";