add ai mailer
This commit is contained in:
100
hosts/fw/modules/ai-mailer.nix
Normal file
100
hosts/fw/modules/ai-mailer.nix
Normal file
@@ -0,0 +1,100 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.ai-mailer = {
|
||||
isSystemUser = true;
|
||||
group = "ai-mailer";
|
||||
home = "/var/lib/ai-mailer";
|
||||
createHome = true;
|
||||
description = "AI Mailer service user";
|
||||
};
|
||||
users.groups.ai-mailer = { };
|
||||
|
||||
environment.etc."ai-mailer/config.yaml" = {
|
||||
mode = "0400";
|
||||
user = "ai-mailer";
|
||||
group = "ai-mailer";
|
||||
text = ''
|
||||
imap:
|
||||
server: "imap.cloonar.com"
|
||||
port: 993
|
||||
username: "paraclub-test@cloonar.com"
|
||||
password: "file://${config.sops.secrets.ai-mailer-imap-password.path}"
|
||||
mailbox_in: "INBOX"
|
||||
draft_box: "Drafts"
|
||||
processed_box: "INBOX/Done"
|
||||
use_tls: true
|
||||
|
||||
ai:
|
||||
openrouter_api_key: "file://${config.sops.secrets.ai-mailer-openrouter-key.path}"
|
||||
model: "deepseek/deepseek-r1-distill-llama-70b"
|
||||
temperature: 0.3
|
||||
max_tokens: 100000
|
||||
|
||||
context:
|
||||
urls:
|
||||
- "https://paraclub.cloonar.dev/de/"
|
||||
- "https://paraclub.cloonar.dev/de/tandemfallschirmspringen/alle-infos/"
|
||||
- "https://paraclub.cloonar.dev/de/tandemfallschirmspringen/kosten-tandemsprung/"
|
||||
- "https://paraclub.cloonar.dev/de/ueber-uns/anfahrt/"
|
||||
- "https://paraclub.cloonar.dev/de/tandemfallschirmspringen/faq/"
|
||||
- "https://paraclub.cloonar.dev/de/ausbildung/uebersicht/"
|
||||
- "https://paraclub.cloonar.dev/de/ausbildung/aff-ablauf/"
|
||||
- "https://paraclub.cloonar.dev/de/ausbildung/kurstermine/"
|
||||
- "https://paraclub.cloonar.dev/de/ausbildung/anmeldung/"
|
||||
- "https://paraclub.cloonar.dev/de/ausbildung/kosten/"
|
||||
|
||||
polling:
|
||||
interval: "30s"
|
||||
|
||||
logging:
|
||||
level: "info"
|
||||
file_path: "/var/log/ai-mailer.log"
|
||||
'';
|
||||
};
|
||||
|
||||
sops.secrets.ai-mailer-imap-password = {
|
||||
owner = "ai-mailer";
|
||||
};
|
||||
|
||||
sops.secrets.ai-mailer-openrouter-key = {
|
||||
owner = "ai-mailer";
|
||||
};
|
||||
|
||||
systemd.services.ai-mailer = {
|
||||
description = "AI Mail Assistant Service";
|
||||
after = [ "network-online.target" ];
|
||||
wants = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
User = "ai-mailer";
|
||||
Group = "ai-mailer";
|
||||
WorkingDirectory = "/var/lib/ai-mailer";
|
||||
ExecStart = "${pkgs.ai-mailer}/bin/paraclub-ai-mailer -config /etc/ai-mailer/config.yaml";
|
||||
Restart = "always";
|
||||
RestartSec = "10s";
|
||||
StateDirectory = "ai-mailer";
|
||||
LogsDirectory = "ai-mailer";
|
||||
RuntimeDirectory = "ai-mailer";
|
||||
|
||||
# Security settings
|
||||
NoNewPrivileges = true;
|
||||
ProtectSystem = "strict";
|
||||
ProtectHome = true;
|
||||
PrivateTmp = true;
|
||||
PrivateDevices = true;
|
||||
ProtectKernelTunables = true;
|
||||
ProtectKernelModules = true;
|
||||
ProtectControlGroups = true;
|
||||
RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ];
|
||||
RestrictNamespaces = true;
|
||||
LockPersonality = true;
|
||||
MemoryDenyWriteExecute = true;
|
||||
RestrictRealtime = true;
|
||||
RestrictSUIDSGID = true;
|
||||
CapabilityBoundingSet = "";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
{
|
||||
services.ddclient = {
|
||||
enable = true;
|
||||
use = "if, if=wan";
|
||||
usev4 = "if, if=wan";
|
||||
protocol = "hetzner";
|
||||
# server = "https://dns.hetzner.com/api/v1/";
|
||||
username = "dominik.polakovics@cloonar.com";
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
renew-timer = 1000;
|
||||
subnet4 = [
|
||||
{
|
||||
id = 96;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.96.100 - ${config.networkPrefix}.96.240";
|
||||
@@ -67,6 +68,7 @@
|
||||
|
||||
}
|
||||
{
|
||||
id = 97;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.97.100 - ${config.networkPrefix}.97.240";
|
||||
@@ -122,6 +124,7 @@
|
||||
];
|
||||
}
|
||||
{
|
||||
id = 101;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.101.100 - ${config.networkPrefix}.101.240";
|
||||
@@ -152,6 +155,7 @@
|
||||
];
|
||||
}
|
||||
{
|
||||
id = 99;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.99.100 - ${config.networkPrefix}.99.240";
|
||||
@@ -212,6 +216,7 @@
|
||||
];
|
||||
}
|
||||
{
|
||||
id = 254;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.254.10 - ${config.networkPrefix}.254.254";
|
||||
@@ -231,6 +236,7 @@
|
||||
];
|
||||
}
|
||||
{
|
||||
id = 100;
|
||||
pools = [
|
||||
{
|
||||
pool = "${config.networkPrefix}.100.100 - ${config.networkPrefix}.100.240";
|
||||
|
||||
@@ -97,6 +97,7 @@ in
|
||||
ALLOW_ONLY_EXTERNAL_REGISTRATION = true;
|
||||
SHOW_REGISTRATION_BUTTON = false;
|
||||
ENABLE_NOTIFY_MAIL = true;
|
||||
REQUIRE_SIGNIN_VIEW = false;
|
||||
};
|
||||
mailer = {
|
||||
ENABLED = true;
|
||||
|
||||
Reference in New Issue
Block a user