diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-08-21 07:10:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-08-21 07:10:18 +0000 |
commit | 11e931602f3cf051a48f60a995f95bbb05ab842d (patch) | |
tree | ea3f9752f372a260ad210dacde73d5d59313af38 | |
parent | 1b511d27a3d871f805529cc87993b5385996bb76 (diff) | |
download | fetchmail-11e931602f3cf051a48f60a995f95bbb05ab842d.tar.gz fetchmail-11e931602f3cf051a48f60a995f95bbb05ab842d.tar.bz2 fetchmail-11e931602f3cf051a48f60a995f95bbb05ab842d.zip |
Don Willis's I/O code.
svn path=/trunk/; revision=2544
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | uid.c | 56 |
2 files changed, 36 insertions, 21 deletions
@@ -18,6 +18,7 @@ fetchmail-5.0.7 (): * Teach fetchmailconf about HP OpenMail. * SunOS compilation fixes. * Steve Dodd's fix to not send bouncemail on transient errors. +* Don Willis's improved UID parsing. There are 263 people on fetchmail-friends and 421 on fetchmail-announce. @@ -79,37 +79,51 @@ void initialize_saved_lists(struct query *hostlist, const char *idfile) ctl->skipped = ctl->oldsaved = ctl->newsaved = (struct idlist *)NULL; /* let's get stored message UIDs from previous queries */ - if ((tmpfp = fopen(idfile, "r")) != (FILE *)NULL) { + if ((tmpfp = fopen(idfile, "r")) != (FILE *)NULL) + { char buf[POPBUFSIZE+1],host[HOSTLEN+1],user[USERNAMELEN+1],id[IDLEN+1]; + + char userhost[USERNAMELEN+1]; /* temp string for parsing the UID */ + char *atsign; /* temp pointer used in parsing user and host */ while (fgets(buf, POPBUFSIZE, tmpfp) != (char *)NULL) { - /* - * This inelegant hack was brought to you by the fact that - * some dial-up resellers actually use account names with - * @ in them. So we need to split on the rightmost @... - */ - char *atsign = strrchr(buf, '@'); - - if (atsign) - *atsign = ' '; - - if ((st = sscanf(buf, "%s %s %s\n", user, host, id)) == 3) + /* + * At this point, we assume the bug has two fields -- a user@host + * part, and an ID part. Either field may contain spurious @ signs. + * The previous version of this code presumed one could split at + * the rightmost '@'. This is not correct, as InterMail puts an + * '@' in the UIDL. + */ + + /* First, we split the buf into a userhost part and an id part */ + if ((st = sscanf(buf, "%s %s\n", userhost, id)) == 2) { - for (ctl = hostlist; ctl; ctl = ctl->next) + /* we should now have parsed out the ID and must resolve + user and host. We assume that the field can now be divided + by the rightmost '@' */ + atsign = strrchr(userhost,'@'); + if(atsign) *atsign = ' '; /* replace right-@ with space */ + + /* we should now be able to parse userhost into user and host */ + if ((st = sscanf(userhost, "%s %s", user, host)) == 2) { - if (ctl->server.truename && - strcasecmp(host, ctl->server.truename) == 0 - && strcasecmp(user, ctl->remotename) == 0) + + for (ctl = hostlist; ctl; ctl = ctl->next) { - save_str(&ctl->oldsaved, id, UID_SEEN); - break; + if (ctl->server.truename && + strcasecmp(host, ctl->server.truename) == 0 + && strcasecmp(user, ctl->remotename) == 0) + { + save_str(&ctl->oldsaved, id, UID_SEEN); + break; + } } - } - /* if it's not in a host we're querying, save it anyway */ - if (ctl == (struct query *)NULL) + /* if it's not in a host we're querying, save it anyway */ + if (ctl == (struct query *)NULL) save_str(&scratchlist, buf, UID_SEEN); + } } } fclose(tmpfp); |