email: add facility for email aliases
Also update the notmuch and alot modules to include support for email aliases.
This commit is contained in:
parent
30a16e3a87
commit
a6f0fa90f7
3 changed files with 13 additions and 1 deletions
|
|
@ -207,6 +207,13 @@ let
|
|||
description = "The email address of this account.";
|
||||
};
|
||||
|
||||
aliases = mkOption {
|
||||
type = types.listOf (types.strMatching ".*@.*");
|
||||
default = [];
|
||||
example = [ "webmaster@example.org" "admin@example.org" ];
|
||||
description = "Alternative email addresses of this account.";
|
||||
};
|
||||
|
||||
realName = mkOption {
|
||||
type = types.str;
|
||||
example = "Jane Doe";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue