Skip to content

Commit

Permalink
listmonk: update SMTP setup
Browse files Browse the repository at this point in the history
  • Loading branch information
liske committed Jan 21, 2024
1 parent e074bdd commit 35cc95b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions modules/management/listmonk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
smtp = [
{
enabled = true;
host = "smtp.migadu.com";
port = 465;
tls_type = "TLS";
idle_timeout = "1s";
wait_timeout = "1s";
host = "smtp.dd-ix.net";
port = 25;
tls_type = "none";
idle_timeout = "5s";
wait_timeout = "5s";
email_headers = [ ];
}
];
Expand Down
3 changes: 2 additions & 1 deletion modules/management/postfix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ let
];

# enable virtual aliases for those domains
virtual_alias_domains = "cloud.dd-ix.net";
virtual_alias_domains = "cloud.dd-ix.net lists.dd-ix.net";

# virtual alias map for $virtual_alias_domains
virtual_alias_map =
''
[email protected] [email protected]
[email protected] [email protected]
'';
in
{
Expand Down

0 comments on commit 35cc95b

Please sign in to comment.