This commit is contained in:
Till 2025-05-03 22:10:55 +02:00
parent 99394cb573
commit bed6aaca07
7 changed files with 101 additions and 86 deletions

View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
services.roundcube = {
enable = true;
hostName = "webmail.ktiu.net";
extraConfig = ''
$config['smtp_host'] = 'tls://%h';
$config['smtp_conn_options'] = [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
],
];
'';
};
}