Fix example for rejectSender

A domain prepended with an at sign does not work to reject senders on
domain level. Thus misleading documentation is fixed by removing it.
This commit is contained in:
lennart 2024-12-20 00:15:57 +01:00
parent c43d8c4a3c
commit 26a56d0a8f

View File

@ -506,7 +506,7 @@ in
rejectSender = mkOption { rejectSender = mkOption {
type = types.listOf types.str; type = types.listOf types.str;
example = [ "@example.com" "spammer@example.net" ]; example = [ "example.com" "spammer@example.net" ];
description = '' description = ''
Reject emails from these addresses from unauthorized senders. Reject emails from these addresses from unauthorized senders.
Use if a spammer is using the same domain or the same sender over and over. Use if a spammer is using the same domain or the same sender over and over.