Updated documentation and examples for allowlists.

This commit is contained in:
Justin Warren 2023-01-22 13:03:32 +11:00
parent c018ebdf35
commit abc53c9148
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View File

@ -41,6 +41,8 @@ appropriate.
- Provides (hopefully) sensible defaults to minimise first-time setup.
- Global and fine-grained configuration options available for those complex situations that crop up sometimes.
- Allowlists to override blocks in blocklists to ensure you never block instances you want to keep.
- Blocklist thresholds if you want to only block when an instance shows up in multiple blocklists.
## Installing

View File

@ -1,3 +1,4 @@
"domain","severity","private_comment","public_comment","reject_media","reject_reports","obfuscate"
"eigenmagic.net","noop","Never block me","Only the domain field matters",False,False,False
"example.org","noop","Never block me either","The severity is ignored as are all other fields",False,False,False
"eigenmagic.net","noop","Never block me","Only the domain field matters for allowlists",False,False,False
"example.org","noop","Never block me either","The severity is ignored in allowlists as are all other fields",False,False,False
"demo01.example.org","noop","Never block me either","But you can use them to leave yourself or others notes on why the item is here",False,False,False

1 domain severity private_comment public_comment reject_media reject_reports obfuscate
2 eigenmagic.net noop Never block me Only the domain field matters Only the domain field matters for allowlists False False False
3 example.org noop Never block me either The severity is ignored as are all other fields The severity is ignored in allowlists as are all other fields False False False
4 demo01.example.org noop Never block me either But you can use them to leave yourself or others notes on why the item is here False False False