-
-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implementation start of rspam/antispam feature
Signed-off-by: Michael Kaufmann <[email protected]>
- Loading branch information
Showing
59 changed files
with
1,736 additions
and
862 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of the Froxlor project. | ||
* Copyright (c) 2010 the Froxlor Team (see authors). | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version 2 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, you can also view it online at | ||
* https://files.froxlor.org/misc/COPYING.txt | ||
* | ||
* @copyright the authors | ||
* @author Froxlor team <[email protected]> | ||
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2 | ||
*/ | ||
|
||
return [ | ||
'groups' => [ | ||
'antispam' => [ | ||
'title' => lng('admin.antispam_settings'), | ||
'icon' => 'fa-solid fa-clipboard-check', | ||
'fields' => [ | ||
'antispam_activated' => [ | ||
'label' => lng('antispam.activated'), | ||
'settinggroup' => 'antispam', | ||
'varname' => 'activated', | ||
'type' => 'checkbox', | ||
'default' => true, | ||
'overview_option' => true, | ||
'save_method' => 'storeSettingFieldInsertAntispamTask', | ||
], | ||
'antispam_config_file' => [ | ||
'label' => lng('antispam.config_file'), | ||
'settinggroup' => 'antispam', | ||
'varname' => 'config_file', | ||
'type' => 'text', | ||
'string_type' => 'file', | ||
'default' => '/etc/rspamd/local.d/froxlor_settings.conf', | ||
'save_method' => 'storeSettingFieldInsertAntispamTask', | ||
'requires_reconf' => ['antispam'] | ||
], | ||
'antispam_reload_command' => [ | ||
'label' => lng('antispam.reload_command'), | ||
'settinggroup' => 'antispam', | ||
'varname' => 'reload_command', | ||
'type' => 'text', | ||
'string_regexp' => '/^[a-z0-9\/\._\- ]+$/i', | ||
'default' => 'service rspamd restart', | ||
'save_method' => 'storeSettingField', | ||
'required_otp' => true | ||
], | ||
'antispam_dkim_keylength' => [ | ||
'label' => lng('antispam.dkim_keylength'), | ||
'settinggroup' => 'antispam', | ||
'varname' => 'dkim_keylength', | ||
'type' => 'select', | ||
'default' => '1024', | ||
'select_var' => [ | ||
'1024' => '1024 Bit', | ||
'2048' => '2048 Bit' | ||
], | ||
'save_method' => 'storeSettingFieldInsertBindTask', | ||
'advanced_mode' => true, | ||
], | ||
'spf_use_spf' => [ | ||
'label' => lng('spf.use_spf'), | ||
'settinggroup' => 'spf', | ||
'varname' => 'use_spf', | ||
'type' => 'checkbox', | ||
'default' => false, | ||
'save_method' => 'storeSettingField', | ||
], | ||
'spf_spf_entry' => [ | ||
'label' => lng('spf.spf_entry'), | ||
'settinggroup' => 'spf', | ||
'varname' => 'spf_entry', | ||
'type' => 'text', | ||
'string_regexp' => '/^v=spf[a-z0-9:~?\s.-]+$/i', | ||
'default' => 'v=spf1 a mx -all', | ||
'save_method' => 'storeSettingField' | ||
], | ||
'dmarc_use_dmarc' => [ | ||
'label' => lng('dmarc.use_dmarc'), | ||
'settinggroup' => 'dmarc', | ||
'varname' => 'use_dmarc', | ||
'type' => 'checkbox', | ||
'default' => false, | ||
'save_method' => 'storeSettingField', | ||
], | ||
'dmarc_dmarc_entry' => [ | ||
'label' => lng('dmarc.dmarc_entry'), | ||
'settinggroup' => 'dmarc', | ||
'varname' => 'dmarc_entry', | ||
'type' => 'text', | ||
'string_regexp' => '/^v=dmarc1(.+)$/i', | ||
'default' => 'v=DMARC1; p=none;', | ||
'save_method' => 'storeSettingField' | ||
] | ||
] | ||
] | ||
] | ||
]; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.