diff options
author | default <nobody@localhost> | 2023-02-02 05:21:16 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-02 05:21:16 +0100 |
commit | 928f22fbbaec5d52836b217ec7a281b880b23f92 (patch) | |
tree | 07990b389795025cbd184dfc79d8807ae96d9a5a /httpd.c | |
parent | c639553836c4b8aa5e98ca6a48e5464e9aa76057 (diff) |
Email notifications have been moved to the global queue.
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -280,6 +280,9 @@ static void *queue_thread(void *arg) } } + /* global queue */ + process_queue(); + /* time to purge? */ if ((t = time(NULL)) > purge_time) { pthread_t pth; |