fix(windows): disable outlook popup and enforce smtp-only email monitoring

This commit is contained in:
igor04091968
2026-05-11 20:46:39 +03:00
parent 24dd5ae2b4
commit e0561bf865
28 changed files with 2025 additions and 22 deletions
+28
View File
@@ -0,0 +1,28 @@
# Log rotation for ActivityWatch services
# Place in /etc/logrotate.d/
/var/log/activitywatch/*.log {
daily
missingok
rotate 30
compress
delaycompress
notifempty
create 644 activitywatch activitywatch
postrotate
systemctl reload activitywatch-server >/dev/null 2>&1 || true
systemctl reload aw-worktime-api >/dev/null 2>&1 || true
endscript
}
/var/log/journal/*activitywatch*.journal {
daily
missingok
rotate 7
compress
delaycompress
notifempty
postrotate
systemctl restart systemd-journald >/dev/null 2>&1 || true
endscript
}