From: Karl Fleischmann Date: Thu, 24 Mar 2022 09:30:32 +0000 (+0100) Subject: config: Notify about obsolete auth_debug setting X-Git-Tag: 2.4.0~4166 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5d5dce73c76cbf48f67a19dab801d3ece047209;p=thirdparty%2Fdovecot%2Fcore.git config: Notify about obsolete auth_debug setting --- diff --git a/src/config/old-set-parser.c b/src/config/old-set-parser.c index cdf6eca053..59e033c7ef 100644 --- a/src/config/old-set-parser.c +++ b/src/config/old-set-parser.c @@ -283,6 +283,10 @@ old_settings_handle_root(struct config_parser_context *ctx, NULL); return TRUE; } + if (strcmp(key, "auth_debug") == 0) { + obsolete(ctx, "%s will be removed in a future version, consider using log_debug = \"category=auth\" instead", key); + return TRUE; + } if (strcmp(key, "login_access_sockets") == 0) { if (value != NULL && *value != '\0') i_fatal("%s is no longer supported", key);