X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fforward_shellcommands.pm;h=cee24e4528710b3b4de3d107f871ff24eff7b5fd;hb=929f432c766bbe3bdeed5b80818a12ddf6ec6339;hp=6908214d5cebcbc01f29acca2a8718b12ddf2381;hpb=dabdf357484badff95afcae50b08ec1c3bb58343;p=freeside.git diff --git a/FS/FS/part_export/forward_shellcommands.pm b/FS/FS/part_export/forward_shellcommands.pm index 6908214d5..cee24e452 100644 --- a/FS/FS/part_export/forward_shellcommands.pm +++ b/FS/FS/part_export/forward_shellcommands.pm @@ -35,12 +35,19 @@ Run remote commands via SSH, for forwards. You will need to this.form.userdel.value = "rm /home/vpopmail/domains/$domain/$username/.qmail"; this.form.usermod.value = "mv /home/vpopmail/domains/$old_domain/$old_username/.qmail /home/vpopmail/domains/$new_domain/$new_username; [ \"$old_destination\" != \"$new_destination\" ] && { echo \"$new_destination\" > /home/vpopmail/domains/$new_domain/$new_username/.qmail; chown vpopmail:vchkpw /home/vpopmail/domains/$new_domain/$new_username/.qmail; }"; '> +
  • + The following variables are available for interpolation (prefixed with new_ or old_ for replace operations): @@ -62,6 +69,7 @@ sub _export_delete { sub _export_command { my ( $self, $action, $svc_forward ) = (shift, shift, shift); my $command = $self->option($action); + return '' if $command =~ /^\s*$/; #set variable for the command no strict 'vars'; @@ -70,10 +78,17 @@ sub _export_command { ${$_} = $svc_forward->getfield($_) foreach $svc_forward->fields; } - my $svc_acct = $svc_forward->srcsvc_acct; - $username = $svc_acct->username; - $domain = $svc_acct->domain; - if ($svc_forward->dstsvc_acct) { + if ( $svc_forward->srcsvc ) { + my $srcsvc_acct = $svc_forward->srcsvc_acct; + $username = $srcsvc_acct->username; + $domain = $srcsvc_acct->domain; + $source = $srcsvc_acct->email; + } else { + $source = $svc_forward->src; + ( $username, $domain ) = split(/\@/, $source); + } + + if ($svc_forward->dstsvc) { $destination = $svc_forward->dstsvc_acct->email; } else { $destination = $svc_forward->dst; @@ -100,19 +115,33 @@ sub _export_replace { ${"new_$_"} = $new->getfield($_) foreach $new->fields; } - my $old_svc_acct = $old->srcsvc_acct; - $old_username = $old_svc_acct->username; - $old_domain = $old_svc_acct->domain; - if ($old->dstsvc_acct) { + if ( $old->srcsvc ) { + my $srcsvc_acct = $old->srcsvc_acct; + $old_username = $srcsvc_acct->username; + $old_domain = $srcsvc_acct->domain; + $old_source = $srcsvc_acct->email; + } else { + $old_source = $old->src; + ( $old_username, $old_domain ) = split(/\@/, $old_source); + } + + if ( $old->dstsvc ) { $old_destination = $old->dstsvc_acct->email; } else { $old_destination = $old->dst; } - my $new_svc_acct = $new->srcsvc_acct; - $new_username = $new_svc_acct->username; - $new_domain = $new_svc_acct->domain; - if ($new->dstsvc) { + if ( $new->srcsvc ) { + my $srcsvc_acct = $new->srcsvc_acct; + $new_username = $srcsvc_acct->username; + $new_domain = $srcsvc_acct->domain; + $new_source = $srcsvc_acct->email; + } else { + $new_source = $new->src; + ( $new_username, $new_domain ) = split(/\@/, $new_source); + } + + if ( $new->dstsvc ) { $new_destination = $new->dstsvc_acct->email; } else { $new_destination = $new->dst;