New Feature >>rejectSender<<
Authored by tokudan
This commit is contained in:
parent
28cff2497a
commit
acd65c0803
2 changed files with 26 additions and 3 deletions
10
default.nix
10
default.nix
|
@ -166,6 +166,16 @@ in
|
|||
default = {};
|
||||
};
|
||||
|
||||
rejectSender = mkOption {
|
||||
type = types.listOf types.str;
|
||||
example = [ "@example.com" "spammer@example.net" ];
|
||||
description = ''
|
||||
Reject emails from these addresses from unauthorized senders.
|
||||
Use if a spammer is using the same domain or the same sender over and over.
|
||||
'';
|
||||
default = [];
|
||||
};
|
||||
|
||||
rejectRecipients = mkOption {
|
||||
type = types.listOf types.str;
|
||||
example = [ "sales@example.com" "info@example.com" ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue