diff options
Diffstat (limited to 'src/controller.c')
-rw-r--r-- | src/controller.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/controller.c b/src/controller.c index 4ed3f187c..e5ea56f17 100644 --- a/src/controller.c +++ b/src/controller.c @@ -3642,6 +3642,10 @@ start_controller_worker (struct rspamd_worker *worker) "Access-Control-Allow-Origin", "*"); } + /* Disable all results caching, see #3330 */ + rspamd_http_router_add_header (ctx->http, + "Cache-Control", "no-store"); + rspamd_http_router_set_unknown_handler (ctx->http, rspamd_controller_handle_unknown); |