diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-03-29 21:44:22 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-03-29 21:44:22 +0000 |
commit | 48529e5bfe1b1f9eb2bf9482c2c9469772020441 (patch) | |
tree | 86ac549d0748602a1c72c1ab84963065401e6b86 /imap.c | |
parent | 359d7a680954c070e905000809b29ad02539f2ff (diff) | |
download | fetchmail-48529e5bfe1b1f9eb2bf9482c2c9469772020441.tar.gz fetchmail-48529e5bfe1b1f9eb2bf9482c2c9469772020441.tar.bz2 fetchmail-48529e5bfe1b1f9eb2bf9482c2c9469772020441.zip |
Eliminate the IDLING variable.
svn path=/trunk/; revision=2845
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -98,14 +98,14 @@ int imap_ok(int sock, char *argbuf) * see an EXISTS. Only after that will a tagged response be * shipped. The idling flag also gets cleared on a timeout. */ - if (idling) + if (stage == STAGE_IDLE) { /* we do our own write and report here to disable tagging */ SockWrite(sock, "DONE\r\n", 6); if (outlevel >= O_MONITOR) report(stdout, "IMAP> DONE\n"); - idling = FALSE; + stage = STAGE_FETCH; } } if (strstr(buf, "RECENT")) @@ -925,7 +925,6 @@ int imap_getauth(int sock, struct query *ctl, char *greeting) * Handle idling. We depend on coming through here on startup * and after each timeout (including timeouts during idles). */ - idling = FALSE; if (strstr(capabilities, "IDLE") && ctl->idle) { do_idle = TRUE; @@ -1084,10 +1083,12 @@ static int imap_getrange(int sock, if (deletions && expunge_period != 1) ok = internal_expunge(sock); count = -1; - idling = do_idle; - if (idling) + if (do_idle) + { + stage = STAGE_IDLE; /* this is the RFC2177-recommended timeout for an IDLE */ mytimeout = 29 * 60; + } if (ok || gen_transact(sock, do_idle ? "IDLE" : "NOOP")) { report(stderr, _("re-poll failed\n")); |