summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2020-10-09 09:20:11 -0700
committerKevin McCarthy <kevin@8t8.us>2020-10-09 09:20:11 -0700
commitf826376444cfcfcb71675e2b59ce3c9e2225ccaf (patch)
treed4c11e31d6273a35c1d9ea3f4b0d99c637558844 /contrib
parent0241b030bfafa7ebd3a640bf2245b5d6e8507740 (diff)
Fix mutt_oauth.py.README example.
$imap_authenticators should be colon delimited.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/mutt_oauth2.py.README2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/mutt_oauth2.py.README b/contrib/mutt_oauth2.py.README
index ec7cb58b..81c2eb3a 100644
--- a/contrib/mutt_oauth2.py.README
+++ b/contrib/mutt_oauth2.py.README
@@ -283,7 +283,7 @@ mutt. Your .muttrc would look something like:
set imap_user="userid@myschool.edu"
set folder="imap://outlook.office365.com/"
set smtp_url="smtp://${imap_user}@smtp.office365.com:587/"
- set imap_authenticators="oauthbearer xoauth2"
+ set imap_authenticators="oauthbearer:xoauth2"
set imap_oauth_refresh_command="/path/to/script/mutt_oauth2.py ${imap_user}.tokens"
set smtp_authenticators=${imap_authenticators}
set smtp_oauth_refresh_command=${imap_oauth_refresh_command}