]>
diplodocus.org Git - nmh/blob - uip/slocal.c
3 * slocal.c -- asynchronously filter and deliver new mail
9 * Under sendmail, users should add the line
11 * "| /usr/local/nmh/lib/slocal"
13 * to their $HOME/.forward file.
15 * Under MMDF-I, users should (symbolically) link
16 * /usr/local/nmh/lib/slocal to $HOME/bin/rcvmail.
21 #include <h/dropsbr.h>
22 #include <h/rcvmail.h>
23 #include <h/signals.h>
24 #include <zotnet/tws/tws.h>
25 #include <zotnet/mts/mts.h>
29 #include <sys/ioctl.h>
32 #ifdef INITGROUPS_HEADER
33 #include INITGROUPS_HEADER
35 /* On AIX 4.1, initgroups() is defined and even documented (giving the parameter
36 types as char* and int), but doesn't have a prototype in any of the system
37 header files. AIX 4.3, SunOS 4.1.3, and ULTRIX 4.2A have the same
39 extern int initgroups(char*, int);
43 #ifdef HAVE_DB1_NDBM_H
53 # define UTMP_FILE _PATH_UTMP
55 # define UTMP_FILE "/etc/utmp"
59 static struct swit switches
[] = {
61 { "addr address", 0 },
67 { "sender address", 0 },
69 { "mailbox file", 0 },
71 { "home directory", -4 },
75 { "maildelivery file", 0 },
80 #define SUPPRESSDUP 10
82 #define NSUPPRESSDUP 11
83 { "nosuppressdup", 0 },
93 static int globbed
= 0; /* have we built "vars" table yet? */
94 static int parsed
= 0; /* have we built header field table yet */
95 static int utmped
= 0; /* have we scanned umtp(x) file yet */
96 static int suppressdup
= 0; /* are we suppressing duplicate messages? */
98 static int verbose
= 0;
101 static char *addr
= NULL
;
102 static char *user
= NULL
;
103 static char *info
= NULL
;
104 static char *file
= NULL
;
105 static char *sender
= NULL
;
106 static char *envelope
= NULL
; /* envelope information ("From " line) */
107 static char *mbox
= NULL
;
108 static char *home
= NULL
;
110 static struct passwd
*pw
; /* passwd file entry */
112 static char ddate
[BUFSIZ
]; /* record the delivery date */
115 static jmp_buf myctx
;
117 /* flags for pair->p_flags */
119 #define P_ADR 0x01 /* field is address */
120 #define P_HID 0x02 /* special (fake) field */
132 * Lookup table for matching fields and patterns
133 * in messages. The rest of the table is added
134 * when the message is parsed.
136 static struct pair hdrs
[NVEC
+ 1] = {
137 { "source", NULL
, P_HID
},
138 { "addr", NULL
, P_HID
},
139 { "Return-Path", NULL
, P_ADR
},
140 { "Reply-To", NULL
, P_ADR
},
141 { "From", NULL
, P_ADR
},
142 { "Sender", NULL
, P_ADR
},
143 { "To", NULL
, P_ADR
},
144 { "cc", NULL
, P_ADR
},
145 { "Resent-Reply-To", NULL
, P_ADR
},
146 { "Resent-From", NULL
, P_ADR
},
147 { "Resent-Sender", NULL
, P_ADR
},
148 { "Resent-To", NULL
, P_ADR
},
149 { "Resent-cc", NULL
, P_ADR
},
154 * The list of builtin variables to expand in a string
155 * before it is executed by the "pipe" or "qpipe" action.
157 static struct pair vars
[] = {
158 { "sender", NULL
, P_NIL
},
159 { "address", NULL
, P_NIL
},
160 { "size", NULL
, P_NIL
},
161 { "reply-to", NULL
, P_CHK
},
162 { "info", NULL
, P_NIL
},
166 extern char **environ
;
171 static int localmail (int, char *);
172 static int usr_delivery (int, char *, int);
173 static int split (char *, char **);
174 static int parse (int);
175 static void expand (char *, char *, int);
176 static void glob (int);
177 static struct pair
*lookup (struct pair
*, char *);
178 static int logged_in (void);
179 static int timely (char *, char *);
180 static int usr_file (int, char *, int);
181 static int usr_pipe (int, char *, char *, char **, int);
182 static int usr_folder (int, char *);
183 static RETSIGTYPE
alrmser (int);
184 static void get_sender (char *, char **);
185 static int copy_message (int, char *, int);
186 static void verbose_printf (char *fmt
, ...);
187 static void adorn (char *, char *, ...);
188 static void debug_printf (char *fmt
, ...);
189 static int suppress_duplicates (int, char *);
190 static char *trim (char *);
194 main (int argc
, char **argv
)
198 char *cp
, *mdlvr
= NULL
, buf
[BUFSIZ
];
199 char mailbox
[BUFSIZ
], tmpfil
[BUFSIZ
];
200 char **argp
, **arguments
;
203 setlocale(LC_ALL
, "");
205 invo_name
= r1bindex (*argv
, '/');
207 /* foil search of user profile/context */
208 if (context_foil (NULL
) == -1)
211 mts_init (invo_name
);
212 arguments
= getarguments (invo_name
, argc
, argv
, 0);
215 /* Parse arguments */
216 while ((cp
= *argp
++)) {
218 switch (smatch (++cp
, switches
)) {
220 ambigsw (cp
, switches
);
223 adios (NULL
, "-%s unknown", cp
);
226 snprintf (buf
, sizeof(buf
),
227 "%s [switches] [address info sender]", invo_name
);
228 print_help (buf
, switches
, 0);
231 print_version(invo_name
);
235 if (!(addr
= *argp
++))/* allow -xyz arguments */
236 adios (NULL
, "missing argument to %s", argp
[-2]);
239 if (!(info
= *argp
++))/* allow -xyz arguments */
240 adios (NULL
, "missing argument to %s", argp
[-2]);
243 if (!(user
= *argp
++))/* allow -xyz arguments */
244 adios (NULL
, "missing argument to %s", argp
[-2]);
247 if (!(file
= *argp
++) || *file
== '-')
248 adios (NULL
, "missing argument to %s", argp
[-2]);
251 if (!(sender
= *argp
++))/* allow -xyz arguments */
252 adios (NULL
, "missing argument to %s", argp
[-2]);
255 if (!(mbox
= *argp
++) || *mbox
== '-')
256 adios (NULL
, "missing argument to %s", argp
[-2]);
259 if (!(home
= *argp
++) || *home
== '-')
260 adios (NULL
, "missing argument to %s", argp
[-2]);
264 if (!(cp
= *argp
++) || *cp
== '-')
265 adios (NULL
, "missing argument to %s", argp
[-2]);
267 adios (NULL
, "only one maildelivery file at a time!");
290 switch (argp
- (argv
+ 1)) {
306 addr
= getusername ();
308 user
= (cp
= strchr(addr
, '.')) ? ++cp
: addr
;
309 if ((pw
= getpwnam (user
)) == NULL
)
310 adios (NULL
, "no such local user as %s", user
);
312 if (chdir (pw
->pw_dir
) == -1)
316 if (geteuid() == 0) {
318 initgroups (pw
->pw_name
, pw
->pw_gid
);
325 setbuf (stdin
, NULL
);
327 /* Record the delivery time */
328 if ((now
= dlocaltimenow ()) == NULL
)
329 adios (NULL
, "unable to ascertain local time");
330 snprintf (ddate
, sizeof(ddate
), "Delivery-Date: %s\n", dtimenow (0));
333 * Copy the message to a temporary file
338 /* getting message from file */
339 if ((tempfd
= open (file
, O_RDONLY
)) == -1)
340 adios (file
, "unable to open");
342 debug_printf ("retrieving message from file \"%s\"\n", file
);
343 if ((fd
= copy_message (tempfd
, tmpfil
, 1)) == -1)
344 adios (NULL
, "unable to create temporary file");
347 /* getting message from stdin */
349 debug_printf ("retrieving message from stdin\n");
350 if ((fd
= copy_message (fileno (stdin
), tmpfil
, 1)) == -1)
351 adios (NULL
, "unable to create temporary file");
355 debug_printf ("temporary file=\"%s\"\n", tmpfil
);
357 /* Delete the temp file now or a copy of every single message passed through
358 slocal will be left in the /tmp directory until deleted manually! This
359 unlink() used to be under an 'else' of the 'if (debug)' above, but since
360 some people like to always run slocal with -debug and log the results,
361 the /tmp directory would get choked over time. Of course, now that we
362 always delete the temp file, the "temporary file=" message above is
363 somewhat pointless -- someone watching debug output wouldn't have a
364 chance to 'tail -f' or 'ln' the temp file before it's unlinked. The best
365 thing would be to delay this unlink() until later if debug == 1, but I'll
366 leave that for someone who cares about the temp-file-accessing
367 functionality (they'll have to watch out for cases where we adios()). */
370 if (!(fp
= fdopen (fd
, "r+")))
371 adios (NULL
, "unable to access temporary file");
374 * If no sender given, extract it
375 * from envelope information. */
377 get_sender (envelope
, &sender
);
380 snprintf (mailbox
, sizeof(mailbox
), "%s/%s",
381 mmdfldir
[0] ? mmdfldir
: pw
->pw_dir
,
382 mmdflfil
[0] ? mmdflfil
: pw
->pw_name
);
389 debug_printf ("addr=\"%s\"\n", trim(addr
));
390 debug_printf ("user=\"%s\"\n", trim(user
));
391 debug_printf ("info=\"%s\"\n", trim(info
));
392 debug_printf ("sender=\"%s\"\n", trim(sender
));
393 debug_printf ("envelope=\"%s\"\n", envelope
? trim(envelope
) : "");
394 debug_printf ("mbox=\"%s\"\n", trim(mbox
));
395 debug_printf ("home=\"%s\"\n", trim(home
));
396 debug_printf ("ddate=\"%s\"\n", trim(ddate
));
397 debug_printf ("now=%02d:%02d\n\n", now
->tw_hour
, now
->tw_min
);
400 /* deliver the message */
401 status
= localmail (fd
, mdlvr
);
403 return done (status
!= -1 ? RCV_MOK
: RCV_MBX
);
408 * Main routine for delivering message.
412 localmail (int fd
, char *mdlvr
)
414 /* check if this message is a duplicate */
416 suppress_duplicates(fd
, mdlvr
? mdlvr
: ".maildelivery") == DONE
)
419 /* delivery according to personal Maildelivery file */
420 if (usr_delivery (fd
, mdlvr
? mdlvr
: ".maildelivery", 0) != -1)
423 /* delivery according to global Maildelivery file */
424 if (usr_delivery (fd
, maildelivery
, 1) != -1)
428 verbose_printf ("(delivering to standard mail spool)\n");
430 /* last resort - deliver to standard mail spool */
432 return usr_file (fd
, mbox
, MBOX_FORMAT
);
434 return usr_file (fd
, mbox
, MMDF_FORMAT
);
439 #define matches(a,b) (stringdex (b, a) >= 0)
442 * Parse the delivery file, and process incoming message.
446 usr_delivery (int fd
, char *delivery
, int su
)
448 int i
, accept
, status
, won
, vecp
, next
;
449 char *field
, *pattern
, *action
, *result
, *string
;
450 char buffer
[BUFSIZ
], tmpbuf
[BUFSIZ
];
451 char *cp
, *vec
[NVEC
];
456 /* open the delivery file */
457 if ((fp
= fopen (delivery
, "r")) == NULL
)
460 /* check if delivery file has bad ownership or permissions */
461 if (fstat (fileno (fp
), &st
) == -1
462 || (st
.st_uid
!= 0 && (su
|| st
.st_uid
!= pw
->pw_uid
))
463 || st
.st_mode
& (S_IWGRP
|S_IWOTH
)) {
465 verbose_printf ("WARNING: %s has bad ownership/modes (su=%d,uid=%d,owner=%d,mode=0%o)\n",
466 delivery
, su
, (int) pw
->pw_uid
, (int) st
.st_uid
, (int) st
.st_mode
);
474 /* read and process delivery file */
475 while (fgets (buffer
, sizeof(buffer
), fp
)) {
476 /* skip comments and empty lines */
477 if (*buffer
== '#' || *buffer
== '\n')
480 /* zap trailing newline */
481 if ((cp
= strchr(buffer
, '\n')))
484 /* split buffer into fields */
485 vecp
= split (buffer
, vec
);
487 /* check for too few fields */
490 debug_printf ("WARNING: entry with only %d fields, skipping.\n", vecp
);
495 for (i
= 0; vec
[i
]; i
++)
496 debug_printf ("vec[%d]: \"%s\"\n", i
, trim(vec
[i
]));
505 /* find out how to perform the action */
510 * If previous condition failed, don't
511 * do this - else fall through
514 continue; /* else fall */
518 * If already delivered, skip this action. Else
519 * consider delivered if action is successful.
522 continue; /* else fall */
527 * Take action, and consider delivered if
528 * action is successful.
537 * Take action, but don't consider delivered, even
538 * if action is successful
545 if (!strcasecmp (vec
[5], "select")) {
546 if (logged_in () != -1)
548 if (vecp
> 7 && timely (vec
[6], vec
[7]) == -1)
553 /* check if the field matches */
561 * "default" matches only if the message hasn't
562 * been delivered yet.
564 if (!strcasecmp (field
, "default")) {
571 /* parse message and build lookup table */
572 if (!parsed
&& parse (fd
) == -1) {
577 * find header field in lookup table, and
578 * see if the pattern matches.
580 if ((p
= lookup (hdrs
, field
)) && (p
->p_value
!= NULL
)
581 && matches (p
->p_value
, pattern
)) {
590 /* find out the action to perform */
593 /* deliver to quoted pipe */
594 if (strcasecmp (action
, "qpipe"))
595 continue; /* else fall */
597 expand (tmpbuf
, string
, fd
);
598 if (split (tmpbuf
, vec
) < 1)
600 status
= usr_pipe (fd
, tmpbuf
, vec
[0], vec
, 0);
604 /* deliver to pipe */
605 if (strcasecmp (action
, "pipe"))
606 continue; /* else fall */
610 expand (tmpbuf
, string
, fd
);
613 status
= usr_pipe (fd
, tmpbuf
, "/bin/sh", vec
+ 2, 0);
618 if (!strcasecmp (action
, "file")) {
619 status
= usr_file (fd
, string
, MBOX_FORMAT
);
622 /* deliver to nmh folder */
623 else if (strcasecmp (action
, "folder"))
624 continue; /* else fall */
626 status
= usr_folder (fd
, string
);
631 if (!strcasecmp (action
, "mmdf")) {
632 status
= usr_file (fd
, string
, MMDF_FORMAT
);
636 else if (strcasecmp (action
, "mbox"))
637 continue; /* else fall */
641 status
= usr_file (fd
, string
, MBOX_FORMAT
);
646 if (strcasecmp (action
, "destroy"))
652 if (accept
&& status
== 0)
657 return (won
? 0 : -1);
664 * Split buffer into fields (delimited by whitespace or
665 * comma's). Return the number of fields found.
669 split (char *cp
, char **vec
)
676 /* split into a maximum of NVEC fields */
677 for (i
= 0; i
<= NVEC
;) {
680 /* zap any whitespace and comma's */
681 while (isspace (*s
) || *s
== ',')
684 /* end of buffer, time to leave */
688 /* get double quote text as a single field */
690 for (vec
[i
++] = ++s
; *s
&& *s
!= '"'; s
++) {
692 * Check for escaped double quote. We need
693 * to shift the string to remove slash.
701 if (*s
== '"') /* zap trailing double quote */
706 if (*s
== QUOTE
&& *++s
!= '"')
710 /* move forward to next field delimiter */
711 while (*s
&& !isspace (*s
) && *s
!= ',')
721 * Parse the headers of a message, and build the
722 * lookup table for matching fields and patterns.
731 char name
[NAMESZ
], field
[BUFSIZ
];
738 /* get a new FILE pointer to message */
739 if ((fd1
= dup (fd
)) == -1)
741 if ((in
= fdopen (fd1
, "r")) == NULL
) {
747 /* add special entries to lookup table */
748 if ((p
= lookup (hdrs
, "source")))
749 p
->p_value
= getcpy (sender
);
750 if ((p
= lookup (hdrs
, "addr")))
751 p
->p_value
= getcpy (addr
);
754 * Scan the headers of the message and build
757 for (i
= 0, state
= FLD
;;) {
758 switch (state
= m_getfld (state
, name
, field
, sizeof(field
), in
)) {
762 lp
= add (field
, NULL
);
763 while (state
== FLDPLUS
) {
764 state
= m_getfld (state
, name
, field
, sizeof(field
), in
);
765 lp
= add (field
, lp
);
767 for (p
= hdrs
; p
->p_name
; p
++) {
768 if (!strcasecmp (p
->p_name
, name
)) {
769 if (!(p
->p_flags
& P_HID
)) {
770 if ((cp
= p
->p_value
)) {
771 if (p
->p_flags
& P_ADR
) {
772 dp
= cp
+ strlen (cp
) - 1;
775 cp
= add (",\n\t", cp
);
780 p
->p_value
= add (lp
, cp
);
786 if (p
->p_name
== NULL
&& i
< NVEC
) {
787 p
->p_name
= getcpy (name
);
804 advise (NULL
, "format error in message");
808 advise (NULL
, "internal error in m_getfld");
816 if ((p
= lookup (vars
, "reply-to"))) {
817 if ((q
= lookup (hdrs
, "reply-to")) == NULL
|| q
->p_value
== NULL
)
818 q
= lookup (hdrs
, "from");
819 p
->p_value
= getcpy (q
? q
->p_value
: "");
820 p
->p_flags
&= ~P_CHK
;
822 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
823 p
- vars
, p
->p_name
, trim(p
->p_value
));
826 for (p
= hdrs
; p
->p_name
; p
++)
827 debug_printf ("hdrs[%d]: name=\"%s\" value=\"%s\"\n",
828 p
- hdrs
, p
->p_name
, p
->p_value
? trim(p
->p_value
) : "");
839 * Expand any builtin variables such as $(sender),
840 * $(address), etc., in a string.
844 expand (char *s1
, char *s2
, int fd
)
852 while ((c
= *s2
++)) {
853 if (c
!= '$' || *s2
!= LPAREN
) {
856 for (cp
= ++s2
; *s2
&& *s2
!= RPAREN
; s2
++)
863 if ((p
= lookup (vars
, cp
))) {
864 if (!parsed
&& (p
->p_flags
& P_CHK
))
867 strcpy (s1
, p
->p_value
);
877 * Fill in the information missing from the "vars"
878 * table, which is necessary to expand any builtin
879 * variables in the string for a "pipe" or "qpipe"
893 if ((p
= lookup (vars
, "sender")))
894 p
->p_value
= getcpy (sender
);
895 if ((p
= lookup (vars
, "address")))
896 p
->p_value
= getcpy (addr
);
897 if ((p
= lookup (vars
, "size"))) {
898 snprintf (buffer
, sizeof(buffer
), "%d",
899 fstat (fd
, &st
) != -1 ? (int) st
.st_size
: 0);
900 p
->p_value
= getcpy (buffer
);
902 if ((p
= lookup (vars
, "info")))
903 p
->p_value
= getcpy (info
);
906 for (p
= vars
; p
->p_name
; p
++)
907 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
908 p
- vars
, p
->p_name
, trim(p
->p_value
));
914 * Find a matching name in a lookup table. If found,
915 * return the "pairs" entry, else return NULL.
919 lookup (struct pair
*pairs
, char *key
)
921 for (; pairs
->p_name
; pairs
++)
922 if (!strcasecmp (pairs
->p_name
, key
))
930 * Check utmp(x) file to see if user is currently
943 if ((uf
= fopen (UTMP_FILE
, "r")) == NULL
)
946 while (fread ((char *) &ut
, sizeof(ut
), 1, uf
) == 1) {
947 if (ut
.ut_name
[0] != 0
948 && strncmp (user
, ut
.ut_name
, sizeof(ut
.ut_name
)) == 0) {
952 return (utmped
= DONE
);
957 return (utmped
= NOTOK
);
961 #define check(t,a,b) if (t < a || t > b) return -1
962 #define cmpar(h1,m1,h2,m2) if (h1 < h2 || (h1 == h2 && m1 < m2)) return 0
965 timely (char *t1
, char *t2
)
967 int t1hours
, t1mins
, t2hours
, t2mins
;
969 if (sscanf (t1
, "%d:%d", &t1hours
, &t1mins
) != 2)
971 check (t1hours
, 0, 23);
972 check (t1mins
, 0, 59);
974 if (sscanf (t2
, "%d:%d", &t2hours
, &t2mins
) != 2)
976 check (t2hours
, 0, 23);
977 check (t2mins
, 0, 59);
979 cmpar (now
->tw_hour
, now
->tw_min
, t1hours
, t1mins
);
980 cmpar (t2hours
, t2mins
, now
->tw_hour
, now
->tw_min
);
987 * Deliver message by appending to a file.
991 usr_file (int fd
, char *mailbox
, int mbx_style
)
996 verbose_printf ("delivering to file \"%s\"", mailbox
);
998 if (mbx_style
== MBOX_FORMAT
) {
1000 verbose_printf (" (mbox style)");
1004 verbose_printf (" (mmdf style)");
1008 /* open and lock the file */
1009 if ((md
= mbx_open (mailbox
, mbx_style
, pw
->pw_uid
, pw
->pw_gid
, m_gmprot())) == -1) {
1011 adorn ("", "unable to open:");
1015 lseek (fd
, (off_t
) 0, SEEK_SET
);
1017 /* append message to file */
1018 if (mbx_copy (mailbox
, mbx_style
, md
, fd
, mapping
, NULL
, verbose
) == -1) {
1020 adorn ("", "error writing to:");
1024 /* close and unlock file */
1025 mbx_close (mailbox
, md
);
1028 verbose_printf (", success.\n");
1034 * Deliver message to a nmh folder.
1038 usr_folder (int fd
, char *string
)
1041 char folder
[BUFSIZ
], *vec
[3];
1043 /* get folder name ready */
1045 strncpy(folder
, string
, sizeof(folder
));
1047 snprintf(folder
, sizeof(folder
), "+%s", string
);
1050 verbose_printf ("delivering to folder \"%s\"", folder
+ 1);
1052 vec
[0] = "rcvstore";
1056 /* use rcvstore to put message in folder */
1057 status
= usr_pipe (fd
, "rcvstore", rcvstoreproc
, vec
, 1);
1061 * Currently, verbose status messages are handled by usr_pipe().
1065 verbose_printf (", success.\n");
1067 verbose_printf (", failed.\n");
1075 * Deliver message to a process.
1079 usr_pipe (int fd
, char *cmd
, char *pgm
, char **vec
, int suppress
)
1082 int i
, bytes
, seconds
, status
;
1085 if (verbose
&& !suppress
)
1086 verbose_printf ("delivering to pipe \"%s\"", cmd
);
1088 lseek (fd
, (off_t
) 0, SEEK_SET
);
1090 for (i
= 0; (child_id
= fork()) == -1 && i
< 5; i
++)
1097 adorn ("fork", "unable to");
1104 freopen ("/dev/null", "w", stdout
);
1105 freopen ("/dev/null", "w", stderr
);
1111 if ((fd
= open ("/dev/tty", O_RDWR
)) != -1) {
1112 ioctl (fd
, TIOCNOTTY
, NULL
);
1115 #endif /* TIOCNOTTY */
1117 setpgid ((pid_t
) 0, getpid ()); /* put in own process group */
1120 m_putenv ("USER", pw
->pw_name
);
1121 m_putenv ("HOME", pw
->pw_dir
);
1122 m_putenv ("SHELL", pw
->pw_shell
);
1128 /* parent process */
1129 if (!setjmp (myctx
)) {
1130 SIGNAL (SIGALRM
, alrmser
);
1131 bytes
= fstat (fd
, &st
) != -1 ? (int) st
.st_size
: 100;
1133 /* amount of time to wait depends on message size */
1135 /* give at least 5 minutes */
1137 } else if (bytes
>= 90000) {
1138 /* a half hour is long enough */
1141 seconds
= (bytes
/ 60) + 300;
1143 alarm ((unsigned int) seconds
);
1144 status
= pidwait (child_id
, 0);
1148 if (status
== RP_MOK
|| status
== RP_OK
)
1153 verbose_printf (", success.\n");
1155 if ((status
& 0xff00) == 0xff00)
1156 verbose_printf (", system error\n");
1158 pidstatus (status
, stdout
, ", failed");
1160 return (status
== 0 ? 0 : -1);
1163 * Ruthlessly kill the child and anything
1164 * else in its process group.
1166 KILLPG(child_id
, SIGKILL
);
1168 verbose_printf (", timed-out; terminated\n");
1178 #ifndef RELIABLE_SIGNALS
1179 SIGNAL (SIGALRM
, alrmser
);
1182 longjmp (myctx
, DONE
);
1187 * Get the `sender' from the envelope
1188 * information ("From " line).
1192 get_sender (char *envelope
, char **sender
)
1196 char buffer
[BUFSIZ
];
1198 if (envelope
== NULL
) {
1199 *sender
= getcpy ("");
1203 i
= strlen ("From ");
1204 strncpy (buffer
, envelope
+ i
, sizeof(buffer
));
1205 if ((cp
= strchr(buffer
, '\n'))) {
1215 for (cp
= buffer
+ strlen (buffer
) - 1; cp
>= buffer
; cp
--)
1220 *sender
= getcpy (buffer
);
1225 * Copy message into a temporary file.
1226 * While copying, it will do some header processing
1227 * including the extraction of the envelope information.
1231 copy_message (int qd
, char *tmpfil
, int fold
)
1233 int i
, first
= 1, fd1
, fd2
;
1234 char buffer
[BUFSIZ
];
1237 strcpy (tmpfil
, m_tmpfil (invo_name
));
1239 /* open temporary file to put message in */
1240 if ((fd1
= open (tmpfil
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600)) == -1)
1244 while ((i
= read (qd
, buffer
, sizeof(buffer
))) > 0)
1245 if (write (fd1
, buffer
, i
) != i
) {
1253 lseek (fd1
, (off_t
) 0, SEEK_SET
);
1257 /* dup the fd for incoming message */
1258 if ((fd2
= dup (qd
)) == -1) {
1263 /* now create a FILE pointer for it */
1264 if ((qfp
= fdopen (fd2
, "r")) == NULL
) {
1270 /* dup the fd for temporary file */
1271 if ((fd2
= dup (fd1
)) == -1) {
1277 /* now create a FILE pointer for it */
1278 if ((ffp
= fdopen (fd2
, "r+")) == NULL
) {
1286 * copy message into temporary file
1287 * and massage the headers. Save
1288 * a copy of the "From " line for later.
1290 i
= strlen ("From ");
1291 while (fgets (buffer
, sizeof(buffer
), qfp
)) {
1294 if (!strncmp (buffer
, "From ", i
)) {
1296 char *fp
, *cp
, *hp
, *ep
;
1298 /* get copy of envelope information ("From " line) */
1299 envelope
= getcpy (buffer
);
1302 /* First go ahead and put "From " line in message */
1303 fputs (buffer
, ffp
);
1310 * Now create a "Return-Path:" line
1311 * from the "From " line.
1313 hp
= cp
= strchr(fp
= envelope
+ i
, ' ');
1314 while ((hp
= strchr(++hp
, 'r')))
1315 if (uprf (hp
, "remote from")) {
1316 hp
= strrchr(hp
, ' ');
1320 /* return path for UUCP style addressing */
1321 ep
= strchr(++hp
, '\n');
1322 snprintf (buffer
, sizeof(buffer
), "Return-Path: %.*s!%.*s\n",
1323 ep
- hp
, hp
, cp
- fp
, fp
);
1325 /* return path for standard domain addressing */
1326 snprintf (buffer
, sizeof(buffer
), "Return-Path: %.*s\n",
1330 /* Add Return-Path header to message */
1331 fputs (buffer
, ffp
);
1335 /* Put the delivery date in message */
1344 fputs (buffer
, ffp
);
1356 lseek (fd1
, (off_t
) 0, SEEK_SET
);
1368 * Trim strings for pretty printing of debugging output
1374 char buffer
[BUFSIZ
*4];
1380 /* copy string into temp buffer */
1381 strncpy (buffer
, cp
, sizeof(buffer
));
1384 /* skip over leading whitespace */
1385 while (isspace(*bp
))
1388 /* start at the end and zap trailing whitespace */
1389 for (sp
= bp
+ strlen(bp
) - 1; sp
>= bp
; sp
--) {
1396 /* replace remaining whitespace with spaces */
1397 for (sp
= bp
; *sp
; sp
++)
1401 /* now return a copy */
1406 * Function for printing `verbose' messages.
1410 verbose_printf (char *fmt
, ...)
1415 vfprintf (stdout
, fmt
, ap
);
1418 fflush (stdout
); /* now flush output */
1423 * Function for printing `verbose' delivery
1428 adorn (char *what
, char *fmt
, ...)
1434 eindex
= errno
; /* save the errno */
1435 fprintf (stdout
, ", ");
1438 vfprintf (stdout
, fmt
, ap
);
1443 fprintf (stdout
, " %s: ", what
);
1444 if ((s
= strerror (eindex
)))
1445 fprintf (stdout
, "%s", s
);
1447 fprintf (stdout
, "Error %d", eindex
);
1450 fputc ('\n', stdout
);
1456 * Function for printing `debug' messages.
1460 debug_printf (char *fmt
, ...)
1465 vfprintf (stderr
, fmt
, ap
);
1471 * Check ndbm/db file(s) to see if the Message-Id of this
1472 * message matches the Message-Id of a previous message,
1473 * so we can discard it. If it doesn't match, we add the
1474 * Message-Id of this message to the ndbm/db file.
1477 suppress_duplicates (int fd
, char *file
)
1479 int fd1
, lockfd
, state
, result
;
1480 char *cp
, buf
[BUFSIZ
], name
[NAMESZ
];
1485 if ((fd1
= dup (fd
)) == -1)
1487 if (!(in
= fdopen (fd1
, "r"))) {
1493 for (state
= FLD
;;) {
1494 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1499 /* Search for the message ID */
1500 if (strcasecmp (name
, "Message-ID")) {
1501 while (state
== FLDPLUS
)
1502 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1506 cp
= add (buf
, NULL
);
1507 while (state
== FLDPLUS
) {
1508 state
= m_getfld (state
, name
, buf
, sizeof(buf
), in
);
1511 key
.dptr
= trimcpy (cp
);
1512 key
.dsize
= strlen (key
.dptr
) + 1;
1516 if (!(db
= dbm_open (file
, O_RDWR
| O_CREAT
, 0600))) {
1517 advise (file
, "unable to perform dbm_open on");
1523 * Since it is difficult to portable lock a ndbm file,
1524 * we will open and lock the Maildelivery file instead.
1525 * This will fail if your Maildelivery file doesn't
1528 if ((lockfd
= lkopen(file
, O_RDWR
, 0)) == -1) {
1529 advise (file
, "unable to perform file locking on");
1534 value
= dbm_fetch (db
, key
);
1537 verbose_printf ("Message-ID: %s\n already received on %s",
1541 value
.dptr
= ddate
+ sizeof("Delivery-Date:");
1542 value
.dsize
= strlen(value
.dptr
) + 1;
1543 if (dbm_store (db
, key
, value
, DBM_INSERT
))
1544 advise (file
, "possibly corrupt file");
1549 lkclose(lockfd
, file
);