mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
6e4f6fe540
* Sanitize alias, contacts, mailboxes and users before creating them * Updated comments and moved crons to run when load is low * Run the stats at the same time as previously --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
71 lines
1.9 KiB
YAML
71 lines
1.9 KiB
YAML
jobs:
|
|
- name: SimpleLogin growth stats
|
|
command: python /code/cron.py -j stats
|
|
shell: /bin/bash
|
|
schedule: "0 0 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Delete Old Monitoring records
|
|
command: python /code/cron.py -j delete_old_monitoring
|
|
shell: /bin/bash
|
|
schedule: "15 1 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Custom Domain check
|
|
command: python /code/cron.py -j check_custom_domain
|
|
shell: /bin/bash
|
|
schedule: "15 2 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin HIBP check
|
|
command: python /code/cron.py -j check_hibp
|
|
shell: /bin/bash
|
|
schedule: "15 3 * * *"
|
|
captureStderr: true
|
|
concurrencyPolicy: Forbid
|
|
|
|
- name: SimpleLogin Notify HIBP breaches
|
|
command: python /code/cron.py -j notify_hibp
|
|
shell: /bin/bash
|
|
schedule: "15 4 * * *"
|
|
captureStderr: true
|
|
concurrencyPolicy: Forbid
|
|
|
|
- name: SimpleLogin Delete Logs
|
|
command: python /code/cron.py -j delete_logs
|
|
shell: /bin/bash
|
|
schedule: "15 5 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Poll Apple Subscriptions
|
|
command: python /code/cron.py -j poll_apple_subscription
|
|
shell: /bin/bash
|
|
schedule: "15 6 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Notify Trial Ends
|
|
command: python /code/cron.py -j notify_trial_end
|
|
shell: /bin/bash
|
|
schedule: "15 8 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Notify Manual Subscription Ends
|
|
command: python /code/cron.py -j notify_manual_subscription_end
|
|
shell: /bin/bash
|
|
schedule: "15 9 * * *"
|
|
captureStderr: true
|
|
|
|
- name: SimpleLogin Notify Premium Ends
|
|
command: python /code/cron.py -j notify_premium_end
|
|
shell: /bin/bash
|
|
schedule: "15 10 * * *"
|
|
captureStderr: true
|
|
|
|
|
|
|
|
- name: SimpleLogin send unsent emails
|
|
command: python /code/cron.py -j send_undelivered_mails
|
|
shell: /bin/bash
|
|
schedule: "*/5 * * * *"
|
|
captureStderr: true
|
|
concurrencyPolicy: Forbid
|