diff options
author | Justin DeVuyst <justin@devuyst.com> | 2017-03-20 16:17:56 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-01 11:48:48 -0400 |
commit | 0f9f314fa40adf66b672065f8f3477789c50ae56 (patch) | |
tree | e42cbcb8ccaf3445384c97eb38ee6e6324776572 /FS/bin | |
parent | e41036e2c2c9fa3c70e13d56ec4ffb8168de99cc (diff) |
Add configurable daily auto-disable for quotations. See RT#74665.
Diffstat (limited to 'FS/bin')
-rwxr-xr-x | FS/bin/freeside-daily | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index eb1a3e347..5276a2ff0 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -82,6 +82,10 @@ agent_email(%opt); use FS::Cron::send_subscribed qw(send_subscribed); send_subscribed(%opt); +#does nothing unless quotation_disable_after_days is set. +use FS::Cron::disable_quotation qw(disable_quotation); +disable_quotation(); + #clears out cacti imports & deletes select database cache files use FS::Cron::cleanup qw( cleanup cleanup_before_backup ); cleanup_before_backup(); |