]>
diplodocus.org Git - nmh/blob - uip/slocal.c
3 * slocal.c -- asynchronously filter and deliver new mail
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.
11 * Under sendmail, users should add the line
13 * "| /usr/local/nmh/lib/slocal"
15 * to their $HOME/.forward file.
19 /* Changed to use getutent() and friends. Assumes that when getutent() exists,
20 * a number of other things also exist. Please check.
21 * Ruud de Rooij <ruud@ruud.org> Sun, 28 May 2000 17:28:55 +0200
25 #include <h/dropsbr.h>
26 #include <h/rcvmail.h>
27 #include <h/signals.h>
34 #include <sys/ioctl.h>
37 #ifdef INITGROUPS_HEADER
38 #include INITGROUPS_HEADER
40 /* On AIX 4.1, initgroups() is defined and even documented (giving the parameter
41 types as char* and int), but doesn't have a prototype in any of the system
42 header files. AIX 4.3, SunOS 4.1.3, and ULTRIX 4.2A have the same
44 extern int initgroups(char*, int);
47 /* This define is needed for Berkeley db v2 and above to
48 * make the header file expose the 'historical' ndbm APIs.
49 * We define it unconditionally because this is simple and
52 #define DB_DBM_HSEARCH 1
62 # define UTMP_FILE _PATH_UTMP
64 # define UTMP_FILE "/etc/utmp"
69 static struct swit switches
[] = {
71 { "addr address", 0 },
77 { "sender address", 0 },
79 { "mailbox file", 0 },
81 { "home directory", -4 },
85 { "maildelivery file", 0 },
90 #define SUPPRESSDUP 10
92 #define NSUPPRESSDUP 11
93 { "nosuppressdup", 0 },
103 static int globbed
= 0; /* have we built "vars" table yet? */
104 static int parsed
= 0; /* have we built header field table yet */
105 static int utmped
= 0; /* have we scanned umtp(x) file yet */
106 static int suppressdup
= 0; /* are we suppressing duplicate messages? */
108 static int verbose
= 0;
109 static int debug
= 0;
111 static char *addr
= NULL
;
112 static char *user
= NULL
;
113 static char *info
= NULL
;
114 static char *file
= NULL
;
115 static char *sender
= NULL
;
116 static char *envelope
= NULL
; /* envelope information ("From " line) */
117 static char *mbox
= NULL
;
118 static char *home
= NULL
;
120 static struct passwd
*pw
; /* passwd file entry */
122 static char ddate
[BUFSIZ
]; /* record the delivery date */
125 static jmp_buf myctx
;
127 /* flags for pair->p_flags */
129 #define P_ADR 0x01 /* field is address */
130 #define P_HID 0x02 /* special (fake) field */
142 * Lookup table for matching fields and patterns
143 * in messages. The rest of the table is added
144 * when the message is parsed.
146 static struct pair hdrs
[NVEC
+ 1] = {
147 { "source", NULL
, P_HID
},
148 { "addr", NULL
, P_HID
},
149 { "Return-Path", NULL
, P_ADR
},
150 { "Reply-To", NULL
, P_ADR
},
151 { "From", NULL
, P_ADR
},
152 { "Sender", NULL
, P_ADR
},
153 { "To", NULL
, P_ADR
},
154 { "cc", NULL
, P_ADR
},
155 { "Resent-Reply-To", NULL
, P_ADR
},
156 { "Resent-From", NULL
, P_ADR
},
157 { "Resent-Sender", NULL
, P_ADR
},
158 { "Resent-To", NULL
, P_ADR
},
159 { "Resent-cc", NULL
, P_ADR
},
164 * The list of builtin variables to expand in a string
165 * before it is executed by the "pipe" or "qpipe" action.
167 static struct pair vars
[] = {
168 { "sender", NULL
, P_NIL
},
169 { "address", NULL
, P_NIL
},
170 { "size", NULL
, P_NIL
},
171 { "reply-to", NULL
, P_CHK
},
172 { "info", NULL
, P_NIL
},
176 extern char **environ
;
181 static int localmail (int, char *);
182 static int usr_delivery (int, char *, int);
183 static int split (char *, char **);
184 static int parse (int);
185 static void expand (char *, char *, int);
186 static void glob (int);
187 static struct pair
*lookup (struct pair
*, char *);
188 static int logged_in (void);
189 static int timely (char *, char *);
190 static int usr_file (int, char *, int);
191 static int usr_pipe (int, char *, char *, char **, int);
192 static int usr_folder (int, char *);
193 static RETSIGTYPE
alrmser (int);
194 static void get_sender (char *, char **);
195 static int copy_message (int, char *, int);
196 static void verbose_printf (char *fmt
, ...);
197 static void adorn (char *, char *, ...);
198 static void debug_printf (char *fmt
, ...);
199 static int suppress_duplicates (int, char *);
200 static char *trim (char *);
204 main (int argc
, char **argv
)
208 char *cp
, *mdlvr
= NULL
, buf
[BUFSIZ
];
209 char mailbox
[BUFSIZ
], tmpfil
[BUFSIZ
];
210 char **argp
, **arguments
;
213 setlocale(LC_ALL
, "");
215 invo_name
= r1bindex (*argv
, '/');
217 /* foil search of user profile/context */
218 if (context_foil (NULL
) == -1)
221 mts_init (invo_name
);
222 arguments
= getarguments (invo_name
, argc
, argv
, 0);
225 /* Parse arguments */
226 while ((cp
= *argp
++)) {
228 switch (smatch (++cp
, switches
)) {
230 ambigsw (cp
, switches
);
233 adios (NULL
, "-%s unknown", cp
);
236 snprintf (buf
, sizeof(buf
),
237 "%s [switches] [address info sender]", invo_name
);
238 print_help (buf
, switches
, 0);
241 print_version(invo_name
);
245 if (!(addr
= *argp
++))/* allow -xyz arguments */
246 adios (NULL
, "missing argument to %s", argp
[-2]);
249 if (!(info
= *argp
++))/* allow -xyz arguments */
250 adios (NULL
, "missing argument to %s", argp
[-2]);
253 if (!(user
= *argp
++))/* allow -xyz arguments */
254 adios (NULL
, "missing argument to %s", argp
[-2]);
257 if (!(file
= *argp
++) || *file
== '-')
258 adios (NULL
, "missing argument to %s", argp
[-2]);
261 if (!(sender
= *argp
++))/* allow -xyz arguments */
262 adios (NULL
, "missing argument to %s", argp
[-2]);
265 if (!(mbox
= *argp
++) || *mbox
== '-')
266 adios (NULL
, "missing argument to %s", argp
[-2]);
269 if (!(home
= *argp
++) || *home
== '-')
270 adios (NULL
, "missing argument to %s", argp
[-2]);
274 if (!(cp
= *argp
++) || *cp
== '-')
275 adios (NULL
, "missing argument to %s", argp
[-2]);
277 adios (NULL
, "only one maildelivery file at a time!");
300 switch (argp
- (argv
+ 1)) {
316 addr
= getusername ();
318 user
= (cp
= strchr(addr
, '.')) ? ++cp
: addr
;
319 if ((pw
= getpwnam (user
)) == NULL
)
320 adios (NULL
, "no such local user as %s", user
);
322 if (chdir (pw
->pw_dir
) == -1)
326 if (geteuid() == 0) {
328 initgroups (pw
->pw_name
, pw
->pw_gid
);
335 setbuf (stdin
, NULL
);
337 /* Record the delivery time */
338 if ((now
= dlocaltimenow ()) == NULL
)
339 adios (NULL
, "unable to ascertain local time");
340 snprintf (ddate
, sizeof(ddate
), "Delivery-Date: %s\n", dtimenow (0));
343 * Copy the message to a temporary file
348 /* getting message from file */
349 if ((tempfd
= open (file
, O_RDONLY
)) == -1)
350 adios (file
, "unable to open");
352 debug_printf ("retrieving message from file \"%s\"\n", file
);
353 if ((fd
= copy_message (tempfd
, tmpfil
, 1)) == -1)
354 adios (NULL
, "unable to create temporary file");
357 /* getting message from stdin */
359 debug_printf ("retrieving message from stdin\n");
360 if ((fd
= copy_message (fileno (stdin
), tmpfil
, 1)) == -1)
361 adios (NULL
, "unable to create temporary file");
365 debug_printf ("temporary file=\"%s\"\n", tmpfil
);
367 /* Delete the temp file now or a copy of every single message passed through
368 slocal will be left in the /tmp directory until deleted manually! This
369 unlink() used to be under an 'else' of the 'if (debug)' above, but since
370 some people like to always run slocal with -debug and log the results,
371 the /tmp directory would get choked over time. Of course, now that we
372 always delete the temp file, the "temporary file=" message above is
373 somewhat pointless -- someone watching debug output wouldn't have a
374 chance to 'tail -f' or 'ln' the temp file before it's unlinked. The best
375 thing would be to delay this unlink() until later if debug == 1, but I'll
376 leave that for someone who cares about the temp-file-accessing
377 functionality (they'll have to watch out for cases where we adios()). */
380 if (!(fp
= fdopen (fd
, "r+")))
381 adios (NULL
, "unable to access temporary file");
384 * If no sender given, extract it
385 * from envelope information. */
387 get_sender (envelope
, &sender
);
390 snprintf (mailbox
, sizeof(mailbox
), "%s/%s",
391 mmdfldir
[0] ? mmdfldir
: pw
->pw_dir
,
392 mmdflfil
[0] ? mmdflfil
: pw
->pw_name
);
399 debug_printf ("addr=\"%s\"\n", trim(addr
));
400 debug_printf ("user=\"%s\"\n", trim(user
));
401 debug_printf ("info=\"%s\"\n", trim(info
));
402 debug_printf ("sender=\"%s\"\n", trim(sender
));
403 debug_printf ("envelope=\"%s\"\n", envelope
? trim(envelope
) : "");
404 debug_printf ("mbox=\"%s\"\n", trim(mbox
));
405 debug_printf ("home=\"%s\"\n", trim(home
));
406 debug_printf ("ddate=\"%s\"\n", trim(ddate
));
407 debug_printf ("now=%02d:%02d\n\n", now
->tw_hour
, now
->tw_min
);
410 /* deliver the message */
411 status
= localmail (fd
, mdlvr
);
413 done (status
!= -1 ? RCV_MOK
: RCV_MBX
);
419 * Main routine for delivering message.
423 localmail (int fd
, char *mdlvr
)
425 /* check if this message is a duplicate */
427 suppress_duplicates(fd
, mdlvr
? mdlvr
: ".maildelivery") == DONE
)
430 /* delivery according to personal Maildelivery file */
431 if (usr_delivery (fd
, mdlvr
? mdlvr
: ".maildelivery", 0) != -1)
434 /* delivery according to global Maildelivery file */
435 if (usr_delivery (fd
, maildelivery
, 1) != -1)
439 verbose_printf ("(delivering to standard mail spool)\n");
441 /* last resort - deliver to standard mail spool */
442 return usr_file (fd
, mbox
, MBOX_FORMAT
);
446 #define matches(a,b) (stringdex (b, a) >= 0)
449 * Parse the delivery file, and process incoming message.
453 usr_delivery (int fd
, char *delivery
, int su
)
455 int i
, accept
, status
=1, won
, vecp
, next
;
456 char *field
, *pattern
, *action
, *result
, *string
;
457 char buffer
[BUFSIZ
], tmpbuf
[BUFSIZ
];
458 char *cp
, *vec
[NVEC
];
463 /* open the delivery file */
464 if ((fp
= fopen (delivery
, "r")) == NULL
)
467 /* check if delivery file has bad ownership or permissions */
468 if (fstat (fileno (fp
), &st
) == -1
469 || (st
.st_uid
!= 0 && (su
|| st
.st_uid
!= pw
->pw_uid
))
470 || st
.st_mode
& (S_IWGRP
|S_IWOTH
)) {
472 verbose_printf ("WARNING: %s has bad ownership/modes (su=%d,uid=%d,owner=%d,mode=0%o)\n",
473 delivery
, su
, (int) pw
->pw_uid
, (int) st
.st_uid
, (int) st
.st_mode
);
481 /* read and process delivery file */
482 while (fgets (buffer
, sizeof(buffer
), fp
)) {
483 /* skip comments and empty lines */
484 if (*buffer
== '#' || *buffer
== '\n')
487 /* zap trailing newline */
488 if ((cp
= strchr(buffer
, '\n')))
491 /* split buffer into fields */
492 vecp
= split (buffer
, vec
);
494 /* check for too few fields */
497 debug_printf ("WARNING: entry with only %d fields, skipping.\n", vecp
);
502 for (i
= 0; vec
[i
]; i
++)
503 debug_printf ("vec[%d]: \"%s\"\n", i
, trim(vec
[i
]));
512 /* find out how to perform the action */
517 * If previous condition failed, don't
518 * do this - else fall through
521 continue; /* else fall */
525 * If already delivered, skip this action. Else
526 * consider delivered if action is successful.
529 continue; /* else fall */
534 * Take action, and consider delivered if
535 * action is successful.
544 * Take action, but don't consider delivered, even
545 * if action is successful
552 if (!mh_strcasecmp (vec
[5], "select")) {
553 if (logged_in () != -1)
555 if (vecp
> 7 && timely (vec
[6], vec
[7]) == -1)
560 /* check if the field matches */
568 * "default" matches only if the message hasn't
569 * been delivered yet.
571 if (!mh_strcasecmp (field
, "default")) {
578 /* parse message and build lookup table */
579 if (!parsed
&& parse (fd
) == -1) {
584 * find header field in lookup table, and
585 * see if the pattern matches.
587 if ((p
= lookup (hdrs
, field
)) && (p
->p_value
!= NULL
)
588 && matches (p
->p_value
, pattern
)) {
597 /* find out the action to perform */
600 /* deliver to quoted pipe */
601 if (mh_strcasecmp (action
, "qpipe"))
602 continue; /* else fall */
604 expand (tmpbuf
, string
, fd
);
605 if (split (tmpbuf
, vec
) < 1)
607 status
= usr_pipe (fd
, tmpbuf
, vec
[0], vec
, 0);
611 /* deliver to pipe */
612 if (mh_strcasecmp (action
, "pipe"))
613 continue; /* else fall */
617 expand (tmpbuf
, string
, fd
);
620 status
= usr_pipe (fd
, tmpbuf
, "/bin/sh", vec
+ 2, 0);
625 if (!mh_strcasecmp (action
, "file")) {
626 status
= usr_file (fd
, string
, MBOX_FORMAT
);
629 /* deliver to nmh folder */
630 else if (mh_strcasecmp (action
, "folder"))
631 continue; /* else fall */
633 status
= usr_folder (fd
, string
);
638 if (!mh_strcasecmp (action
, "mmdf")) {
639 status
= usr_file (fd
, string
, MMDF_FORMAT
);
643 else if (mh_strcasecmp (action
, "mbox"))
644 continue; /* else fall */
648 status
= usr_file (fd
, string
, MBOX_FORMAT
);
653 if (mh_strcasecmp (action
, "destroy"))
659 if (status
) next
= 0; /* action failed, mark for 'N' result */
661 if (accept
&& status
== 0)
666 return (won
? 0 : -1);
673 * Split buffer into fields (delimited by whitespace or
674 * comma's). Return the number of fields found.
678 split (char *cp
, char **vec
)
685 /* split into a maximum of NVEC fields */
686 for (i
= 0; i
<= NVEC
;) {
689 /* zap any whitespace and comma's */
690 while (isspace (*s
) || *s
== ',')
693 /* end of buffer, time to leave */
697 /* get double quote text as a single field */
699 for (vec
[i
++] = ++s
; *s
&& *s
!= '"'; s
++) {
701 * Check for escaped double quote. We need
702 * to shift the string to remove slash.
710 if (*s
== '"') /* zap trailing double quote */
715 if (*s
== QUOTE
&& *++s
!= '"')
719 /* move forward to next field delimiter */
720 while (*s
&& !isspace (*s
) && *s
!= ',')
730 * Parse the headers of a message, and build the
731 * lookup table for matching fields and patterns.
740 char name
[NAMESZ
], field
[BUFSIZ
];
747 /* get a new FILE pointer to message */
748 if ((fd1
= dup (fd
)) == -1)
750 if ((in
= fdopen (fd1
, "r")) == NULL
) {
756 /* add special entries to lookup table */
757 if ((p
= lookup (hdrs
, "source")))
758 p
->p_value
= getcpy (sender
);
759 if ((p
= lookup (hdrs
, "addr")))
760 p
->p_value
= getcpy (addr
);
763 * Scan the headers of the message and build
766 for (i
= 0, state
= FLD
;;) {
767 switch (state
= m_getfld (state
, name
, field
, sizeof(field
), in
)) {
771 lp
= add (field
, NULL
);
772 while (state
== FLDPLUS
) {
773 state
= m_getfld (state
, name
, field
, sizeof(field
), in
);
774 lp
= add (field
, lp
);
776 for (p
= hdrs
; p
->p_name
; p
++) {
777 if (!mh_strcasecmp (p
->p_name
, name
)) {
778 if (!(p
->p_flags
& P_HID
)) {
779 if ((cp
= p
->p_value
)) {
780 if (p
->p_flags
& P_ADR
) {
781 dp
= cp
+ strlen (cp
) - 1;
784 cp
= add (",\n\t", cp
);
789 p
->p_value
= add (lp
, cp
);
795 if (p
->p_name
== NULL
&& i
< NVEC
) {
796 p
->p_name
= getcpy (name
);
813 advise (NULL
, "format error in message");
817 advise (NULL
, "internal error in m_getfld");
825 if ((p
= lookup (vars
, "reply-to"))) {
826 if ((q
= lookup (hdrs
, "reply-to")) == NULL
|| q
->p_value
== NULL
)
827 q
= lookup (hdrs
, "from");
828 p
->p_value
= getcpy (q
? q
->p_value
: "");
829 p
->p_flags
&= ~P_CHK
;
831 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
832 p
- vars
, p
->p_name
, trim(p
->p_value
));
835 for (p
= hdrs
; p
->p_name
; p
++)
836 debug_printf ("hdrs[%d]: name=\"%s\" value=\"%s\"\n",
837 p
- hdrs
, p
->p_name
, p
->p_value
? trim(p
->p_value
) : "");
848 * Expand any builtin variables such as $(sender),
849 * $(address), etc., in a string.
853 expand (char *s1
, char *s2
, int fd
)
861 while ((c
= *s2
++)) {
862 if (c
!= '$' || *s2
!= LPAREN
) {
865 for (cp
= ++s2
; *s2
&& *s2
!= RPAREN
; s2
++)
872 if ((p
= lookup (vars
, cp
))) {
873 if (!parsed
&& (p
->p_flags
& P_CHK
))
876 strcpy (s1
, p
->p_value
);
886 * Fill in the information missing from the "vars"
887 * table, which is necessary to expand any builtin
888 * variables in the string for a "pipe" or "qpipe"
902 if ((p
= lookup (vars
, "sender")))
903 p
->p_value
= getcpy (sender
);
904 if ((p
= lookup (vars
, "address")))
905 p
->p_value
= getcpy (addr
);
906 if ((p
= lookup (vars
, "size"))) {
907 snprintf (buffer
, sizeof(buffer
), "%d",
908 fstat (fd
, &st
) != -1 ? (int) st
.st_size
: 0);
909 p
->p_value
= getcpy (buffer
);
911 if ((p
= lookup (vars
, "info")))
912 p
->p_value
= getcpy (info
);
915 for (p
= vars
; p
->p_name
; p
++)
916 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
917 p
- vars
, p
->p_name
, trim(p
->p_value
));
923 * Find a matching name in a lookup table. If found,
924 * return the "pairs" entry, else return NULL.
928 lookup (struct pair
*pairs
, char *key
)
930 for (; pairs
->p_name
; pairs
++)
931 if (!mh_strcasecmp (pairs
->p_name
, key
))
939 * Check utmp(x) file to see if user is currently
954 while ((utp
= getutent()) != NULL
) {
956 #ifdef HAVE_STRUCT_UTMP_UT_TYPE
957 utp
->ut_type
== USER_PROCESS
961 && strncmp (user
, utp
->ut_name
, sizeof(utp
->ut_name
)) == 0) {
965 return (utmped
= DONE
);
970 return (utmped
= NOTOK
);
982 if ((uf
= fopen (UTMP_FILE
, "r")) == NULL
)
985 while (fread ((char *) &ut
, sizeof(ut
), 1, uf
) == 1) {
986 if (ut
.ut_name
[0] != 0
987 && strncmp (user
, ut
.ut_name
, sizeof(ut
.ut_name
)) == 0) {
991 return (utmped
= DONE
);
996 return (utmped
= NOTOK
);
1000 #define check(t,a,b) if (t < a || t > b) return -1
1001 #define cmpar(h1,m1,h2,m2) if (h1 < h2 || (h1 == h2 && m1 < m2)) return 0
1004 timely (char *t1
, char *t2
)
1006 int t1hours
, t1mins
, t2hours
, t2mins
;
1008 if (sscanf (t1
, "%d:%d", &t1hours
, &t1mins
) != 2)
1010 check (t1hours
, 0, 23);
1011 check (t1mins
, 0, 59);
1013 if (sscanf (t2
, "%d:%d", &t2hours
, &t2mins
) != 2)
1015 check (t2hours
, 0, 23);
1016 check (t2mins
, 0, 59);
1018 cmpar (now
->tw_hour
, now
->tw_min
, t1hours
, t1mins
);
1019 cmpar (t2hours
, t2mins
, now
->tw_hour
, now
->tw_min
);
1026 * Deliver message by appending to a file.
1030 usr_file (int fd
, char *mailbox
, int mbx_style
)
1035 verbose_printf ("delivering to file \"%s\"", mailbox
);
1037 if (mbx_style
== MBOX_FORMAT
) {
1039 verbose_printf (" (mbox style)");
1043 verbose_printf (" (mmdf style)");
1047 /* open and lock the file */
1048 if ((md
= mbx_open (mailbox
, mbx_style
, pw
->pw_uid
, pw
->pw_gid
, m_gmprot())) == -1) {
1050 adorn ("", "unable to open:");
1054 lseek (fd
, (off_t
) 0, SEEK_SET
);
1056 /* append message to file */
1057 if (mbx_copy (mailbox
, mbx_style
, md
, fd
, mapping
, NULL
, verbose
) == -1) {
1059 adorn ("", "error writing to:");
1063 /* close and unlock file */
1064 if (mbx_close (mailbox
, md
) == NOTOK
) {
1066 adorn ("", "error closing:");
1071 verbose_printf (", success.\n");
1077 * Deliver message to a nmh folder.
1081 usr_folder (int fd
, char *string
)
1084 char folder
[BUFSIZ
], *vec
[3];
1086 /* get folder name ready */
1088 strncpy(folder
, string
, sizeof(folder
));
1090 snprintf(folder
, sizeof(folder
), "+%s", string
);
1093 verbose_printf ("delivering to folder \"%s\"", folder
+ 1);
1095 vec
[0] = "rcvstore";
1099 /* use rcvstore to put message in folder */
1100 status
= usr_pipe (fd
, "rcvstore", rcvstoreproc
, vec
, 1);
1104 * Currently, verbose status messages are handled by usr_pipe().
1108 verbose_printf (", success.\n");
1110 verbose_printf (", failed.\n");
1118 * Deliver message to a process.
1122 usr_pipe (int fd
, char *cmd
, char *pgm
, char **vec
, int suppress
)
1125 int i
, bytes
, seconds
, status
;
1128 if (verbose
&& !suppress
)
1129 verbose_printf ("delivering to pipe \"%s\"", cmd
);
1131 lseek (fd
, (off_t
) 0, SEEK_SET
);
1133 for (i
= 0; (child_id
= fork()) == -1 && i
< 5; i
++)
1140 adorn ("fork", "unable to");
1147 freopen ("/dev/null", "w", stdout
);
1148 freopen ("/dev/null", "w", stderr
);
1154 if ((fd
= open ("/dev/tty", O_RDWR
)) != -1) {
1155 ioctl (fd
, TIOCNOTTY
, NULL
);
1158 #endif /* TIOCNOTTY */
1160 setpgid ((pid_t
) 0, getpid ()); /* put in own process group */
1163 m_putenv ("USER", pw
->pw_name
);
1164 m_putenv ("HOME", pw
->pw_dir
);
1165 m_putenv ("SHELL", pw
->pw_shell
);
1171 /* parent process */
1172 if (!setjmp (myctx
)) {
1173 SIGNAL (SIGALRM
, alrmser
);
1174 bytes
= fstat (fd
, &st
) != -1 ? (int) st
.st_size
: 100;
1176 /* amount of time to wait depends on message size */
1178 /* give at least 5 minutes */
1180 } else if (bytes
>= 90000) {
1181 /* a half hour is long enough */
1184 seconds
= (bytes
/ 60) + 300;
1186 alarm ((unsigned int) seconds
);
1187 status
= pidwait (child_id
, 0);
1192 verbose_printf (", success.\n");
1194 if ((status
& 0xff00) == 0xff00)
1195 verbose_printf (", system error\n");
1197 pidstatus (status
, stdout
, ", failed");
1199 return (status
== 0 ? 0 : -1);
1202 * Ruthlessly kill the child and anything
1203 * else in its process group.
1205 killpg(child_id
, SIGKILL
);
1207 verbose_printf (", timed-out; terminated\n");
1217 #ifndef RELIABLE_SIGNALS
1218 SIGNAL (SIGALRM
, alrmser
);
1221 longjmp (myctx
, DONE
);
1226 * Get the `sender' from the envelope
1227 * information ("From " line).
1231 get_sender (char *envelope
, char **sender
)
1235 unsigned char buffer
[BUFSIZ
];
1237 if (envelope
== NULL
) {
1238 *sender
= getcpy ("");
1242 i
= strlen ("From ");
1243 strncpy (buffer
, envelope
+ i
, sizeof(buffer
));
1244 if ((cp
= strchr(buffer
, '\n'))) {
1254 for (cp
= buffer
+ strlen (buffer
) - 1; cp
>= buffer
; cp
--)
1259 *sender
= getcpy (buffer
);
1264 * Copy message into a temporary file.
1265 * While copying, it will do some header processing
1266 * including the extraction of the envelope information.
1270 copy_message (int qd
, char *tmpfil
, int fold
)
1272 int i
, first
= 1, fd1
, fd2
;
1273 char buffer
[BUFSIZ
];
1277 tfile
= m_mktemp2(NULL
, invo_name
, &fd1
, NULL
);
1278 if (tfile
== NULL
) return -1;
1280 strncpy (tmpfil
, tfile
, BUFSIZ
);
1283 while ((i
= read (qd
, buffer
, sizeof(buffer
))) > 0)
1284 if (write (fd1
, buffer
, i
) != i
) {
1292 lseek (fd1
, (off_t
) 0, SEEK_SET
);
1296 /* dup the fd for incoming message */
1297 if ((fd2
= dup (qd
)) == -1) {
1302 /* now create a FILE pointer for it */
1303 if ((qfp
= fdopen (fd2
, "r")) == NULL
) {
1309 /* dup the fd for temporary file */
1310 if ((fd2
= dup (fd1
)) == -1) {
1316 /* now create a FILE pointer for it */
1317 if ((ffp
= fdopen (fd2
, "r+")) == NULL
) {
1325 * copy message into temporary file
1326 * and massage the headers. Save
1327 * a copy of the "From " line for later.
1329 i
= strlen ("From ");
1330 while (fgets (buffer
, sizeof(buffer
), qfp
)) {
1333 if (!strncmp (buffer
, "From ", i
)) {
1334 /* get copy of envelope information ("From " line) */
1335 envelope
= getcpy (buffer
);
1338 /* First go ahead and put "From " line in message */
1339 fputs (buffer
, ffp
);
1344 /* Put the delivery date in message */
1353 fputs (buffer
, ffp
);
1365 lseek (fd1
, (off_t
) 0, SEEK_SET
);
1377 * Trim strings for pretty printing of debugging output
1383 char buffer
[BUFSIZ
*4];
1384 unsigned char *bp
, *sp
;
1389 /* copy string into temp buffer */
1390 strncpy (buffer
, cp
, sizeof(buffer
));
1393 /* skip over leading whitespace */
1394 while (isspace(*bp
))
1397 /* start at the end and zap trailing whitespace */
1398 for (sp
= bp
+ strlen(bp
) - 1; sp
>= bp
; sp
--) {
1405 /* replace remaining whitespace with spaces */
1406 for (sp
= bp
; *sp
; sp
++)
1410 /* now return a copy */
1415 * Function for printing `verbose' messages.
1419 verbose_printf (char *fmt
, ...)
1424 vfprintf (stdout
, fmt
, ap
);
1427 fflush (stdout
); /* now flush output */
1432 * Function for printing `verbose' delivery
1437 adorn (char *what
, char *fmt
, ...)
1443 eindex
= errno
; /* save the errno */
1444 fprintf (stdout
, ", ");
1447 vfprintf (stdout
, fmt
, ap
);
1452 fprintf (stdout
, " %s: ", what
);
1453 if ((s
= strerror (eindex
)))
1454 fprintf (stdout
, "%s", s
);
1456 fprintf (stdout
, "Error %d", eindex
);
1459 fputc ('\n', stdout
);
1465 * Function for printing `debug' messages.
1469 debug_printf (char *fmt
, ...)
1474 vfprintf (stderr
, fmt
, ap
);
1480 * Check ndbm/db file(s) to see if the Message-Id of this
1481 * message matches the Message-Id of a previous message,
1482 * so we can discard it. If it doesn't match, we add the
1483 * Message-Id of this message to the ndbm/db file.
1486 suppress_duplicates (int fd
, char *file
)
1488 int fd1
, lockfd
, state
, result
;
1489 char *cp
, buf
[BUFSIZ
], name
[NAMESZ
];
1494 if ((fd1
= dup (fd
)) == -1)
1496 if (!(in
= fdopen (fd1
, "r"))) {
1502 for (state
= FLD
;;) {
1503 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1508 /* Search for the message ID */
1509 if (mh_strcasecmp (name
, "Message-ID")) {
1510 while (state
== FLDPLUS
)
1511 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1515 cp
= add (buf
, NULL
);
1516 while (state
== FLDPLUS
) {
1517 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1520 key
.dptr
= trimcpy (cp
);
1521 key
.dsize
= strlen (key
.dptr
) + 1;
1525 if (!(db
= dbm_open (file
, O_RDWR
| O_CREAT
, 0600))) {
1526 advise (file
, "unable to perform dbm_open on");
1532 * Since it is difficult to portable lock a ndbm file,
1533 * we will open and lock the Maildelivery file instead.
1534 * This will fail if your Maildelivery file doesn't
1537 if ((lockfd
= lkopen(file
, O_RDWR
, 0)) == -1) {
1538 advise (file
, "unable to perform file locking on");
1543 value
= dbm_fetch (db
, key
);
1546 verbose_printf ("Message-ID: %s\n already received on %s",
1550 value
.dptr
= ddate
+ sizeof("Delivery-Date:");
1551 value
.dsize
= strlen(value
.dptr
) + 1;
1552 if (dbm_store (db
, key
, value
, DBM_INSERT
))
1553 advise (file
, "possibly corrupt file");
1558 lkclose(lockfd
, file
);