Fixed bug in which the static maildir was overwritted if a format string
[mmh] / uip / inc.c
1
2 /*
3  * inc.c -- incorporate messages from a maildrop into a folder
4  *
5  * $Id$
6  *
7  * This code is Copyright (c) 2002, by the authors of nmh.  See the
8  * COPYRIGHT file in the root directory of the nmh distribution for
9  * complete copyright information.
10  */
11
12 #ifdef MAILGROUP
13 /* Revised: Sat Apr 14 17:08:17 PDT 1990 (marvit@hplabs)
14  *    Added hpux hacks to set and reset gid to be "mail" as needed. The reset
15  *    is necessary so inc'ed mail is the group of the inc'er, rather than
16  *    "mail". We setgid to egid only when [un]locking the mail file. This
17  *    is also a major security precaution which will not be explained here.
18  *
19  * Fri Feb  7 16:04:57 PST 1992         John Romine <bug-mh@ics.uci.edu>
20  *   NB: I'm not 100% sure that this setgid stuff is secure even now.
21  *
22  * See the *GROUPPRIVS() macros later. I'm reasonably happy with the setgid
23  * attribute. Running setuid root is probably not a terribly good idea, though.
24  *       -- Peter Maydell <pmaydell@chiark.greenend.org.uk>, 04/1998
25  *
26  * Peter Maydell's patch slightly modified for nmh 0.28-pre2.
27  * Ruud de Rooij <ruud@debian.org>  Wed, 22 Jul 1998 13:24:22 +0200
28  */
29 #endif
30
31 #include <h/mh.h>
32 #include <fcntl.h>
33
34 #ifdef POP
35 # include <h/dropsbr.h>
36 # include <h/popsbr.h>
37 #endif
38
39 #ifdef HESIOD
40 # include <hesiod.h>
41 #endif
42
43 #include <h/fmt_scan.h>
44 #include <h/scansbr.h>
45 #include <h/signals.h>
46 #include <h/tws.h>
47 #include <h/mts.h>
48 #include <errno.h>
49 #include <signal.h>
50
51 #ifndef POP
52 # define POPminc(a) (a)
53 #else
54 # define POPminc(a)  0
55 #endif
56
57 #ifndef RPOP
58 # define RPOPminc(a) (a)
59 #else
60 # define RPOPminc(a)  0
61 #endif
62
63 #ifndef APOP
64 # define APOPminc(a) (a)
65 #else
66 # define APOPminc(a)  0
67 #endif
68
69 #ifndef KPOP
70 # define KPOPminc(a) (a)
71 #else
72 # define KPOPminc(a)  0
73 #endif
74
75 #ifndef CYRUS_SASL
76 # define SASLminc(a) (a)
77 #else
78 # define SASLminc(a)  0
79 #endif
80
81 static struct swit switches[] = {
82 #define AUDSW                      0
83     { "audit audit-file", 0 },
84 #define NAUDSW                     1
85     { "noaudit", 0 },
86 #define CHGSW                      2
87     { "changecur", 0 },
88 #define NCHGSW                     3
89     { "nochangecur", 0 },
90 #define FILESW                     4
91     { "file name", 0 },
92 #define FORMSW                     5
93     { "form formatfile", 0 },
94 #define FMTSW                      6
95     { "format string", 5 },
96 #define HOSTSW                     7
97     { "host hostname", POPminc (-4) },
98 #define USERSW                     8
99     { "user username", POPminc (-4) },
100 #define PACKSW                     9
101     { "pack file", POPminc (-4) },
102 #define NPACKSW                   10
103     { "nopack", POPminc (-6) },
104 #define APOPSW                    11
105     { "apop", APOPminc (-4) },
106 #define NAPOPSW                   12
107     { "noapop", APOPminc (-6) },
108 #define RPOPSW                    13
109     { "rpop", RPOPminc (-4) },
110 #define NRPOPSW                   14
111     { "norpop", RPOPminc (-6) },
112 #define SILSW                     15
113     { "silent", 0 },
114 #define NSILSW                    16
115     { "nosilent", 0 },
116 #define TRNCSW                    17
117     { "truncate", 0 },
118 #define NTRNCSW                   18
119     { "notruncate", 0 },
120 #define WIDTHSW                   19
121     { "width columns", 0 },
122 #define VERSIONSW                 20
123     { "version", 0 },
124 #define HELPSW                    21
125     { "help", 0 },
126 #define SNOOPSW                   22
127     { "snoop", -5 },
128 #define KPOPSW                    23
129     { "kpop", KPOPminc (-4) },
130 #define SASLSW                    24
131     { "sasl", SASLminc(-4) },
132 #define SASLMECHSW                25
133     { "saslmech", SASLminc(-8) },
134     { NULL, 0 }
135 };
136
137 /*
138  * flags for the mail source
139  */
140 #define INC_FILE  0
141 #define INC_POP   1
142
143 static int inc_type;
144 static int snoop = 0;
145
146 #ifdef POP
147 extern char response[];
148
149 static char *packfile = NULL;
150 static int size;
151 static long pos;
152 static long start;
153 static long stop;
154
155 static int mbx_style = MMDF_FORMAT;
156 static int pd = NOTOK;
157 static FILE *pf = NULL;
158 #endif /* POP */
159
160 /* This is an attempt to simplify things by putting all the
161  * privilege ops into macros.
162  * *GROUPPRIVS() is related to handling the setgid MAIL property,
163  * and only applies if MAILGROUP is defined.
164  * *USERPRIVS() is related to handling the setuid root property,
165  * and only applies if POP is defined [why does POP => setuid root?]
166  * Basically, SAVEGROUPPRIVS() is called right at the top of main()
167  * to initialise things, and then DROPGROUPPRIVS() and GETGROUPPRIVS()
168  * do the obvious thing. TRYDROPGROUPPRIVS() has to be safe to call
169  * before DROPUSERPRIVS() is called [this is needed because setgid()
170  * sets both effective and real uids if euid is root.]
171  *
172  * There's probably a better implementation if we're allowed to use
173  * BSD-style setreuid() rather than using POSIX saved-ids.
174  * Anyway, if you're euid root it's a bit pointless to drop the group
175  * permissions...
176  *
177  * I'm pretty happy that the security is good provided we aren't setuid root.
178  * The only things we trust with group=mail privilege are lkfopen()
179  * and lkfclose().
180  */
181
182 /*
183  * For setting and returning to "mail" gid
184  */
185 #ifdef MAILGROUP
186 static int return_gid;
187 #ifndef POP
188 /* easy case; we're not setuid root, so can drop group privs
189  * immediately.
190  */
191 #define TRYDROPGROUPPRIVS() DROPGROUPPRIVS()
192 #else /* POP ie we are setuid root */
193 #define TRYDROPGROUPPRIVS() \
194 if (geteuid() != 0) DROPGROUPPRIVS()
195 #endif
196 #define DROPGROUPPRIVS() setgid(getgid())
197 #define GETGROUPPRIVS() setgid(return_gid)
198 #define SAVEGROUPPRIVS() return_gid = getegid()
199 #else
200 /* define *GROUPPRIVS() as null; this avoids having lots of "#ifdef MAILGROUP"s */
201 #define TRYDROPGROUPPRIVS()
202 #define DROPGROUPPRIVS()
203 #define GETGROUPPRIVS()
204 #define SAVEGROUPPRIVS()
205 #endif /* not MAILGROUP */
206
207 #ifdef POP
208 #define DROPUSERPRIVS() setuid(getuid())
209 #else
210 #define DROPUSERPRIVS()
211 #endif
212
213 /* these variables have to be globals so that done() can correctly clean up the lockfile */
214 static int locked = 0;
215 static char *newmail;
216 static FILE *in;
217
218 /*
219  * prototypes
220  */
221 char *map_name(char *);
222
223 #ifdef POP
224 int done(int);
225 static int pop_action(char *);
226 static int pop_pack(char *);
227 static int map_count(void);
228 #endif
229
230
231 int
232 main (int argc, char **argv)
233 {
234     int chgflag = 1, trnflag = 1;
235     int noisy = 1, width = 0;
236     int rpop, i, hghnum, msgnum;
237     int kpop = 0, sasl = 0;
238     char *cp, *maildir, *folder = NULL;
239     char *format = NULL, *form = NULL;
240     char *host = NULL, *user = NULL;
241     char *audfile = NULL, *from = NULL, *saslmech = NULL;
242     char buf[BUFSIZ], **argp, *nfs, **arguments;
243     struct msgs *mp;
244     struct stat st, s1;
245     FILE *aud = NULL;
246     char        b[MAXPATHLEN + 1];
247     char        *maildir_copy;          /* copy of mail directory because the static gets overwritten */
248
249 #ifdef POP
250     int nmsgs, nbytes, p = 0;
251     char *pass = NULL;
252     char *MAILHOST_env_variable;
253 #endif
254
255 #ifdef MHE
256     FILE *mhe = NULL;
257 #endif
258
259 #ifdef HESIOD
260     struct hes_postoffice *po;
261 #endif
262
263 /* absolutely the first thing we do is save our privileges,
264  * and drop them if we can.
265  */
266     SAVEGROUPPRIVS();
267     TRYDROPGROUPPRIVS();
268
269 #ifdef LOCALE
270     setlocale(LC_ALL, "");
271 #endif
272     invo_name = r1bindex (argv[0], '/');
273
274     /* read user profile/context */
275     context_read();
276
277     mts_init (invo_name);
278     arguments = getarguments (invo_name, argc, argv, 1);
279     argp = arguments;
280
281 #ifdef POP
282     /*
283      * Scheme is:
284      *        use MAILHOST environment variable if present,
285      *  else try Hesiod.
286      *  If that fails, use the default (if any)
287      *  provided by mts.conf in mts_init()
288      */
289     if ((MAILHOST_env_variable = getenv("MAILHOST")) != NULL)
290         pophost = MAILHOST_env_variable;
291 # ifdef HESIOD
292     else if ((po = hes_getmailhost(getusername())) != NULL &&
293              strcmp(po->po_type, "POP") == 0)
294         pophost = po->po_host;
295 # endif /* HESIOD */
296     /*
297      * If there is a valid "pophost" entry in mts.conf,
298      * then use it as the default host.
299      */
300     if (pophost && *pophost)
301         host = pophost;
302
303     if ((cp = getenv ("MHPOPDEBUG")) && *cp)
304         snoop++;
305 #endif /* POP */
306
307     rpop = 0;
308
309     while ((cp = *argp++)) {
310         if (*cp == '-') {
311             switch (smatch (++cp, switches)) {
312             case AMBIGSW: 
313                 ambigsw (cp, switches);
314                 done (1);
315             case UNKWNSW: 
316                 adios (NULL, "-%s unknown", cp);
317
318             case HELPSW: 
319                 snprintf (buf, sizeof(buf), "%s [+folder] [switches]", invo_name);
320                 print_help (buf, switches, 1);
321                 done (1);
322             case VERSIONSW:
323                 print_version(invo_name);
324                 done (1);
325
326             case AUDSW: 
327                 if (!(cp = *argp++) || *cp == '-')
328                     adios (NULL, "missing argument to %s", argp[-2]);
329                 audfile = getcpy (m_maildir (cp));
330                 continue;
331             case NAUDSW: 
332                 audfile = NULL;
333                 continue;
334
335             case CHGSW: 
336                 chgflag++;
337                 continue;
338             case NCHGSW: 
339                 chgflag = 0;
340                 continue;
341
342             /*
343              * The flag `trnflag' has the value:
344              *
345              * 2 if -truncate is given
346              * 1 by default (truncating is default)
347              * 0 if -notruncate is given
348              */
349             case TRNCSW: 
350                 trnflag = 2;
351                 continue;
352             case NTRNCSW: 
353                 trnflag = 0;
354                 continue;
355
356             case FILESW: 
357                 if (!(cp = *argp++) || *cp == '-')
358                     adios (NULL, "missing argument to %s", argp[-2]);
359                 from = path (cp, TFILE);
360
361                 /*
362                  * If the truncate file is in default state,
363                  * change to not truncate.
364                  */
365                 if (trnflag == 1)
366                     trnflag = 0;
367                 continue;
368
369             case SILSW: 
370                 noisy = 0;
371                 continue;
372             case NSILSW: 
373                 noisy++;
374                 continue;
375
376             case FORMSW: 
377                 if (!(form = *argp++) || *form == '-')
378                     adios (NULL, "missing argument to %s", argp[-2]);
379                 format = NULL;
380                 continue;
381             case FMTSW: 
382                 if (!(format = *argp++) || *format == '-')
383                     adios (NULL, "missing argument to %s", argp[-2]);
384                 form = NULL;
385                 continue;
386
387             case WIDTHSW: 
388                 if (!(cp = *argp++) || *cp == '-')
389                     adios (NULL, "missing argument to %s", argp[-2]);
390                 width = atoi (cp);
391                 continue;
392
393             case HOSTSW:
394                 if (!(host = *argp++) || *host == '-')
395                     adios (NULL, "missing argument to %s", argp[-2]);
396                 continue;
397             case USERSW:
398                 if (!(user = *argp++) || *user == '-')
399                     adios (NULL, "missing argument to %s", argp[-2]);
400                 continue;
401
402             case PACKSW:
403 #ifndef POP
404                 if (!(cp = *argp++) || *cp == '-')
405                     adios (NULL, "missing argument to %s", argp[-2]);
406 #else /* POP */
407                 if (!(packfile = *argp++) || *packfile == '-')
408                     adios (NULL, "missing argument to %s", argp[-2]);
409 #endif /* POP */
410                 continue;
411             case NPACKSW:
412 #ifdef POP
413                 packfile = NULL;
414 #endif /* POP */
415                 continue;
416
417             case APOPSW:
418                 rpop = -1;
419                 continue;
420             case NAPOPSW:
421                 rpop = 0;
422                 continue;
423
424             case RPOPSW:
425                 rpop = 1;
426                 continue;
427             case NRPOPSW:
428                 rpop = 0;
429                 continue;
430
431             case KPOPSW:
432                 kpop = 1;
433                 continue;
434
435             case SNOOPSW:
436                 snoop++;
437                 continue;
438         
439             case SASLSW:
440                 sasl++;
441                 continue;
442         
443             case SASLMECHSW:
444                 if (!(saslmech = *argp++) || *saslmech == '-')
445                     adios (NULL, "missing argument to %s", argp[-2]);
446                 continue;
447             }
448         }
449         if (*cp == '+' || *cp == '@') {
450             if (folder)
451                 adios (NULL, "only one folder at a time!");
452             else
453                 folder = path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF);
454         } else {
455             adios (NULL, "usage: %s [+folder] [switches]", invo_name);
456         }
457     }
458
459     /* NOTE: above this point you should use TRYDROPGROUPPRIVS(),
460      * not DROPGROUPPRIVS().
461      */
462 #ifdef POP
463     if (host && !*host)
464         host = NULL;
465     if (from || !host || rpop <= 0)
466         DROPUSERPRIVS();
467 #endif /* POP */
468
469     /* guarantee dropping group priveleges; we might not have done so earlier */
470     DROPGROUPPRIVS();
471
472     /*
473      * Where are we getting the new mail?
474      */
475     if (from)
476         inc_type = INC_FILE;
477 #ifdef POP
478     else if (host)
479         inc_type = INC_POP;
480 #endif
481     else
482         inc_type = INC_FILE;
483
484 #ifdef POP
485     /*
486      * Are we getting the mail from
487      * a POP server?
488      */
489     if (inc_type == INC_POP) {
490         if (user == NULL)
491             user = getusername ();
492         if ( strcmp( POPSERVICE, "kpop" ) == 0 ) {
493             kpop = 1;
494         }
495         if (kpop || sasl || ( rpop > 0))
496             pass = getusername ();
497         else
498             ruserpass (host, &user, &pass);
499
500         /*
501          * initialize POP connection
502          */
503         if (pop_init (host, user, pass, snoop, kpop ? 1 : rpop, kpop,
504                       sasl, saslmech) == NOTOK)
505             adios (NULL, "%s", response);
506
507         /* Check if there are any messages */
508         if (pop_stat (&nmsgs, &nbytes) == NOTOK)
509             adios (NULL, "%s", response);
510
511         if (rpop > 0)
512             DROPUSERPRIVS();
513         if (nmsgs == 0) {
514             pop_quit();
515             adios (NULL, "no mail to incorporate");
516         }
517     }
518 #endif /* POP */
519
520     /*
521      * We will get the mail from a file
522      * (typically the standard maildrop)
523      */
524
525     if (inc_type == INC_FILE) {
526         if (from)
527             newmail = from;
528         else if ((newmail = getenv ("MAILDROP")) && *newmail)
529             newmail = m_mailpath (newmail);
530         else if ((newmail = context_find ("maildrop")) && *newmail)
531             newmail = m_mailpath (newmail);
532         else {
533             newmail = concat (MAILDIR, "/", MAILFIL, NULL);
534         }
535         if (stat (newmail, &s1) == NOTOK || s1.st_size == 0)
536             adios (NULL, "no mail to incorporate");
537     }
538
539 #ifdef POP
540     /* skip the folder setup */
541     if ((inc_type == INC_POP) && packfile)
542         goto go_to_it;
543 #endif /* POP */
544
545     if (!context_find ("path"))
546         free (path ("./", TFOLDER));
547     if (!folder)
548         folder = getfolder (0);
549     maildir = m_maildir (folder);
550
551     if ((maildir_copy = strdup(maildir)) == (char *)0)
552         adios (maildir, "error allocating memory to copy maildir");
553
554     if (stat (maildir, &st) == NOTOK) {
555         if (errno != ENOENT)
556             adios (maildir, "error on folder");
557         cp = concat ("Create folder \"", maildir, "\"? ", NULL);
558         if (noisy && !getanswer (cp))
559             done (1);
560         free (cp);
561         if (!makedir (maildir))
562             adios (NULL, "unable to create folder %s", maildir);
563     }
564
565     if (chdir (maildir) == NOTOK)
566         adios (maildir, "unable to change directory to");
567
568     /* read folder and create message structure */
569     if (!(mp = folder_read (folder)))
570         adios (NULL, "unable to read folder %s", folder);
571
572 #ifdef POP
573 go_to_it:
574 #endif /* POP */
575
576     if (inc_type == INC_FILE) {
577         if (access (newmail, W_OK) != NOTOK) {
578             locked++;
579             if (trnflag) {
580                 SIGNAL (SIGHUP, SIG_IGN);
581                 SIGNAL (SIGINT, SIG_IGN);
582                 SIGNAL (SIGQUIT, SIG_IGN);
583                 SIGNAL (SIGTERM, SIG_IGN);
584             }
585
586             GETGROUPPRIVS();       /* Reset gid to lock mail file */
587             in = lkfopen (newmail, "r");
588             DROPGROUPPRIVS();
589             if (in == NULL)
590                 adios (NULL, "unable to lock and fopen %s", newmail);
591             fstat (fileno(in), &s1);
592         } else {
593             trnflag = 0;
594             if ((in = fopen (newmail, "r")) == NULL)
595                 adios (newmail, "unable to read");
596         }
597     }
598
599     /* This shouldn't be necessary but it can't hurt. */
600     DROPGROUPPRIVS();
601
602     if (audfile) {
603         if ((i = stat (audfile, &st)) == NOTOK)
604             advise (NULL, "Creating Receive-Audit: %s", audfile);
605         if ((aud = fopen (audfile, "a")) == NULL)
606             adios (audfile, "unable to append to");
607         else if (i == NOTOK)
608             chmod (audfile, m_gmprot ());
609
610 #ifdef POP
611         fprintf (aud, from ? "<<inc>> %s -ms %s\n"
612                  : host ? "<<inc>> %s -host %s -user %s%s\n"
613                  : "<<inc>> %s\n",
614                  dtimenow (0), from ? from : host, user,
615                  rpop < 0 ? " -apop" : rpop > 0 ? " -rpop" : "");
616 #else /* POP */
617         fprintf (aud, from ? "<<inc>> %s  -ms %s\n" : "<<inc>> %s\n",
618                  dtimenow (0), from);
619 #endif /* POP */
620     }
621
622 #ifdef MHE
623     if (context_find ("mhe")) {
624         cp = concat (maildir, "/++", NULL);
625         i = stat (cp, &st);
626         if ((mhe = fopen (cp, "a")) == NULL)
627             admonish (cp, "unable to append to");
628         else
629             if (i == NOTOK)
630                 chmod (cp, m_gmprot ());
631         free (cp);
632     }
633 #endif /* MHE */
634
635     /* Get new format string */
636     nfs = new_fs (form, format, FORMAT);
637
638     if (noisy) {
639         printf ("Incorporating new mail into %s...\n\n", folder);
640         fflush (stdout);
641     }
642
643 #ifdef POP
644     /*
645      * Get the mail from a POP server
646      */
647     if (inc_type == INC_POP) {
648         if (packfile) {
649             packfile = path (packfile, TFILE);
650             if (stat (packfile, &st) == NOTOK) {
651                 if (errno != ENOENT)
652                     adios (packfile, "error on file");
653                 cp = concat ("Create file \"", packfile, "\"? ", NULL);
654                 if (noisy && !getanswer (cp))
655                     done (1);
656                 free (cp);
657             }
658             msgnum = map_count ();
659             if ((pd = mbx_open (packfile, mbx_style, getuid(), getgid(), m_gmprot()))
660                 == NOTOK)
661                 adios (packfile, "unable to open");
662             if ((pf = fdopen (pd, "w+")) == NULL)
663                 adios (NULL, "unable to fdopen %s", packfile);
664         } else {
665             hghnum = msgnum = mp->hghmsg;
666             /*
667              * Check if we have enough message space for all the new
668              * messages.  If not, then realloc the folder and add enough
669              * space for all new messages plus 10 additional slots.
670              */
671             if (mp->hghmsg + nmsgs >= mp->hghoff
672                 && !(mp = folder_realloc (mp, mp->lowoff, mp->hghmsg + nmsgs + 10)))
673                 adios (NULL, "unable to allocate folder storage");
674         }
675
676         for (i = 1; i <= nmsgs; i++) {
677             msgnum++;
678             if (packfile) {
679                 fseek (pf, 0L, SEEK_CUR);
680                 pos = ftell (pf);
681                 size = 0;
682                 fwrite (mmdlm1, 1, strlen (mmdlm1), pf);
683                 start = ftell (pf);
684
685                 if (pop_retr (i, pop_pack) == NOTOK)
686                     adios (NULL, "%s", response);
687
688                 fseek (pf, 0L, SEEK_CUR);
689                 stop = ftell (pf);
690                 if (fflush (pf))
691                     adios (packfile, "write error on");
692                 fseek (pf, start, SEEK_SET);
693             } else {
694                 cp = getcpy (m_name (msgnum));
695                 if ((pf = fopen (cp, "w+")) == NULL)
696                     adios (cp, "unable to write");
697                 chmod (cp, m_gmprot ());
698                 start = stop = 0L;
699
700                 if (pop_retr (i, pop_action) == NOTOK)
701                     adios (NULL, "%s", response);
702
703                 if (fflush (pf))
704                     adios (cp, "write error on");
705                 fseek (pf, 0L, SEEK_SET);
706             }
707             switch (p = scan (pf, msgnum, 0, nfs, width,
708                               packfile ? 0 : msgnum == mp->hghmsg + 1 && chgflag,
709                               1, NULL, stop - start, noisy)) {
710             case SCNEOF: 
711                 printf ("%*d  empty\n", DMAXFOLDER, msgnum);
712                 break;
713
714             case SCNFAT:
715                 trnflag = 0;
716                 noisy++;
717                 /* advise (cp, "unable to read"); already advised */
718                 /* fall thru */
719
720             case SCNERR:
721             case SCNNUM: 
722                 break;
723
724             case SCNMSG: 
725             case SCNENC:
726             default: 
727                 if (aud)
728                     fputs (scanl, aud);
729 # ifdef MHE
730                 if (mhe)
731                     fputs (scanl, mhe);
732 # endif /* MHE */
733                 if (noisy)
734                     fflush (stdout);
735                 if (!packfile) {
736                     clear_msg_flags (mp, msgnum);
737                     set_exists (mp, msgnum);
738                     set_unseen (mp, msgnum);
739                     mp->msgflags |= SEQMOD;
740                 }
741                 break;
742             }
743             if (packfile) {
744                 fseek (pf, stop, SEEK_SET);
745                 fwrite (mmdlm2, 1, strlen (mmdlm2), pf);
746                 if (fflush (pf) || ferror (pf)) {
747                     int e = errno;
748                     pop_quit ();
749                     errno = e;
750                     adios (packfile, "write error on");
751                 }
752                 map_write (packfile, pd, 0, 0L, start, stop, pos, size, noisy);
753             } else {
754                 if (ferror(pf) || fclose (pf)) {
755                     int e = errno;
756                     unlink (cp);
757                     pop_quit ();
758                     errno = e;
759                     adios (cp, "write error on");
760                 }
761                 free (cp);
762             }
763
764             if (trnflag && pop_dele (i) == NOTOK)
765                 adios (NULL, "%s", response);
766         }
767
768         if (pop_quit () == NOTOK)
769             adios (NULL, "%s", response);
770         if (packfile) {
771             mbx_close (packfile, pd);
772             pd = NOTOK;
773         }
774     }
775 #endif /* POP */
776
777     /*
778      * Get the mail from file (usually mail spool)
779      */
780     if (inc_type == INC_FILE) {
781         m_unknown (in);         /* the MAGIC invocation... */
782         hghnum = msgnum = mp->hghmsg;
783         for (i = 0;;) {
784             /*
785              * Check if we need to allocate more space for message status.
786              * If so, then add space for an additional 100 messages.
787              */
788             if (msgnum >= mp->hghoff
789                 && !(mp = folder_realloc (mp, mp->lowoff, mp->hghoff + 100))) {
790                 advise (NULL, "unable to allocate folder storage");
791                 i = NOTOK;
792                 break;
793             }
794
795 #if 0
796             /* copy file from spool to tmp file */
797             tmpfilenam = m_scratch ("", invo_name);
798             if ((fd = creat (tmpfilenam, m_gmprot ())) == NOTOK)
799                 adios (tmpfilenam, "unable to create");
800             chmod (tmpfilenam, m_gmprot ());
801             if (!(in2 = fdopen (fd, "r+")))
802                 adios (tmpfilenam, "unable to access");
803             cpymsg (in, in2);
804
805             /* link message into folder */
806             newmsg = folder_addmsg(mp, tmpfilenam);
807 #endif
808             /* create scanline for new message */
809             switch (i = scan (in, msgnum + 1, msgnum + 1, nfs, width,
810                               msgnum == hghnum && chgflag, 1, NULL, 0L, noisy)) {
811             case SCNFAT:
812             case SCNEOF: 
813                 break;
814
815             case SCNERR:
816                 if (aud)
817                     fputs ("inc aborted!\n", aud);
818                 advise (NULL, "aborted!");      /* doesn't clean up locks! */
819                 break;
820
821             case SCNNUM: 
822                 advise (NULL, "BUG in %s, number out of range", invo_name);
823                 break;
824
825             default: 
826                 advise (NULL, "BUG in %s, scan() botch (%d)", invo_name, i);
827                 break;
828
829             case SCNMSG:
830             case SCNENC:
831                 /*
832                  *  Run the external program hook on the message.
833                  */
834
835                 (void)snprintf(b, sizeof (b), "%s/%d", maildir_copy, msgnum + 1);
836                 (void)ext_hook("add-hook", b, (char *)0);
837
838                 if (aud)
839                     fputs (scanl, aud);
840 #ifdef MHE
841                 if (mhe)
842                     fputs (scanl, mhe);
843 #endif /* MHE */
844                 if (noisy)
845                     fflush (stdout);
846
847                 msgnum++;
848                 mp->hghmsg++;
849                 mp->nummsg++;
850                 if (mp->lowmsg == 0) mp->lowmsg = 1;
851
852                 clear_msg_flags (mp, msgnum);
853                 set_exists (mp, msgnum);
854                 set_unseen (mp, msgnum);
855                 mp->msgflags |= SEQMOD;
856                 continue;
857             }
858             break;
859         }
860     }
861
862 #ifdef POP
863     if (p < 0) {                /* error */
864 #else
865     if (i < 0) {                /* error */
866 #endif
867         if (locked) {
868             GETGROUPPRIVS();      /* Be sure we can unlock mail file */
869             (void) lkfclose (in, newmail); in = NULL;
870             DROPGROUPPRIVS();    /* And then return us to normal privileges */
871         } else {
872             fclose (in); in = NULL;
873         }
874         adios (NULL, "failed");
875     }
876
877     if (aud)
878         fclose (aud);
879
880 #ifdef MHE
881     if (mhe)
882         fclose (mhe);
883 #endif /* MHE */
884
885     if (noisy)
886         fflush (stdout);
887
888 #ifdef POP
889     if ((inc_type == INC_POP) && packfile)
890         done (0);
891 #endif /* POP */
892
893     /*
894      * truncate file we are incorporating from
895      */
896     if (inc_type == INC_FILE) {
897         if (trnflag) {
898             if (stat (newmail, &st) != NOTOK && s1.st_mtime != st.st_mtime)
899                 advise (NULL, "new messages have arrived!\007");
900             else {
901                 if ((i = creat (newmail, 0600)) != NOTOK)
902                     close (i);
903                 else
904                     admonish (newmail, "error zero'ing");
905                 unlink(map_name(newmail));
906             }
907         } else {
908             if (noisy)
909                 printf ("%s not zero'd\n", newmail);
910         }
911     }
912
913     if (msgnum == hghnum) {
914         admonish (NULL, "no messages incorporated");
915     } else {
916         context_replace (pfolder, folder);      /* update current folder */
917         if (chgflag)
918             mp->curmsg = hghnum + 1;
919         mp->hghmsg = msgnum;
920         if (mp->lowmsg == 0)
921             mp->lowmsg = 1;
922         if (chgflag)            /* sigh... */
923             seq_setcur (mp, mp->curmsg);
924     }
925
926     /*
927      * unlock the mail spool
928      */
929     if (inc_type == INC_FILE) {
930         if (locked) {
931            GETGROUPPRIVS();        /* Be sure we can unlock mail file */
932            (void) lkfclose (in, newmail); in = NULL;
933            DROPGROUPPRIVS();       /* And then return us to normal privileges */
934         } else {
935             fclose (in); in = NULL;
936         }
937     }
938
939     seq_setunseen (mp, 0);      /* set the Unseen-Sequence */
940     seq_save (mp);              /* synchronize sequences   */
941     context_save ();            /* save the context file   */
942     return done (0);
943 }
944
945
946 #if 0
947
948 /*
949  * Copy message message from spool into
950  * temporary file.  Massage the "From " line
951  * while copying.
952  */
953
954 cpymsg (FILE *in, FILE *out)
955 {
956     int state;
957     char *tmpbuf, name[NAMESZ];
958
959     for (;;) {
960         state = m_getfld (state, name, tmpbuf, rlwidth, in);
961         switch (state) {
962         case FLD:
963         case FLDPLUS:
964             break;
965         case BODY:
966             break;
967         case LENERR:
968         case FMTERR:
969             break;
970         case FILEEOF:
971             break;
972         default:
973         }
974     }
975 }
976 #endif /* if 0 */
977
978
979 int
980 done (int status)
981 {
982 #ifdef POP
983     if (packfile && pd != NOTOK)
984         mbx_close (packfile, pd);
985 #endif /* POP */
986     if (locked)
987     {
988         GETGROUPPRIVS();
989         lkfclose(in, newmail);
990         DROPGROUPPRIVS();
991     }
992     exit (status);
993     return 1;  /* dead code to satisfy the compiler */
994 }
995
996 #ifdef POP
997 static int
998 pop_action (char *s)
999 {
1000     fprintf (pf, "%s\n", s);
1001     stop += strlen (s) + 1;
1002     return 0;  /* Is return value used?  This was missing before 1999-07-15. */
1003 }
1004
1005 static int
1006 pop_pack (char *s)
1007 {
1008     int j;
1009     char buffer[BUFSIZ];
1010
1011     snprintf (buffer, sizeof(buffer), "%s\n", s);
1012     for (j = 0; (j = stringdex (mmdlm1, buffer)) >= 0; buffer[j]++)
1013         continue;
1014     for (j = 0; (j = stringdex (mmdlm2, buffer)) >= 0; buffer[j]++)
1015         continue;
1016     fputs (buffer, pf);
1017     size += strlen (buffer) + 1;
1018     return 0;  /* Is return value used?  This was missing before 1999-07-15. */
1019 }
1020
1021 static int
1022 map_count (void)
1023 {
1024     int md;
1025     char *cp;
1026     struct drop d;
1027     struct stat st;
1028
1029     if (stat (packfile, &st) == NOTOK)
1030         return 0;
1031     if ((md = open (cp = map_name (packfile), O_RDONLY)) == NOTOK
1032             || map_chk (cp, md, &d, (long) st.st_size, 1)) {
1033         if (md != NOTOK)
1034             close (md);
1035         return 0;
1036     }
1037     close (md);
1038     return (d.d_id);
1039 }
1040 #endif /* POP */