Small mailserver changes
This commit is contained in:
parent
e8b4001340
commit
4a18eccddd
2 changed files with 5 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
options.system.mailserver.enable = lib.mkEnableOption "Enable Simple NixOS Mailserver";
|
||||
|
||||
imports = [
|
||||
./simplenix
|
||||
./roundcube
|
||||
./simplenix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ mailserver, config, pkgs, ... }:
|
||||
{ config, pkgs, mailserver, ... }:
|
||||
{
|
||||
imports = [
|
||||
./nginx
|
||||
|
@ -24,6 +24,7 @@
|
|||
hashedPasswordFile = pkgs.writeText "noreply" config.secrets.noreplyMailHash;
|
||||
sendOnly = true;
|
||||
};
|
||||
|
||||
"jimbo@nixfox.ca" = {
|
||||
hashedPasswordFile = pkgs.writeText "jimbo" config.secrets.jimboMailHash;
|
||||
aliases = [
|
||||
|
@ -37,6 +38,7 @@
|
|||
"contact@nixfox.ca"
|
||||
];
|
||||
};
|
||||
|
||||
"luna@lunamoonlight.xyz" = {
|
||||
hashedPasswordFile = pkgs.writeText "luna" config.secrets.lunaMailHash;
|
||||
aliases = [
|
||||
|
@ -45,6 +47,7 @@
|
|||
"ibu@bloxelcom.net"
|
||||
];
|
||||
};
|
||||
|
||||
"contact@freecorn1854.win" = {
|
||||
hashedPasswordFile = pkgs.writeText "corn" config.secrets.cornMailHash;
|
||||
aliases = [ "freecorn@bloxelcom.net" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue