From 1e9ae4ab4387c8d646476df989e2e92c15ce468d Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 2 Oct 2003 14:20:29 +0000 Subject: [PATCH] add emaildecline-exclude config option --- FS/FS/Conf.pm | 7 +++++++ FS/FS/cust_main.pm | 2 ++ 2 files changed, 9 insertions(+) diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 400de69d6..51feb3847 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -958,6 +958,13 @@ httemplate/docs/config.html }, { + 'key' => 'emaildecline-exclude', + 'section' => 'billing', + 'description' => 'List of error messages that should not trigger email decline notices, one per line.', + 'type' => 'textarea', + }, + + { 'key' => 'cancelmessage', 'section' => 'billing', 'description' => 'Template file for cancellation emails.', diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index de22ab5c5..2ee8a42f0 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -1774,6 +1774,8 @@ sub realtime_bop { if ( !$options{'quiet'} && !$realtime_bop_decline_quiet && $conf->exists('emaildecline') && grep { $_ ne 'POST' } $self->invoicing_list + && ! grep { $_ eq $transaction->error_message } + $conf->config('emaildecline-exclude') ) { my @templ = $conf->config('declinetemplate'); my $template = new Text::Template ( -- 2.11.0