diff options
author | ivan <ivan> | 2003-10-07 05:50:04 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-10-07 05:50:04 +0000 |
commit | 972ef71fa13cf9a76cb6453a98ece950e1776f1a (patch) | |
tree | c5c81f71a12e6ed1831b4215d8debf7fd29f049b | |
parent | 4a22a31cd586fc6cff704294b4de39841b0bc86b (diff) |
add suspend and unsuspend hooks, don't try and set '*SUSPENDED*' passwords
-rw-r--r-- | FS/FS/part_export/communigate_pro.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm index 35c7fbf41..a9d9591ca 100644 --- a/FS/FS/part_export/communigate_pro.pm +++ b/FS/FS/part_export/communigate_pro.pm @@ -39,6 +39,8 @@ sub _export_replace { || $old->finger ne $new->finger || $old->quota ne $new->quota; + return '' if '*SUSPENDED* '. $old->_password eq $new->_password; + #my $err_or_queue = $self->communigate_pro_queue( $new->svcnum,'RenameAccount', # $old->email, $new->email ); #return $err_or_queue unless ref($err_or_queue); |