From: ivan Date: Sat, 29 Mar 2003 02:35:22 +0000 (+0000) Subject: trim leading @. off zones X-Git-Tag: freeside_1_4_1beta8~14 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=0ac23bce2a57b22a9326488ce1e41e17d51aef1e;p=freeside.git trim leading @. off zones --- diff --git a/FS/FS/part_export/www_shellcommands.pm b/FS/FS/part_export/www_shellcommands.pm index e5b95dc1f..b3bfdfeff 100644 --- a/FS/FS/part_export/www_shellcommands.pm +++ b/FS/FS/part_export/www_shellcommands.pm @@ -30,9 +30,12 @@ sub _export_command { } my $domain_record = $svc_www->domain_record; # or die ? my $zone = $domain_record->reczone; # or die ? - unless ( $zone =~ /\.$/ ) { + if ( $zone =~ /\.$/ ) { + $zone =~ s/\.$//; + } else { my $svc_domain = $domain_record->svc_domain; # or die ? $zone .= '.'. $svc_domain->domain; + $zone =~ s/^\@\.//; } my $svc_acct = $svc_www->svc_acct; # or die ?