feat: init
This commit is contained in:
commit
8cfede9f57
28 changed files with 2129 additions and 0 deletions
15
modules/wiki-primary/postfix.nix
Normal file
15
modules/wiki-primary/postfix.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
services.postfix = {
|
||||
enable = true;
|
||||
hostname = "wiki.noisebridge.net";
|
||||
origin = "noisebridge.net";
|
||||
relayHost = "m3"; # Tailscale hostname for existing Noisebridge mail server
|
||||
destination = []; # Don't accept mail for local delivery
|
||||
networks = [ "127.0.0.0/8" "[::1]/128" ];
|
||||
config = {
|
||||
inet_interfaces = "loopback-only";
|
||||
smtp_tls_security_level = "may";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue