diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-15 19:17:30 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-15 19:17:30 +0000 |
commit | e13db1a773fa9e6836b2a1db497c077253bb34eb (patch) | |
tree | 644115d381f082d75a6d20a6559164b94b809928 /rfc822.c | |
parent | 4b38ffd6c83438601284f75e351e1c0a2f4c57e7 (diff) | |
download | fetchmail-e13db1a773fa9e6836b2a1db497c077253bb34eb.tar.gz fetchmail-e13db1a773fa9e6836b2a1db497c077253bb34eb.tar.bz2 fetchmail-e13db1a773fa9e6836b2a1db497c077253bb34eb.zip |
Much simpler rewrite logic.
svn path=/trunk/; revision=769
Diffstat (limited to 'rfc822.c')
-rw-r--r-- | rfc822.c | 160 |
1 files changed, 32 insertions, 128 deletions
@@ -21,8 +21,8 @@ char *buf; /* header to be hacked */ const char *host; /* server hostname */ { const char *from; - int parendepth, oldstate, state = 0, tokencount = 0, nlterm = 0; - char mycopy[POPBUFSIZE+1]; + int parendepth, oldstate, state = 0, has_host_part = FALSE; + char mycopy[MSGBUFSIZE+1]; if (strncmp("From: ", buf, 6) && strncmp("To: ", buf, 4) @@ -33,150 +33,54 @@ const char *host; /* server hostname */ } strcpy(mycopy, buf); - if (mycopy[strlen(mycopy) - 1] == '\n') - { - mycopy[strlen(mycopy) - 1] = '\0'; - nlterm = TRUE; - } - if (mycopy[strlen(mycopy) - 1] != ',') - strcat(mycopy, ","); - for (from = mycopy; *from; from++) { -#ifdef FOO - printf("state %d: %s", state, mycopy); - printf("%*s^\n", from - mycopy + 10, " "); -#endif /* TESTMAIN */ - #define INSERT_HOSTNAME \ strcpy(buf, "@"); \ strcat(buf, host); \ buf += strlen(buf); \ - state = 7; - - switch (state) - { - case 0: /* before header colon */ - if (*from == ':') - state = 1; - break; - - case 1: /* we've seen the colon, we're looking for addresses */ - if (*from == '"') - state = 3; - else if (*from == '(') - { - parendepth = 1; - oldstate = 1; - state = 4; - } - else if (*from == '<') - state = 5; - else if (isalnum(*from)) - state = 6; - else if (isspace(*from)) - state = 2; - break; - - case 2: /* found a token boundary -- reset without copying */ - if (!isspace(*from)) - { - tokencount++; - state = 1; - --from; - continue; - } - break; - - case 3: /* we're in a quoted human name, copy and ignore */ - if (*from == '"') - state = 1; - break; - - case 4: /* we're in a parenthesized human name, copy and ignore */ - if (*from == '(') - ++parendepth; - else if (*from == ')') - --parendepth; - if (parendepth == 0) - state = oldstate; - break; + has_host_part = TRUE; - case 5: /* we're in a <>-enclosed address */ - if (*from == '@') - state = 7; - else if (*from == '>') - { - INSERT_HOSTNAME - } - break; + if (*from == '(') + ++parendepth; + else if (*from == ')') + --parendepth; - case 6: /* not string or comment, could be a bare address */ - if (*from == '@') - state = 7; - - else if (*from == '<') - state = 5; - - else if (*from == '(') + if (!parendepth) + switch (state) { - oldstate = 6; - state = 4; - } - - /* on proper termination with no @, insert hostname */ - else if (*from == ',') - { - INSERT_HOSTNAME - tokencount = 0; - } - - /* If the address token is not properly terminated, ignore it. */ - else if (isspace(*from)) - { - const char *cp; - - /* - * The only lookahead case. If we're looking at space or tab, - * we might be looking at a local name immediately followed - * by a human name. - */ - for (cp = from; isspace(*cp); cp++) - continue; - if (*cp == '(') + case 0: /* before header colon */ + if (*from == ':') + state = 1; + break; + + case 1: /* we've seen the colon, we're looking for addresses */ + if (*from == '<') + state = 2; + else if (*from == '@') + has_host_part = TRUE; + else if ((*from == ',' || *from == '\n') && !has_host_part) { - char *bp = strchr(cp, '<'); - char *ep = strchr(cp, ','); - - if (!bp || bp > ep) - { - INSERT_HOSTNAME - } + INSERT_HOSTNAME } - } - - /* everything else, including alphanumerics, just passes through */ - break; + break; - case 7: /* we're done with this address, skip to end */ - if (*from == ',') - { - state = 1; - tokencount == 0; + case 2: /* we're in a <>-enclosed address */ + if (*from == '@') + has_host_part = TRUE; + else if (*from == '>' && !has_host_part) + { + INSERT_HOSTNAME + } + break; } - break; - } /* all characters from the old buffer get copied to the new one */ *buf++ = *from; - } #undef INSERT_HOSTNAME + } - /* back up and nuke the appended comma sentinel */ - *--buf = '\0'; - - if (nlterm) - strcat(buf, "\n"); + *buf = '\0'; } char *nxtaddr(hdr) |