Preliminary multi-domain support

This commit is contained in:
John Boehr 2017-11-09 13:13:27 -08:00
parent 3d2f41dedc
commit ebd0f656ed
No known key found for this signature in database
GPG key ID: 73B8EFB60708F699
6 changed files with 51 additions and 27 deletions

View file

@ -28,8 +28,14 @@ in
domain = mkOption {
type = types.str;
example = "example.com";
description = "The domain that this mail server serves. So far only one domain is supported";
example = "[ example.com ]";
description = "The primary domain that this mail server serves.";
};
extraDomains = mkOption {
type = types.listOf types.str;
example = "[ example.com ]";
description = "Extra domains that this mail server serves.";
};
hostPrefix = mkOption {