Skip to content
This repository was archived by the owner on May 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/about/comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ title: Comparison
</tr>
<tr>
<td>Pyzor</td>
<td><span class="fa-solid fa-lg fa-xmark icon-red"></span></td>
<td><span class="fa-solid fa-lg fa-xmark icon-green"></span></td>
<td><span class="fa-solid fa-lg fa-check icon-green"></span></td>
<td><span class="fa-solid fa-lg fa-xmark icon-red"></span></td>
</tr>
Expand Down
34 changes: 34 additions & 0 deletions doc/modules/external_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,25 @@ pyzor {
}
~~~

And add a default score:

~~~hcl
# local.d/external_services_group.conf

description = "External services";

symbols = {
...
"PYZOR" {
# The base score for a spam mail
weight = 2.0;
description = "Detected as spam by pyzor";
}
}
~~~

Note that the score set here will be scaled up or down by the Pyzor Lua script depending on the weight of spam and ham scores.

Restart rspamd `systemctl restart rspamd`

Add the systemd socket and service:
Expand Down Expand Up @@ -551,6 +570,21 @@ razor {
}
~~~

And set a default score for mails which are detected as spam by Razor:

~~~hcl
# local.d/external_services_group.conf

description = "External services";

symbols = {
...
"RAZOR" {
weight = 4.0;
description = "Detected as spam by Vipul's Razor";
}
~~~

Restart rspamd `systemctl restart rspamd`

Add the systemd socket and service:
Expand Down