aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
Commit message (Expand)AuthorAgeFilesLines
...
* Rearrange so CAPABILITY is queried before LOGIN.Eric S. Raymond1997-10-011-74/+61
* More robust message size queriesEric S. Raymond1997-09-301-2/+1
* Eliminate the "No mail" message on second and later passes.Eric S. Raymond1997-09-301-3/+2
* Smart re-polling support.Eric S. Raymond1997-09-301-5/+22
* Added --expunge option for Richard Kooidjman.Eric S. Raymond1997-09-281-19/+38
* Make X-IMAP test universal.Eric S. Raymond1997-09-231-14/+0
* Cleaner CAPABILITY handling.Eric S. Raymond1997-09-221-4/+9
* Fix error in IMAP size retrieval.Eric S. Raymond1997-09-181-1/+1
* *** empty log message ***Eric S. Raymond1997-09-181-3/+1
* Fix bug in number-scanning.Eric S. Raymond1997-09-161-4/+2
* Simplify the length handling.Eric S. Raymond1997-09-141-2/+3
* Allow this to work with Cyrus server.Eric S. Raymond1997-09-091-1/+3
* FreeBSD port changes.Eric S. Raymond1997-09-031-0/+3
* Deal with X-IMAP header properly.Eric S. Raymond1997-08-071-0/+14
* Send truename in Kerberos transactions.Eric S. Raymond1997-07-301-1/+1
* Some configuration cleanup.Eric S. Raymond1997-07-011-1/+1
* Another try at Kerberos autoconfiguration.Eric S. Raymond1997-07-011-0/+4
* Fix the length checks.Eric S. Raymond1997-06-261-3/+3
* Fix the Kerberos code.Eric S. Raymond1997-06-241-3/+3
* Don't rely on the size being in POP3's fetch response any more.Eric S. Raymond1997-06-141-0/+1
* Copyright cleanup.Eric S. Raymond1997-06-131-2/+1
* More bool conversions.Eric S. Raymond1997-06-131-2/+2
* -Wall cleanup.Eric S. Raymond1997-06-111-2/+0
* Guarantee that we can deduce a 32-bit type.Eric S. Raymond1997-06-101-2/+10
* Deal with 0-length response.Eric S. Raymond1997-06-051-6/+22
* Rob Funk was right.Eric S. Raymond1997-06-041-6/+15
* Fix Rob Funk's bug.Eric S. Raymond1997-06-041-1/+13
* Caseblind interpretation of capability response.Eric S. Raymond1997-06-021-1/+2
* Force 32 bits for RFC1731 calculation.Eric S. Raymond1997-05-281-5/+4
* Nailed.Eric S. Raymond1997-05-271-11/+4
* Add imap-k4 capability.Eric S. Raymond1997-05-271-30/+297
* Cleanup.Eric S. Raymond1997-05-171-4/+4
* Another step towards cleaner code.Eric S. Raymond1997-05-171-11/+6
* IMAP now splits its request in half.Eric S. Raymond1997-05-171-7/+43
* Add multiple-folder support.Eric S. Raymond1997-05-151-4/+5
* -Wall cleanup.Eric S. Raymond1997-05-151-5/+5
* Change type of socket descriptors from FILE * to int. Change SockGetsEric S. Raymond1997-05-131-26/+26
* RFC2061 changes.Eric S. Raymond1997-02-151-2/+5
* CR-strip fix.Eric S. Raymond1997-01-271-0/+3
* Avoid random return value.Eric S. Raymond1997-01-241-6/+8
* Introduce gen_recv.Eric S. Raymond1997-01-241-35/+14
* Set peek_capable properly.Eric S. Raymond1997-01-231-0/+2
* Make this aware of RFC2060.Eric S. Raymond1997-01-231-11/+64
* Philippe de Muyter's Motorola fixes.Eric S. Raymond1997-01-161-0/+2
* Deal with the fact that EXPUNGEs changed fetch numbers.Eric S. Raymond1997-01-141-5/+29
* Expunge fix.Eric S. Raymond1997-01-141-3/+7
* Dynamic allocation for the query structure string entries.Eric S. Raymond1997-01-141-1/+1
* Have IMAP set seen flag if keep is on.Eric S. Raymond1996-12-271-2/+6
* Drop back to using SockGets/SockWrite.Eric S. Raymond1996-12-241-4/+5
* Remove some inclusions no longer needed.Eric S. Raymond1996-12-171-2/+1
pan class="w"> } parendepth = state = 0; has_host_part = FALSE; for (from = buf; *from; from++) { #ifdef TESTMAIN printf("state %d: %s", state, mycopy); printf("%*s^\n", from - mycopy + 10, " "); #endif /* TESTMAIN */ if (state != 2) if (*from == '(') ++parendepth; else if (*from == ')') --parendepth; if (!parendepth && !has_host_part) 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 == '@') has_host_part = TRUE; else if (*from == '"') state = 2; else if ((*from == ',' || HEADER_END(from)) && !has_host_part) { int hostlen; while (isspace(*from)) --from; from++; hostlen = strlen(host); for (cp = from + strlen(from); cp >= from; --cp) cp[hostlen+1] = *cp; *from++ = '@'; memcpy(from, host, hostlen); from += strlen(from); has_host_part = TRUE; } break; case 2: /* we're in a string */ if (*from == '"') state = 1; break; case 3: /* we're in a <>-enclosed address */ if (*from == '@') has_host_part = TRUE; else if (*from == '>' && !has_host_part) { int hostlen; hostlen = strlen(host); for (cp = from + strlen(from); cp >= from; --cp) cp[hostlen+1] = *cp; *from++ = '@'; memcpy(from, host, hostlen); from += strlen(from); has_host_part = TRUE; } break; } } } char *nxtaddr(hdr) /* parse addresses in succession out of a specified RFC822 header */ const char *hdr; /* header to be parsed, NUL to continue previous hdr */ { static char *tp, address[POPBUFSIZE+1]; static const char *hp; static int state, oldstate; int parendepth; #define START_HDR 0 /* before header colon */ #define SKIP_JUNK 1 /* skip whitespace, \n, and junk */ #define BARE_ADDRESS 2 /* collecting address without delimiters */ #define INSIDE_DQUOTE 3 /* inside double quotes */ #define INSIDE_PARENS 4 /* inside parentheses */ #define INSIDE_BRACKETS 5 /* inside bracketed address */ #define ENDIT_ALL 6 /* after last address */ if (hdr) { hp = hdr; state = START_HDR; } for (; *hp; hp++) { #ifdef TESTMAIN printf("state %d: %s", state, hdr); printf("%*s^\n", hp - hdr + 10, " "); #endif /* TESTMAIN */ if (state == ENDIT_ALL) /* after last address */ return(NULL); else if (HEADER_END(hp)) { state = ENDIT_ALL; while (isspace(*--tp)) continue; *++tp = '\0'; return(tp > address ? (tp = address) : (char *)NULL); } else if (*hp == '\\') /* handle RFC822 escaping */ { *tp++ = *hp++; /* take the escape */ *tp++ = *hp; /* take following char */ } else switch (state) { case START_HDR: /* before header colon */ if (*hp == ':') { state = SKIP_JUNK; tp = address; } break; case SKIP_JUNK: /* looking for address start */ if (*hp == '"') /* quoted string */ { oldstate = SKIP_JUNK; state = INSIDE_DQUOTE; *tp++ = *hp; } else if (*hp == '(') /* address comment -- ignore */ { parendepth = 1; state = INSIDE_PARENS; } else if (*hp == '<') /* begin <address> */ { state = INSIDE_BRACKETS; tp = address; } else if (!isspace(*hp)) /* ignore space */ { --hp; state = BARE_ADDRESS; } break; case BARE_ADDRESS: /* collecting address without delimiters */ if (*hp == ',') /* end of address */ { if (tp > address) { *tp++ = '\0'; state = SKIP_JUNK; return(tp = address); } } else if (*hp == '(') /* beginning of comment */ { parendepth = 1; state = INSIDE_PARENS; } else if (*hp == '<') /* beginning of real address */ { state = INSIDE_BRACKETS; tp = address; } else if (!isspace(*hp)) /* just take it, ignoring whitespace */ *tp++ = *hp; break; case INSIDE_DQUOTE: /* we're in a quoted string, copy verbatim */ if (*hp != '"') *tp++ = *hp; else { *tp++ = *hp; state = oldstate; } break; case INSIDE_PARENS: /* we're in a parenthesized comment, ignore */ if (*hp == '(') ++parendepth; else if (*hp == ')') --parendepth; if (parendepth == 0) state = SKIP_JUNK; break; case INSIDE_BRACKETS: /* possible <>-enclosed address */ if (*hp == '>') /* end of address */ { *tp++ = '\0'; state = SKIP_JUNK; ++hp; return(tp = address); } else if (*hp == '<') /* nested <> */ tp = address; else if (*hp == '"') /* quoted address */ { *tp++ = *hp; oldstate = INSIDE_BRACKETS; state = INSIDE_DQUOTE; } else /* just copy address */ *tp++ = *hp; break; } } return(NULL); } #ifdef TESTMAIN main(int argc, char *argv[]) { char buf[MSGBUFSIZE], *cp; int reply = (argc > 1 && !strcmp(argv[1], "-r")); while (fgets(buf, sizeof(buf)-1, stdin)) { if (strncmp("From: ", buf, 6) && strncmp("To: ", buf, 4) && strncmp("Reply-", buf, 6) && strncmp("Cc: ", buf, 4) && strncmp("Bcc: ", buf, 5)) continue; else { fputs(buf, stdout); if (reply) { reply_hack(buf, "HOSTNAME.NET"); printf("Rewritten buffer: %s", buf); } else if ((cp = nxtaddr(buf)) != (char *)NULL) do { printf("\t\"%s\"\n", cp); } while ((cp = nxtaddr((char *)NULL)) != (char *)NULL); } } } #endif /* TESTMAIN */ /* rfc822.c end */