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