X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Finc.c;h=02a2cbff97ce891441d79feaaca9b6bebb87329a;hp=ec4f520d6065e26122dbf3db24004822cabcaa70;hb=745645022b8e7ff0c21cba33776bc890986b3361;hpb=a259594cc41e41bfbb90562d3977b8194d1446f5 diff --git a/uip/inc.c b/uip/inc.c index ec4f520..02a2cbf 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -134,8 +134,6 @@ static struct swit switches[] = { { NULL, 0 } }; -extern int errno; - /* * flags for the mail source */ @@ -246,6 +244,7 @@ main (int argc, char **argv) struct stat st, s1; FILE *aud = NULL; char b[MAXPATHLEN + 1]; + char *maildir_copy; /* copy of mail directory because the static gets overwritten */ #ifdef POP int nmsgs, nbytes, p = 0; @@ -549,6 +548,9 @@ main (int argc, char **argv) folder = getfolder (0); maildir = m_maildir (folder); + if ((maildir_copy = strdup(maildir)) == (char *)0) + adios (maildir, "error allocating memory to copy maildir"); + if (stat (maildir, &st) == NOTOK) { if (errno != ENOENT) adios (maildir, "error on folder"); @@ -830,7 +832,7 @@ go_to_it: * Run the external program hook on the message. */ - (void)snprintf(b, sizeof (b), "%s/%d", maildir, msgnum + 1); + (void)snprintf(b, sizeof (b), "%s/%d", maildir_copy, msgnum + 1); (void)ext_hook("add-hook", b, (char *)0); if (aud) @@ -844,6 +846,9 @@ go_to_it: msgnum++; mp->hghmsg++; + mp->nummsg++; + if (mp->lowmsg == 0) mp->lowmsg = 1; + clear_msg_flags (mp, msgnum); set_exists (mp, msgnum); set_unseen (mp, msgnum);