From 6864311e62841b0180dd649730591f1d0a2794da Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Sat, 14 Sep 2019 16:31:42 +0100 Subject: [PATCH] config: add missing DT_COMMAND flags --- init.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.h b/init.h index 528e11c02..908e6688f 100644 --- a/init.h +++ b/init.h @@ -1703,7 +1703,7 @@ struct ConfigDef MuttVars[] = { ** .pp ** This variable defaults to the value of $$imap_user. */ - { "imap_oauth_refresh_command", DT_STRING|DT_SENSITIVE, &C_ImapOauthRefreshCommand, 0 }, + { "imap_oauth_refresh_command", DT_STRING|DT_COMMAND|DT_SENSITIVE, &C_ImapOauthRefreshCommand, 0 }, /* ** .pp ** The command to run to generate an OAUTH refresh token for @@ -3072,7 +3072,7 @@ struct ConfigDef MuttVars[] = { ** for retrieving only unread messages from the POP server when using ** the \fC$\fP function. */ - { "pop_oauth_refresh_command", DT_STRING|DT_SENSITIVE, &C_PopOauthRefreshCommand, 0 }, + { "pop_oauth_refresh_command", DT_STRING|DT_COMMAND|DT_SENSITIVE, &C_PopOauthRefreshCommand, 0 }, /* ** .pp ** The command to run to generate an OAUTH refresh token for @@ -4169,7 +4169,7 @@ struct ConfigDef MuttVars[] = { ** set smtp_authenticators="digest-md5:cram-md5" ** .te */ - { "smtp_oauth_refresh_command", DT_STRING|DT_SENSITIVE, &C_SmtpOauthRefreshCommand, 0 }, + { "smtp_oauth_refresh_command", DT_STRING|DT_COMMAND|DT_SENSITIVE, &C_SmtpOauthRefreshCommand, 0 }, /* ** .pp ** The command to run to generate an OAUTH refresh token for @@ -4696,7 +4696,7 @@ struct ConfigDef MuttVars[] = { ** formatting to the one used by "$$status_format". */ #ifdef USE_SOCKET - { "tunnel", DT_STRING, &C_Tunnel, 0 }, + { "tunnel", DT_STRING|DT_COMMAND, &C_Tunnel, 0 }, /* ** .pp ** Setting this variable will cause NeoMutt to open a pipe to a command -- 2.40.0