summaryrefslogtreecommitdiff
path: root/flora/services/ntfy.nix
diff options
context:
space:
mode:
authorstuebinm2024-12-06 17:30:18 +0100
committerstuebinm2024-12-06 17:30:18 +0100
commitd49eeec2ee7ec0fc6ef1ae0e7a7bd21c246a516e (patch)
tree0b5af1f35689347fdf86fb368dfb7096e2be4ea3 /flora/services/ntfy.nix
parent26698aeffeeefe8d384032a836edb9dca741529b (diff)
flora: replace mailserver with ntfy.sh
not sure how permanent this will be, but for now it allows me to do some things that would otherwise be hard.
Diffstat (limited to 'flora/services/ntfy.nix')
-rw-r--r--flora/services/ntfy.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flora/services/ntfy.nix b/flora/services/ntfy.nix
index aa46a39..25ae8f8 100644
--- a/flora/services/ntfy.nix
+++ b/flora/services/ntfy.nix
@@ -10,8 +10,8 @@
listen-unix = "/run/ntfy-sh/ntfy.sock";
listen-unix-mode = 511; ## lossy nix->yaml conversion eats octal literals (equal to 0777)
- smtp-server-listen = ":2525";
- smtp-server-domain = "ping.stuebinm.eu";
+ smtp-server-listen = ":25";
+ smtp-server-domain = "mail.stuebinm.eu";
auth-file = "/var/lib/ntfy-sh/user.db";
auth-default-access = "deny-all";
@@ -21,7 +21,7 @@
};
};
- networking.firewall.allowedTCPPorts = [ 2525 ];
+ networking.firewall.allowedTCPPorts = [ 25 ];
services.mollysocket = {
enable = true;