From 61285c7f2db6ad78adb7a66a271dbbfd60aca6fe Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 25 May 1998 18:36:52 +0000 Subject: Kok Seng's package to prevent UID lossage. svn path=/trunk/; revision=1826 --- fetchmail.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'fetchmail.c') diff --git a/fetchmail.c b/fetchmail.c index 5e3e28ac..e7c7e3b3 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -3,7 +3,6 @@ * * For license terms, see the file COPYING in this directory. */ - #include "config.h" #include @@ -511,13 +510,25 @@ int main (int argc, char **argv) querystatus = query_host(ctl); - if (querystatus == PS_SUCCESS) { + if (querystatus == PS_SUCCESS) + { successes++; #ifdef POP3_ENABLE if (!check_only) - update_str_lists(ctl); + update_str_lists(ctl); + + /* Save UID list to prevent re-fetch in case fetchmail + recover from crash */ + if (!check_only) + { + write_saved_lists(querylist, run.idfile); + syslog(LOG_INFO,"Saved UID List"); + } #endif /* POP3_ENABLE */ } + else + syslog(LOG_INFO,"Query status=%d", querystatus); + #if defined(linux) && !INET6 if (ctl->server.monitor) { -- cgit v1.2.3