Files
emails/cli/crontab

11 lines
533 B
Plaintext
Raw Normal View History

2022-11-25 20:52:46 -03:00
# minutes hour day_of_month month day_of_week command
2023-06-12 21:14:07 -04:00
#0 2 * * 2-6 /app/bin/emails messages:grab >> /logs/messages.log
#0 3 * * 2-6 /app/bin/emails attachments:grab >> /logs/attachments.log
2023-06-09 00:54:34 -04:00
# Pending jobs every minute
2023-06-12 21:14:07 -04:00
* * * * * /app/bin/emails jobs:check >> /logs/jobs.log
2023-06-09 00:54:34 -04:00
# Check mailboxes for new emails every weekday
2023-06-12 21:14:07 -04:00
0 0 * * 2-6 /app/bin/emails mailboxes:check >> /logs/mailboxes.log
2023-06-09 00:54:34 -04:00
# Check attachments every weekday
2023-06-12 21:14:07 -04:00
0 1 * * 2-6 /app/bin/emails attachments:check >> /logs/attachments.log