diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/send-comments | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/send-comments b/bin/send-comments index 55c9da62b..33da7379e 100755 --- a/bin/send-comments +++ b/bin/send-comments @@ -32,6 +32,7 @@ use constant SEND_METHOD_OPEN311 => 'Open311'; use constant COUNCIL_ID_OXFORDSHIRE => 2237; use constant COUNCIL_ID_BROMLEY => 2482; use constant COUNCIL_ID_LEWISHAM => 2492; +use constant COUNCIL_ID_BUCKS => 2217; # Set up site, language etc. my ($verbose, $nomail) = CronFns::options(); @@ -84,6 +85,10 @@ while ( my $body = $bodies->next ) { $open311_conf{use_customer_reference} = 1, } + if ( $body->areas->{+COUNCIL_ID_BUCKS} ) { + $open311_conf{mark_reopen} = 1; + } + if ( $body->send_extended_statuses ) { $open311_conf{extended_statuses} = 1; } |