diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-07-28 20:52:28 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-07-28 20:52:28 -0600 |
commit | 0d181b64d4d433a5ec88c4bfd55cd5a1d5f9a1da (patch) | |
tree | 981d63dd006c04c1b884d0b6cbbcd6a405593ae0 /imap/src/osdep/nt/mbxnt.c | |
parent | 6591233b484d8f303b64f9042aee516d1b3a9cc6 (diff) | |
download | alpine-0d181b64d4d433a5ec88c4bfd55cd5a1d5f9a1da.tar.xz |
* XOAUTH2: automatic renew of access token and connection to a server
within 60 seconds of expiration of the access token.
Diffstat (limited to 'imap/src/osdep/nt/mbxnt.c')
-rw-r--r-- | imap/src/osdep/nt/mbxnt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/imap/src/osdep/nt/mbxnt.c b/imap/src/osdep/nt/mbxnt.c index 5ea3b57e..f35bfa6c 100644 --- a/imap/src/osdep/nt/mbxnt.c +++ b/imap/src/osdep/nt/mbxnt.c @@ -157,7 +157,8 @@ DRIVER mbxdriver = { mbx_expunge, /* expunge deleted messages */ mbx_copy, /* copy messages to another mailbox */ mbx_append, /* append string message to mailbox */ - NIL /* garbage collect stream */ + NIL, /* garbage collect stream */ + NIL /* renew stream */ }; /* prototype stream */ |