aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/lua/forged_recipients.lua
Commit message (Collapse)AuthorAgeFilesLines
* [Fix] Detect confighelp in plugins initialisationVsevolod Stakhov2017-04-221-0/+4
|
* [Minor] Avoid some table lookups in Lua partsAndrew Lewis2016-12-151-1/+3
|
* [Minor] Lint Lua plugins & global functionsAndrew Lewis2016-11-141-2/+1
|
* Merge pull request #928 from fatalbanana/derpVsevolod Stakhov2016-09-051-4/+0
|\ | | | | Revert useless commits
| * 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
* | [Feature] Relax FORGED_RECIPIENTS: allow senders to BCC themselvesAndrew Lewis2016-09-051-30/+37
|/
* [Minor] Use infox instead of info in loggingVsevolod Stakhov2016-09-041-1/+1
|
* [Feature] Add common way to disable Lua modulesAndrew Lewis2016-09-011-0/+4
|
* [Fix] Banish table.maxn from Lua partsAndrew Lewis2016-09-011-2/+2
|
* [Feature] Use new version of register_symbol in rspamd pluginsVsevolod Stakhov2016-04-221-64/+66
|
* Switch the rest to apache 2Vsevolod Stakhov2016-02-041-19/+9
|
* Add additional checks for mail addressesVsevolod Stakhov2015-11-261-2/+4
|
* Rework FORGED_RECIPIENTS for common usersVsevolod Stakhov2015-11-201-6/+11
|
* Do not add FORGED_RECIPIENTS when 'To' is missing.Vsevolod Stakhov2015-10-011-2/+2
| | | | Issue: #387
* Fix issues with bounces From processing.Vsevolod Stakhov2015-06-231-1/+1
|
* Fix lua plugins.Vsevolod Stakhov2015-05-281-3/+4
|
* Fix forged recipients plugin for the modern rspamd.Vsevolod Stakhov2015-05-131-14/+6
|
* Check smtp recipients before indexing.Vsevolod Stakhov2015-05-071-2/+3
|
* Clarify copyright for lua plugins.Vsevolod Stakhov2015-02-131-0/+26
|
* fix: attempt to index field '?' (a nil value)eneq1232015-02-121-1/+1
|
* Fix forged_recipients plugin.Vsevolod Stakhov2014-09-031-1/+0
|
* Fix plugins.Vsevolod Stakhov2014-08-181-4/+4
|
* Fix bug for check sender ruleAlexey2013-12-271-1/+1
|
* If message has no 'To/CC' headers do not try to count elements in nil table.Vsevolod Stakhov2011-12-071-1/+4
|
* * Add multimaps for "FROM" and "TO" headers (mime an smtp data can be checked)Vsevolod Stakhov2011-03-041-48/+5
| | | | * Improve lua api for getting message's sender and recipients
* * Improve forged_recipients plugin [1]Vsevolod Stakhov2011-02-161-3/+25
| | | | | | Add loading of local rules to rspamd.lua [1] [1] Suggested by Victor Ustugov
* * Add versions to lua APIVsevolod Stakhov2010-12-221-5/+17
| | | | * Provide compatibility for lua plugins for old versions of rspamd
* * Introduce new system of configuration checks:Vsevolod Stakhov2010-12-201-1/+4
| | | | | | | | - now symbols inside metrics definition must be inside rules as well - symbols may be virtual (e.g. when module can insert several symbols inside callback) - symbols may be pure callbacks (when symbol's name is unknown and depends on conditions) * Module 'emails' is removed as it is not used in the current rspamd MANY fixes to sample config files
* Add registering options for lua modulesVsevolod Stakhov2010-12-141-0/+4
| | | | * Add ability to output colored messages for file and console loggers
* * Consider lua plugins errors as fatal configuration errorsVsevolod Stakhov2010-08-041-2/+0
|
* * Change metric logicVsevolod Stakhov2010-06-161-9/+4
| | | | | | | * Completely remove lex/yacc readers for config * Make common sense of metric/action and symbols * Sync changes with all plugins TODO: add this to documentation
* * Remove utf8 usage in forged recipients pluginVsevolod Stakhov2009-10-201-1/+1
|
* * Small improvement of lua styleVsevolod Stakhov2009-10-171-1/+1
| | | | | * Add ibility to process A records in spf parser * Add recursion limit to spf parser
* * Trim brackets in forged recipients pluginVsevolod Stakhov2009-10-141-1/+5
|
* * Fix getting of message headers from lua pluginsVsevolod Stakhov2009-10-141-10/+21
| | | | * Fix forged recipients plugin
* * Add ability to register rspamd functions from LUAVsevolod Stakhov2009-10-131-0/+70
* Add ability to access recipients list and sender information * Add plugin for checking forged recipients and sender * Sync documentation