From 28c12d957fa1e4397154f66eb097c9639ced2b6d Mon Sep 17 00:00:00 2001 From: Stoiko Ivanov Date: Fri, 15 Nov 2019 11:41:16 +0100 Subject: [PATCH] Add ndr_on_block and before_queue options Generation of NDRs on block and before queue filtering are configured via 2 boolean flags and belong to the MailProxyOptions. Signed-off-by: Stoiko Ivanov --- js/MailProxyOptions.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/MailProxyOptions.js b/js/MailProxyOptions.js index eb080ec..975a5c6 100644 --- a/js/MailProxyOptions.js +++ b/js/MailProxyOptions.js @@ -69,6 +69,10 @@ Ext.define('PMG.MailProxyOptions', { { deleteEmpty: true, defaultValue: 'ESMTP Proxmox' }); /*jslint confusion: false*/ + me.add_boolean_row('ndr_on_block', gettext('Send NDR on Blocked E-Mails')); + + me.add_boolean_row('before_queue_filtering', gettext('Before Queue Filtering')); + var baseurl = '/config/mail'; me.selModel = Ext.create('Ext.selection.RowModel', {});