diff options
author | stuebinm | 2024-12-06 17:30:18 +0100 |
---|---|---|
committer | stuebinm | 2024-12-06 17:30:18 +0100 |
commit | d49eeec2ee7ec0fc6ef1ae0e7a7bd21c246a516e (patch) | |
tree | 0b5af1f35689347fdf86fb368dfb7096e2be4ea3 /flora/services/monit.nix | |
parent | 26698aeffeeefe8d384032a836edb9dca741529b (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/monit.nix')
-rw-r--r-- | flora/services/monit.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/flora/services/monit.nix b/flora/services/monit.nix index 83436e7..19e7e88 100644 --- a/flora/services/monit.nix +++ b/flora/services/monit.nix @@ -16,15 +16,15 @@ if failed port 64738 of type tcp using ssl with expect "NixOS" then alert - check process postfix with pidfile /var/lib/postfix/queue/pid/master.pid - start program = "${pkgs.systemd}/bin/systemctl start postfix" - stop program = "${pkgs.systemd}/bin/systemctl stop postfix" - if failed port 25 protocol smtp for 5 cycles then restart - - check process dovecot with pidfile /var/run/dovecot2/master.pid - start program = "${pkgs.systemd}/bin/systemctl start dovecot2" - stop program = "${pkgs.systemd}/bin/systemctl stop dovecot2" - if failed host mail.stuebinm.eu port 993 type tcpssl sslauto protocol imap for 5 cycles then restart + # check process postfix with pidfile /var/lib/postfix/queue/pid/master.pid + # start program = "${pkgs.systemd}/bin/systemctl start postfix" + # stop program = "${pkgs.systemd}/bin/systemctl stop postfix" + # if failed port 25 protocol smtp for 5 cycles then restart + + # check process dovecot with pidfile /var/run/dovecot2/master.pid + # start program = "${pkgs.systemd}/bin/systemctl start dovecot2" + # stop program = "${pkgs.systemd}/bin/systemctl stop dovecot2" + # if failed host mail.stuebinm.eu port 993 type tcpssl sslauto protocol imap for 5 cycles then restart check host bahnhof.name with address bahnhof.name if failed port 443 with protocol https |