From: ivan Date: Sat, 29 Mar 2003 02:35:49 +0000 (+0000) Subject: trim leading @. off zones X-Git-Tag: freeside_1_4_1beta8~10^2~6 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=7c5c428f8f102c672dd18ff0c02aaee82f5753d4;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 ?