summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorsteve <steve>2002-12-23 15:05:10 +0000
committersteve <steve>2002-12-23 15:05:10 +0000
commit21771a118aaf154f605cfae05ee830eaeb4dd818 (patch)
tree9a4342b97ab0e4fdb04ab699f19e4cfc99c8d143 /FS
parentb47b05fdc4af937a2df1a3b4017f550183814efc (diff)
add email address to shellcommands
don't error out when importing unaudited accounts (even though should probably be using $FS::svc_Common::noexport_hack anyway)
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_export/shellcommands.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm
index 04e5041c3..dbd4017f8 100644
--- a/FS/FS/part_export/shellcommands.pm
+++ b/FS/FS/part_export/shellcommands.pm
@@ -34,17 +34,27 @@ sub _export_command {
my ( $self, $action, $svc_acct) = (shift, shift, shift);
my $command = $self->option($action);
my $stdin = $self->option($action."_stdin");
+
no strict 'vars';
{
no strict 'refs';
${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields;
}
+
+ my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
+ if ( $cust_pkg ) {
+ $email = ( grep { $_ ne 'POST' } $cust_pkg->cust_main->invoicing_list )[0];
+ } else {
+ $email = '';
+ }
+
$finger = shell_quote $finger;
$quoted_password = shell_quote $_password;
$domain = $svc_acct->domain;
$crypt_password = ''; #surpress "used only once" warnings
$crypt_password = crypt( $svc_acct->_password,
$saltset[int(rand(64))].$saltset[int(rand(64))] );
+
$self->shellcommands_queue( $svc_acct->svcnum,
user => $self->option('user')||'root',
host => $self->machine,