To Override a Rule Score
- Navigate to Warden -> Rules -> Rule Scores -> Search for the name of the rule you want to edit then click the edit icon.
- Enter the new rule score. A score of 0 will disable the rule completely.
- Click the Submit button to save your settings.
Rule Scores
Note: If you only provide the first score then it's always used, no matter the configuration. If you pass four scores, SpamAssassin picks which one to apply based on which features are active for that scan. This allows rule authors tune scores depending on what SpamAssassin knows at runtime.
| First score | The Bayesian classifier and network tests are not in use. |
| Second Score | The Bayesian classifier is not in use, but the network tests are. |
| Third Score | The Bayesian classifier is in use, but network tests are not. |
| Fourth Score | The Bayesian classifier and network tests are both in use. (used most often) |

Using the Command Line Interface
See here for the full command line interface. Examples:
// set the score for a specific rule
warden --task=antispam:rules:rulescores --oper=score_edit --name='DCC' --score='3.25' --reload=yes
// disable a specific rule
warden --task=antispam:rules:rulescores --oper=score_edit --name='DCC' --score='0' --reload=yes