omniflake/system/web-server/mail/roundcube.nix
2025-05-03 22:10:55 +02:00

17 lines
333 B
Nix

{ 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,
],
];
'';
};
}