aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/lua/whitelist.lua
Commit message (Collapse)AuthorAgeFilesLines
* [Minor] Reformat all Lua code, no functional changesVsevolod Stakhov2023-08-071-38/+41
|
* [Minor] Update more copyright years/emailVsevolod Stakhov2022-03-271-1/+1
|
* Spelling (#4086)Josh Soref2022-02-221-1/+1
| | | [Rework] Massive spelling fix from @jsoref
* [Minor] Use standard utility to get check_local/authedVsevolod Stakhov2020-09-041-18/+4
|
* [Minor] Add some more scoresVsevolod Stakhov2020-06-151-2/+4
|
* [Minor] Fix domain checkVsevolod Stakhov2019-12-121-1/+1
|
* Revert "[Fix] Fix empty prefilters that require mime structures"Vsevolod Stakhov2019-10-141-3/+3
| | | | This reverts commit c3c8d4d13302095c558e74f233269a3277de91c3.
* [Fix] Fix empty prefilters that require mime structuresVsevolod Stakhov2019-10-131-3/+3
|
* [CritFix] Fix whitelisting when both spf and dkim are required to be validVsevolod Stakhov2019-09-031-6/+15
|
* [Minor] Pet luacheckVsevolod Stakhov2019-05-051-6/+6
|
* [Fix] Do not blacklist mail by SPF/DMARC for local/authed usersVsevolod Stakhov2019-05-041-3/+34
| | | | Issue: #2871
* [Fix] Use tld when looking for DKIM domainsVsevolod Stakhov2018-11-261-2/+4
| | | | Issue: #2646
* [Minor] Remove stupid debuggingVsevolod Stakhov2018-10-121-4/+0
|
* [Rework] Rework and fix whitelist pluginVsevolod Stakhov2018-10-011-65/+150
|
* [Minor] Fix scoring for the blacklist rulesVsevolod Stakhov2018-09-291-3/+3
|
* [Minor] Fix blacklist option in whitelist rulesVsevolod Stakhov2018-09-291-4/+7
|
* [Minor] Fix symbol registrationVsevolod Stakhov2018-09-291-1/+1
|
* [Feature] Extend whitelisting optionsVsevolod Stakhov2018-09-291-38/+60
|
* support for non-TLD domainsAndrey Igoshin2018-09-211-0/+3
|
* support for non-TLD domainsAndrey Igoshin2018-06-241-0/+3
|
* [Minor] Silence warningsVsevolod Stakhov2018-03-151-1/+1
|
* [Project] Encourage dependencies registration by name onlyVsevolod Stakhov2018-03-151-5/+5
|
* [Feature] Store plugins stateVsevolod Stakhov2017-12-031-0/+5
|
* [Fix] Fix blacklists and DMARC in whitelistVsevolod Stakhov2017-09-041-18/+30
| | | | Issue: #1824
* [Fix] Don't use whitelist/greylist maps as regexp, but as mapJean-Louis Dupond2017-07-171-2/+2
| | | | | | | | | In whitelist & greylist module, the domain files (like spf_dkim_whitelist.inc, etc) were read as regexp map. This caused the following false whitelists: WHITELIST_SPF_DKIM(-3)[onmicrosoft.com] this while only 'microsoft.com' was in the list! Reading the maps as 'map'/'hash' instead of 'regexp' fixes the issue.
* [Fix] Detect confighelp in plugins initialisationVsevolod Stakhov2017-04-221-0/+4
|
* [Fix] Fix lists in whitelist pluginVsevolod Stakhov2017-03-211-30/+41
|
* [Minor] Fix testsAndrew Lewis2017-03-131-1/+3
|
* [Fix] Deal with lists of maps in whitelist moduleAndrew Lewis2017-03-131-4/+25
|
* [Minor] Avoid some table lookups in Lua partsAndrew Lewis2016-12-151-2/+4
|
* [Minor] Lint Lua plugins & global functionsAndrew Lewis2016-11-141-14/+0
|
* [Minor] Remove more globalsAndrew Lewis2016-11-041-4/+4
|
* Revert "[Feature] Add common way to disable Lua modules"Andrew Lewis2016-09-051-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f552edd887794a5086dcf93d36f8f82d83553196. Conflicts: src/plugins/lua/antivirus.lua src/plugins/lua/asn.lua src/plugins/lua/dcc.lua src/plugins/lua/dmarc.lua src/plugins/lua/emails.lua src/plugins/lua/forged_recipients.lua src/plugins/lua/greylist.lua src/plugins/lua/hfilter.lua src/plugins/lua/ip_score.lua src/plugins/lua/maillist.lua src/plugins/lua/mime_types.lua src/plugins/lua/multimap.lua src/plugins/lua/once_received.lua src/plugins/lua/ratelimit.lua src/plugins/lua/rbl.lua src/plugins/lua/replies.lua src/plugins/lua/rspamd_update.lua src/plugins/lua/trie.lua src/plugins/lua/whitelist.lua
* [Minor] Use infox instead of info in loggingVsevolod Stakhov2016-09-041-2/+2
|
* [Feature] Add common way to disable Lua modulesAndrew Lewis2016-09-011-0/+7
|
* [Feature] Add 'blacklist' and 'strict' modes for whitelistsVsevolod Stakhov2016-05-291-5/+46
|
* [Feature] Use new version of register_symbol in rspamd pluginsVsevolod Stakhov2016-04-221-2/+5
|
* [Minor] Fix iteratorAndrew Lewis2016-04-011-1/+1
|
* [Feature] Rework whitelist moduleVsevolod Stakhov2016-04-011-48/+76
| | | | | | | - Now we check different elements for different checks - MIME from for DMARC - DKIM signature domain for DKIM - SMTP from or HELO for SPF
* Use has symbol when no need to get extra data for a symbolVsevolod Stakhov2016-02-081-2/+2
|
* Drop unneeded `require`Andrew Lewis2016-02-051-1/+0
|
* Switch the rest to apache 2Vsevolod Stakhov2016-02-041-22/+12
|
* Do not parse URLs for getting TLD in luaVsevolod Stakhov2015-12-211-6/+3
|
* Add descriptions for whitelist maps.Vsevolod Stakhov2015-09-231-1/+2
|
* Check DKIM domain when whitelisting by DKIM signature.Vsevolod Stakhov2015-09-171-4/+21
|
* Use tld for whitelisting.Vsevolod Stakhov2015-09-161-7/+2
|
* Fix wrongly placed g_string_free.Vsevolod Stakhov2015-09-161-0/+11
|
* Allow optional multiplier for whitelists.Vsevolod Stakhov2015-09-161-5/+22
|
* Add initial version of the whitelist plugin.Vsevolod Stakhov2015-09-141-0/+153
|
* Remove broken whitelist module.Vsevolod Stakhov2014-12-081-86/+0
|