Use a cron to send mails
This commit is contained in:
parent
d414f1a920
commit
f6c209df03
|
@ -20,6 +20,8 @@ RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/
|
|||
RUN ln -sf /code/nginx_tfjm.conf /etc/nginx/conf.d/tfjm.conf
|
||||
RUN rm /etc/nginx/conf.d/default.conf
|
||||
|
||||
RUN cp /code/tfjm.cron /etc/crontabs/tfjm
|
||||
|
||||
# With a bashrc, the shell is better
|
||||
RUN ln -s /code/.bashrc /root/.bashrc
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
# m h dom mon dow user command
|
||||
# Envoyer les mails en attente
|
||||
* * * * * root cd /code && python manage.py send_mail -c 1
|
||||
* * * * * root cd /code && python manage.py retry_deferred -c 1
|
||||
00 0 * * * root cd /code && python manage.py purge_mail_log 7 -c 1
|
Loading…
Reference in New Issue