]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-master: ssl_options - Remove support for no_compression
authorAki Tuomi <aki.tuomi@open-xchange.com>
Fri, 25 Mar 2022 08:21:05 +0000 (10:21 +0200)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Fri, 1 Apr 2022 09:20:23 +0000 (09:20 +0000)
This has been default for a while now.

src/lib-master/master-service-ssl-settings.c

index 25c214890a8938d9634a4927e8cc68e0265f2006..9dabec138053f8782f3868eda4a22ac9ae4b74c6 100644 (file)
@@ -170,11 +170,6 @@ master_service_ssl_settings_check(void *_set, pool_t pool ATTR_UNUSED,
        while ((opt = *opts++) != NULL) {
                if (strcasecmp(opt, "compression") == 0) {
                        set->parsed_opts.compression = TRUE;
-               } else if (strcasecmp(opt, "no_compression") == 0) {
-#ifdef CONFIG_BINARY
-                       i_warning("DEPRECATED: no_compression is default, "
-                                 "so it is redundant in ssl_options");
-#endif
                } else if (strcasecmp(opt, "no_ticket") == 0) {
                        set->parsed_opts.tickets = FALSE;
                } else {