aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/by-name/pe/peertube/module.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/by-name/pe/peertube/module.nix b/modules/by-name/pe/peertube/module.nix
index 6cb4c2c..0e404d1 100644
--- a/modules/by-name/pe/peertube/module.nix
+++ b/modules/by-name/pe/peertube/module.nix
@@ -66,14 +66,12 @@ in {
smtp = let
emailAddress = "peertube@vhack.eu";
in {
- sendmail = "${pkgs.postfix}/bin/sendmail";
-
- transport = "sendmail";
+ transport = "smtp";
hostname = "server1.vhack.eu";
port = 587;
username = emailAddress;
- tls = true;
- disable_starttls = true;
+ tls = false;
+ disable_starttls = false;
from_address = emailAddress;
};
};