1 /* sendmail-like interface to /bin/mail for system V,
2 Copyright (C) 1985, 1994, 1999, 2001-2011 Free Software Foundation, Inc.
4 Author: Bill Rozas <jinx@martigny.ai.mit.edu>
5 (according to ack.texi)
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23 #define _XOPEN_SOURCE 500 /* for cuserid */
29 #if defined (BSD_SYSTEM) && !defined (USE_FAKEMAIL)
30 /* This program isnot used in BSD, so just avoid loader complaints. */
36 #else /* not BSD 4.2 (or newer) */
44 /* This conditional contains all the rest of the file. */
46 /* These are defined in config in some versions. */
63 /* This is to declare cuserid. */
66 /* Type definitions */
72 #define TM_YEAR_BASE 1900
74 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
75 asctime to have well-defined behavior. */
76 #ifndef TM_YEAR_IN_ASCTIME_RANGE
77 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
78 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
86 struct line_record
*continuation
;
88 typedef struct line_record
*line_list
;
93 struct header_record
*next
;
94 struct header_record
*previous
;
96 typedef struct header_record
*header
;
101 int (*action
)(FILE *);
102 struct stream_record
*rest_streams
;
104 typedef struct stream_record
*stream_list
;
106 /* A `struct linebuffer' is a structure which holds a line of text.
107 * `readline' reads a line from a stream into a linebuffer
108 * and works regardless of the length of the line.
117 struct linebuffer lb
;
120 ((line_list) xmalloc (sizeof (struct line_record)))
121 #define new_header() \
122 ((header) xmalloc (sizeof (struct header_record)))
123 #define new_stream() \
124 ((stream_list) xmalloc (sizeof (struct stream_record)))
125 #define alloc_string(nchars) \
126 ((char *) xmalloc ((nchars) + 1))
128 /* Global declarations */
131 #define KEYWORD_SIZE 256
132 #define FROM_PREFIX "From"
133 #define MY_NAME "fakemail"
134 #define NIL ((line_list) NULL)
135 #define INITIAL_LINE_SIZE 200
137 #ifndef MAIL_PROGRAM_NAME
138 #define MAIL_PROGRAM_NAME "/bin/mail"
141 static const char *my_name
;
142 static char *the_date
;
143 static char *the_user
;
144 static line_list file_preface
;
145 static stream_list the_streams
;
146 static boolean no_problems
= true;
148 static void fatal (const char *s1
) NO_RETURN
;
151 static struct passwd
*my_entry
;
153 (my_entry = getpwuid (((int) geteuid ())), \
159 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
162 error (const char *s1
, const char *s2
)
164 printf ("%s: ", my_name
);
170 /* Print error message and exit. */
173 fatal (const char *s1
)
179 /* Like malloc but get fatal error if memory is exhausted. */
184 long *result
= (long *) malloc (((unsigned) size
));
185 if (result
== ((long *) NULL
))
186 fatal ("virtual memory exhausted");
191 xrealloc (long int *ptr
, int size
)
193 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
194 if (result
== ((long *) NULL
))
195 fatal ("virtual memory exhausted");
199 /* Initialize a linebuffer for use */
202 init_linebuffer (struct linebuffer
*linebuffer
)
204 linebuffer
->size
= INITIAL_LINE_SIZE
;
205 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
208 /* Read a line of text from `stream' into `linebuffer'.
209 Return the length of the line. */
212 readline (struct linebuffer
*linebuffer
, FILE *stream
)
214 char *buffer
= linebuffer
->buffer
;
215 char *p
= linebuffer
->buffer
;
216 char *end
= p
+ linebuffer
->size
;
220 int c
= getc (stream
);
223 linebuffer
->size
*= 2;
224 buffer
= ((char *) xrealloc ((long *)buffer
, linebuffer
->size
));
225 p
= buffer
+ (p
- linebuffer
->buffer
);
226 end
= buffer
+ linebuffer
->size
;
227 linebuffer
->buffer
= buffer
;
229 if (c
< 0 || c
== '\n')
240 /* Extract a colon-terminated keyword from the string FIELD.
241 Return that keyword as a string stored in a static buffer.
242 Store the address of the rest of the string into *REST.
244 If there is no keyword, return NULL and don't alter *REST. */
247 get_keyword (register char *field
, char **rest
)
249 static char keyword
[KEYWORD_SIZE
];
254 c
= (unsigned char) *field
++;
255 if (isspace (c
) || c
== ':')
256 return ((char *) NULL
);
257 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
258 while (((c
= (unsigned char) *field
++) != ':') && ! isspace (c
))
259 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
262 c
= (unsigned char) *field
++;
264 return ((char *) NULL
);
269 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
272 has_keyword (char *field
)
275 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
278 /* Store the string FIELD, followed by any lines in THE_LIST,
279 into the buffer WHERE.
280 Concatenate lines, putting just a space between them.
281 Delete everything contained in parentheses.
282 When a recipient name contains <...>, we discard
283 everything except what is inside the <...>.
285 We don't pay attention to overflowing WHERE;
286 the caller has to make it big enough. */
289 add_field (line_list the_list
, register char *field
, register char *where
)
294 char *this_recipient_where
;
298 this_recipient_where
= where
;
300 while ((c
= *field
++) != '\0')
306 in_quotes
= ! in_quotes
;
313 while (*field
&& *field
!= ')') ++field
;
314 if (! (*field
++)) break; /* no close */
320 /* When we get to the end of one recipient,
321 don't discard it if the next one has <...>. */
322 this_recipient_where
= where
;
325 /* Discard everything we got before the `<'. */
326 where
= this_recipient_where
;
328 /* Discard the rest of this name that follows the `>'. */
330 while (*field
&& *field
!= ',') ++field
;
331 if (! (*field
++)) break; /* no comma */
337 if (the_list
== NIL
) break;
338 field
= the_list
->string
;
339 the_list
= the_list
->continuation
;
345 make_file_preface (void)
347 char *the_string
, *temp
;
348 long idiotic_interface
;
355 prefix_length
= strlen (FROM_PREFIX
);
356 time (&idiotic_interface
);
357 /* Convert to a string, checking for out-of-range time stamps.
358 Don't use 'ctime', as that might dump core if the hardware clock
359 is set to a bizarre value. */
360 tm
= localtime (&idiotic_interface
);
361 if (! (tm
&& TM_YEAR_IN_ASCTIME_RANGE (tm
->tm_year
)
362 && (the_date
= asctime (tm
))))
363 fatal ("current time is out of range");
364 /* the_date has an unwanted newline at the end */
365 date_length
= strlen (the_date
) - 1;
366 the_date
[date_length
] = '\0';
367 temp
= cuserid ((char *) NULL
);
368 user_length
= strlen (temp
);
369 the_user
= alloc_string (user_length
+ 1);
370 strcpy (the_user
, temp
);
371 the_string
= alloc_string (3 + prefix_length
375 strcpy (temp
, FROM_PREFIX
);
376 temp
= &temp
[prefix_length
];
378 strcpy (temp
, the_user
);
379 temp
= &temp
[user_length
];
381 strcpy (temp
, the_date
);
382 result
= new_list ();
383 result
->string
= the_string
;
384 result
->continuation
= ((line_list
) NULL
);
389 write_line_list (register line_list the_list
, FILE *the_stream
)
392 the_list
!= ((line_list
) NULL
) ;
393 the_list
= the_list
->continuation
)
395 fputs (the_list
->string
, the_stream
);
396 putc ('\n', the_stream
);
402 close_the_streams (void)
404 register stream_list rem
;
405 for (rem
= the_streams
;
406 rem
!= ((stream_list
) NULL
);
407 rem
= rem
->rest_streams
)
408 no_problems
= (no_problems
&&
409 ((*rem
->action
) (rem
->handle
) == 0));
410 the_streams
= ((stream_list
) NULL
);
411 return (no_problems
? EXIT_SUCCESS
: EXIT_FAILURE
);
415 add_a_stream (FILE *the_stream
, int (*closing_action
) (FILE *))
417 stream_list old
= the_streams
;
418 the_streams
= new_stream ();
419 the_streams
->handle
= the_stream
;
420 the_streams
->action
= closing_action
;
421 the_streams
->rest_streams
= old
;
426 my_fclose (FILE *the_file
)
428 putc ('\n', the_file
);
430 return fclose (the_file
);
434 open_a_file (char *name
)
436 FILE *the_stream
= fopen (name
, "a");
437 if (the_stream
!= ((FILE *) NULL
))
439 add_a_stream (the_stream
, my_fclose
);
440 if (the_user
== ((char *) NULL
))
441 file_preface
= make_file_preface ();
442 write_line_list (file_preface
, the_stream
);
451 register stream_list rem
;
452 for (rem
= the_streams
;
453 rem
!= ((stream_list
) NULL
);
454 rem
= rem
->rest_streams
)
455 fputs (s
, rem
->handle
);
460 put_line (const char *string
)
462 register stream_list rem
;
463 for (rem
= the_streams
;
464 rem
!= ((stream_list
) NULL
);
465 rem
= rem
->rest_streams
)
467 const char *s
= string
;
470 /* Divide STRING into lines. */
473 const char *breakpos
;
475 /* Find the last char that fits. */
476 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
478 if (*breakpos
== '\t')
483 /* If we didn't reach end of line, break the line. */
486 /* Back up to just after the last comma that fits. */
487 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
491 /* If no comma fits, move past the first address anyway. */
492 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
494 /* Include the comma after it. */
498 /* Output that much, then break the line. */
499 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
502 /* Skip whitespace and prepare to print more addresses. */
504 while (*s
== ' ' || *s
== '\t') ++s
;
506 fputs ("\n\t", rem
->handle
);
508 putc ('\n', rem
->handle
);
513 #define mail_error error
515 /* Handle an FCC field. FIELD is the text of the first line (after
516 the header name), and THE_LIST holds the continuation lines if any.
517 Call open_a_file for each file. */
520 setup_files (register line_list the_list
, register char *field
)
522 register char *start
;
526 while (((c
= *field
) != '\0')
534 while (((c
= *field
) != '\0')
540 if (!open_a_file (start
))
541 mail_error ("Could not open file %s", start
);
543 if (c
!= '\0') continue;
545 if (the_list
== ((line_list
) NULL
))
547 field
= the_list
->string
;
548 the_list
= the_list
->continuation
;
552 /* Compute the total size of all recipient names stored in THE_HEADER.
553 The result says how big to make the buffer to pass to parse_header. */
556 args_size (header the_header
)
558 register header old
= the_header
;
559 register line_list rem
;
560 register int size
= 0;
564 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
565 if ((strcmp (keyword
, "TO") == 0)
566 || (strcmp (keyword
, "CC") == 0)
567 || (strcmp (keyword
, "BCC") == 0))
569 size
+= 1 + strlen (field
);
570 for (rem
= the_header
->text
->continuation
;
572 rem
= rem
->continuation
)
573 size
+= 1 + strlen (rem
->string
);
575 the_header
= the_header
->next
;
576 } while (the_header
!= old
);
580 /* Scan the header described by the lists THE_HEADER,
581 and put all recipient names into the buffer WHERE.
582 Precede each recipient name with a space.
584 Also, if the header has any FCC fields, call setup_files for each one. */
587 parse_header (header the_header
, register char *where
)
589 register header old
= the_header
;
593 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
594 if (strcmp (keyword
, "TO") == 0)
595 where
= add_field (the_header
->text
->continuation
, field
, where
);
596 else if (strcmp (keyword
, "CC") == 0)
597 where
= add_field (the_header
->text
->continuation
, field
, where
);
598 else if (strcmp (keyword
, "BCC") == 0)
600 where
= add_field (the_header
->text
->continuation
, field
, where
);
601 the_header
->previous
->next
= the_header
->next
;
602 the_header
->next
->previous
= the_header
->previous
;
604 else if (strcmp (keyword
, "FCC") == 0)
605 setup_files (the_header
->text
->continuation
, field
);
606 the_header
= the_header
->next
;
607 } while (the_header
!= old
);
612 /* Read lines from the input until we get a blank line.
613 Create a list of `header' objects, one for each header field,
614 each of which points to a list of `line_list' objects,
615 one for each line in that field.
616 Continuation lines are grouped in the headers they continue. */
621 register header the_header
= ((header
) NULL
);
622 register line_list
*next_line
= ((line_list
*) NULL
);
624 init_linebuffer (&lb
);
631 readline (&lb
, stdin
);
633 length
= strlen (line
);
634 if (length
== 0) break;
636 if (has_keyword (line
))
638 register header old
= the_header
;
639 the_header
= new_header ();
640 if (old
== ((header
) NULL
))
642 the_header
->next
= the_header
;
643 the_header
->previous
= the_header
;
647 the_header
->previous
= old
;
648 the_header
->next
= old
->next
;
649 old
->next
= the_header
;
651 next_line
= &(the_header
->text
);
654 if (next_line
== ((line_list
*) NULL
))
656 /* Not a valid header */
659 *next_line
= new_list ();
660 (*next_line
)->string
= alloc_string (length
);
661 strcpy (((*next_line
)->string
), line
);
662 next_line
= &((*next_line
)->continuation
);
668 fatal ("input message has no header");
669 return the_header
->next
;
673 write_header (header the_header
)
675 register header old
= the_header
;
678 register line_list the_list
;
679 for (the_list
= the_header
->text
;
681 the_list
= the_list
->continuation
)
682 put_line (the_list
->string
);
683 the_header
= the_header
->next
;
684 } while (the_header
!= old
);
690 main (int argc
, char **argv
)
695 const char *mail_program_name
;
696 char buf
[BUFLEN
+ 1];
700 mail_program_name
= getenv ("FAKEMAILER");
701 if (!(mail_program_name
&& *mail_program_name
))
702 mail_program_name
= MAIL_PROGRAM_NAME
;
703 name_length
= strlen (mail_program_name
);
706 the_streams
= ((stream_list
) NULL
);
707 the_date
= ((char *) NULL
);
708 the_user
= ((char *) NULL
);
710 the_header
= read_header ();
711 command_line
= alloc_string (name_length
+ args_size (the_header
));
712 strcpy (command_line
, mail_program_name
);
713 parse_header (the_header
, &command_line
[name_length
]);
715 the_pipe
= popen (command_line
, "w");
716 if (the_pipe
== ((FILE *) NULL
))
717 fatal ("cannot open pipe to real mailer");
719 add_a_stream (the_pipe
, pclose
);
721 write_header (the_header
);
723 /* Dump the message itself */
725 while (!feof (stdin
))
727 size
= fread (buf
, 1, BUFLEN
, stdin
);
732 exit (close_the_streams ());
735 #endif /* not MSDOS */
736 #endif /* not BSD 4.2 (or newer) */
739 /* fakemail.c ends here */