From 03ab15891b1713d422fce4d7aae581b369822b7e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 26 Jun 1999 03:36:24 +0000 Subject: Fix Chris Evert's bug. svn path=/trunk/; revision=2510 --- imap.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'imap.c') diff --git a/imap.c b/imap.c index 491c1b41..39aa3695 100644 --- a/imap.c +++ b/imap.c @@ -774,6 +774,15 @@ int imap_getauth(int sock, struct query *ctl, char *greeting) peek_capable = (imap_version >= IMAP4); + /* + * Assumption: expunges are cheap, so we want to do them + * after every message unless user said otherwise. + */ + if (NUM_SPECIFIED(ctl->expunge)) + expunge_period = NUM_VALUE_OUT(ctl->expunge); + else + expunge_period = 1; + if (preauth) return(PS_SUCCESS); @@ -859,15 +868,6 @@ int imap_getauth(int sock, struct query *ctl, char *greeting) if (ok) return(ok); - /* - * Assumption: expunges are cheap, so we want to do them - * after every message unless user said otherwise. - */ - if (NUM_SPECIFIED(ctl->expunge)) - expunge_period = NUM_VALUE_OUT(ctl->expunge); - else - expunge_period = 1; - return(PS_SUCCESS); } -- cgit v1.2.3