diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-03-13 22:27:36 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 22:27:36 +0600 |
commit | 41e564da7af9c552cef0640c1fddb235cafd854e (patch) | |
tree | 05df417fca60e863987c4eaefc3183da50913b6a | |
parent | 57c456615c7197d1080b42484fdbde94b4cc4993 (diff) | |
parent | b606954ac39d44a05c474b6d34b071ed8e5bdd9c (diff) | |
download | rspamd-41e564da7af9c552cef0640c1fddb235cafd854e.tar.gz rspamd-41e564da7af9c552cef0640c1fddb235cafd854e.zip |
Merge pull request #4870 from rspamd/vstakhov-rspamc-use-zstd
Use zstd compression in client all the time
-rw-r--r-- | src/client/rspamc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/rspamc.cxx b/src/client/rspamc.cxx index 50e3cbdee..d1b6a8ed0 100644 --- a/src/client/rspamc.cxx +++ b/src/client/rspamc.cxx @@ -1,5 +1,5 @@ /* - * Copyright 2023 Vsevolod Stakhov + * Copyright 2024 Vsevolod Stakhov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -80,7 +80,7 @@ static gboolean ucl_reply = FALSE; static gboolean extended_urls = FALSE; static gboolean mime_output = FALSE; static gboolean empty_input = FALSE; -static gboolean compressed = FALSE; +static gboolean compressed = TRUE; static gboolean profile = FALSE; static gboolean skip_images = FALSE; static gboolean skip_attachments = FALSE; |