Skip to content

Commit

Permalink
Merge pull request #2256 from gethvi/fix-sieve-docs
Browse files Browse the repository at this point in the history
DOCS: Updates documentation for sieve expert bot.
  • Loading branch information
sebix committed Nov 9, 2022
2 parents 39386da + 3239df8 commit 122e3a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -115,8 +115,10 @@ CHANGELOG
- Feeds: Add documentation for newly supported dataplane feeds, see above (PR#2102 by Mikk Margus Möll).
- Installation: Restructured the whole document to make it clearer and straight-forward (PR#2113 by Sebastian Wagner).
- Add workaround for https://github.com/sphinx-doc/sphinx/issues/10701 (PR#2225 by Sebastian Wagner, kudos @yarikoptic, fixes #2224).
- Fix wrong operator for list-contains-value operation in sieve expert documentation (PR#2256 by Filip Pokorný).

### Packaging
- Remove deleted `intelmq.bots.experts.sieve.validator` from executables in `setup.py` (PR#2256 by Filip Pokorný).

### Tests
- Add GitHub Action to run regexploit on all Python, JSON and YAML files (PR#2059 by Sebastian Wagner).
Expand Down
2 changes: 1 addition & 1 deletion docs/user/bots.rst
Expand Up @@ -2894,7 +2894,7 @@ format:
path 'other-path' // the message is sent to the given path
}
if classification.type == ['phishing', 'malware-distribution'] && source.fqdn =~ '.*\.(ch|li)$' {
if classification.type :in ['phishing', 'malware-distribution'] && source.fqdn =~ '.*\.(ch|li)$' {
add! comment = 'domainabuse'
keep
} elif classification.type == 'scanner' {
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -90,7 +90,6 @@
'intelmqctl = intelmq.bin.intelmqctl:main',
'intelmqdump = intelmq.bin.intelmqdump:main',
'intelmq_psql_initdb = intelmq.bin.intelmq_psql_initdb:main',
'intelmq.bots.experts.sieve.validator = intelmq.bots.experts.sieve.validator:main',
'intelmqsetup = intelmq.bin.intelmqsetup:main',
] + BOTS,
},
Expand Down

0 comments on commit 122e3a3

Please sign in to comment.