hack: restart dovecot from time to time

This commit is contained in:
root 2024-08-30 22:04:35 +02:00
parent 8218423cfd
commit 5ba24ad7c3

View file

@ -37,4 +37,12 @@
]; ];
group = config.services.dovecot2.group; group = config.services.dovecot2.group;
}; };
# XXX *shrug*
services.cron = {
enable = true;
systemCronJobs = [
"0 2 * * * root systemctl restart dovecot2.service"
];
};
} }