1 /* sendmail-like interface to /bin/mail for system V,
2 Copyright (C) 1985, 1994, 1999, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #define _XOPEN_SOURCE 500 /* for cuserid */
27 #if defined (BSD_SYSTEM) && !defined (USE_FAKEMAIL)
28 /* This program isnot used in BSD, so just avoid loader complaints. */
34 #else /* not BSD 4.2 (or newer) */
42 /* This conditional contains all the rest of the file. */
44 /* These are defined in config in some versions. */
60 /* This is to declare cuserid. */
65 /* Type definitions */
71 #define TM_YEAR_BASE 1900
73 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
74 asctime to have well-defined behavior. */
75 #ifndef TM_YEAR_IN_ASCTIME_RANGE
76 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
77 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
85 struct line_record
*continuation
;
87 typedef struct line_record
*line_list
;
92 struct header_record
*next
;
93 struct header_record
*previous
;
95 typedef struct header_record
*header
;
101 struct stream_record
*rest_streams
;
103 typedef struct stream_record
*stream_list
;
105 /* A `struct linebuffer' is a structure which holds a line of text.
106 * `readline' reads a line from a stream into a linebuffer
107 * and works regardless of the length of the line.
116 struct linebuffer lb
;
119 ((line_list) xmalloc (sizeof (struct line_record)))
120 #define new_header() \
121 ((header) xmalloc (sizeof (struct header_record)))
122 #define new_stream() \
123 ((stream_list) xmalloc (sizeof (struct stream_record)))
124 #define alloc_string(nchars) \
125 ((char *) xmalloc ((nchars) + 1))
127 /* Global declarations */
130 #define KEYWORD_SIZE 256
131 #define FROM_PREFIX "From"
132 #define MY_NAME "fakemail"
133 #define NIL ((line_list) NULL)
134 #define INITIAL_LINE_SIZE 200
136 #ifndef MAIL_PROGRAM_NAME
137 #define MAIL_PROGRAM_NAME "/bin/mail"
140 static char *my_name
;
141 static char *the_date
;
142 static char *the_user
;
143 static line_list file_preface
;
144 static stream_list the_streams
;
145 static boolean no_problems
= true;
147 extern FILE *popen ();
148 extern int fclose (), pclose ();
151 extern struct passwd
*getpwuid ();
152 extern unsigned short geteuid ();
153 static struct passwd
*my_entry
;
155 (my_entry = getpwuid (((int) geteuid ())), \
161 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
167 printf ("%s: ", my_name
);
173 /* Print error message and exit. */
183 /* Like malloc but get fatal error if memory is exhausted. */
189 long *result
= (long *) malloc (((unsigned) size
));
190 if (result
== ((long *) NULL
))
191 fatal ("virtual memory exhausted");
200 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
201 if (result
== ((long *) NULL
))
202 fatal ("virtual memory exhausted");
206 /* Initialize a linebuffer for use */
209 init_linebuffer (linebuffer
)
210 struct linebuffer
*linebuffer
;
212 linebuffer
->size
= INITIAL_LINE_SIZE
;
213 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
216 /* Read a line of text from `stream' into `linebuffer'.
217 Return the length of the line. */
220 readline (linebuffer
, stream
)
221 struct linebuffer
*linebuffer
;
224 char *buffer
= linebuffer
->buffer
;
225 char *p
= linebuffer
->buffer
;
226 char *end
= p
+ linebuffer
->size
;
230 int c
= getc (stream
);
233 linebuffer
->size
*= 2;
234 buffer
= ((char *) xrealloc ((long *)buffer
, linebuffer
->size
));
235 p
= buffer
+ (p
- linebuffer
->buffer
);
236 end
= buffer
+ linebuffer
->size
;
237 linebuffer
->buffer
= buffer
;
239 if (c
< 0 || c
== '\n')
250 /* Extract a colon-terminated keyword from the string FIELD.
251 Return that keyword as a string stored in a static buffer.
252 Store the address of the rest of the string into *REST.
254 If there is no keyword, return NULL and don't alter *REST. */
257 get_keyword (field
, rest
)
258 register char *field
;
261 static char keyword
[KEYWORD_SIZE
];
266 c
= (unsigned char) *field
++;
267 if (isspace (c
) || c
== ':')
268 return ((char *) NULL
);
269 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
270 while (((c
= (unsigned char) *field
++) != ':') && ! isspace (c
))
271 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
274 c
= (unsigned char) *field
++;
276 return ((char *) NULL
);
281 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
288 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
291 /* Store the string FIELD, followed by any lines in THE_LIST,
292 into the buffer WHERE.
293 Concatenate lines, putting just a space between them.
294 Delete everything contained in parentheses.
295 When a recipient name contains <...>, we discard
296 everything except what is inside the <...>.
298 We don't pay attention to overflowing WHERE;
299 the caller has to make it big enough. */
302 add_field (the_list
, field
, where
)
304 register char *field
, *where
;
309 char *this_recipient_where
;
313 this_recipient_where
= where
;
315 while ((c
= *field
++) != '\0')
321 in_quotes
= ! in_quotes
;
328 while (*field
&& *field
!= ')') ++field
;
329 if (! (*field
++)) break; /* no close */
335 /* When we get to the end of one recipient,
336 don't discard it if the next one has <...>. */
337 this_recipient_where
= where
;
340 /* Discard everything we got before the `<'. */
341 where
= this_recipient_where
;
343 /* Discard the rest of this name that follows the `>'. */
345 while (*field
&& *field
!= ',') ++field
;
346 if (! (*field
++)) break; /* no comma */
352 if (the_list
== NIL
) break;
353 field
= the_list
->string
;
354 the_list
= the_list
->continuation
;
362 char *the_string
, *temp
;
363 long idiotic_interface
;
370 prefix_length
= strlen (FROM_PREFIX
);
371 time (&idiotic_interface
);
372 /* Convert to a string, checking for out-of-range time stamps.
373 Don't use 'ctime', as that might dump core if the hardware clock
374 is set to a bizarre value. */
375 tm
= localtime (&idiotic_interface
);
376 if (! (tm
&& TM_YEAR_IN_ASCTIME_RANGE (tm
->tm_year
)
377 && (the_date
= asctime (tm
))))
378 fatal ("current time is out of range");
379 /* the_date has an unwanted newline at the end */
380 date_length
= strlen (the_date
) - 1;
381 the_date
[date_length
] = '\0';
382 temp
= cuserid ((char *) NULL
);
383 user_length
= strlen (temp
);
384 the_user
= alloc_string (user_length
+ 1);
385 strcpy (the_user
, temp
);
386 the_string
= alloc_string (3 + prefix_length
390 strcpy (temp
, FROM_PREFIX
);
391 temp
= &temp
[prefix_length
];
393 strcpy (temp
, the_user
);
394 temp
= &temp
[user_length
];
396 strcpy (temp
, the_date
);
397 result
= new_list ();
398 result
->string
= the_string
;
399 result
->continuation
= ((line_list
) NULL
);
404 write_line_list (the_list
, the_stream
)
405 register line_list the_list
;
409 the_list
!= ((line_list
) NULL
) ;
410 the_list
= the_list
->continuation
)
412 fputs (the_list
->string
, the_stream
);
413 putc ('\n', the_stream
);
421 register stream_list rem
;
422 for (rem
= the_streams
;
423 rem
!= ((stream_list
) NULL
);
424 rem
= rem
->rest_streams
)
425 no_problems
= (no_problems
&&
426 ((*rem
->action
) (rem
->handle
) == 0));
427 the_streams
= ((stream_list
) NULL
);
428 return (no_problems
? EXIT_SUCCESS
: EXIT_FAILURE
);
432 add_a_stream (the_stream
, closing_action
)
434 int (*closing_action
)();
436 stream_list old
= the_streams
;
437 the_streams
= new_stream ();
438 the_streams
->handle
= the_stream
;
439 the_streams
->action
= closing_action
;
440 the_streams
->rest_streams
= old
;
448 putc ('\n', the_file
);
450 return fclose (the_file
);
457 FILE *the_stream
= fopen (name
, "a");
458 if (the_stream
!= ((FILE *) NULL
))
460 add_a_stream (the_stream
, my_fclose
);
461 if (the_user
== ((char *) NULL
))
462 file_preface
= make_file_preface ();
463 write_line_list (file_preface
, the_stream
);
473 register stream_list rem
;
474 for (rem
= the_streams
;
475 rem
!= ((stream_list
) NULL
);
476 rem
= rem
->rest_streams
)
477 fputs (s
, rem
->handle
);
485 register stream_list rem
;
486 for (rem
= the_streams
;
487 rem
!= ((stream_list
) NULL
);
488 rem
= rem
->rest_streams
)
493 /* Divide STRING into lines. */
498 /* Find the last char that fits. */
499 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
501 if (*breakpos
== '\t')
506 /* If we didn't reach end of line, break the line. */
509 /* Back up to just after the last comma that fits. */
510 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
514 /* If no comma fits, move past the first address anyway. */
515 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
517 /* Include the comma after it. */
521 /* Output that much, then break the line. */
522 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
525 /* Skip whitespace and prepare to print more addresses. */
527 while (*s
== ' ' || *s
== '\t') ++s
;
529 fputs ("\n\t", rem
->handle
);
531 putc ('\n', rem
->handle
);
536 #define mail_error error
538 /* Handle an FCC field. FIELD is the text of the first line (after
539 the header name), and THE_LIST holds the continuation lines if any.
540 Call open_a_file for each file. */
543 setup_files (the_list
, field
)
544 register line_list the_list
;
545 register char *field
;
547 register char *start
;
551 while (((c
= *field
) != '\0')
559 while (((c
= *field
) != '\0')
565 if (!open_a_file (start
))
566 mail_error ("Could not open file %s", start
);
568 if (c
!= '\0') continue;
570 if (the_list
== ((line_list
) NULL
))
572 field
= the_list
->string
;
573 the_list
= the_list
->continuation
;
577 /* Compute the total size of all recipient names stored in THE_HEADER.
578 The result says how big to make the buffer to pass to parse_header. */
581 args_size (the_header
)
584 register header old
= the_header
;
585 register line_list rem
;
586 register int size
= 0;
590 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
591 if ((strcmp (keyword
, "TO") == 0)
592 || (strcmp (keyword
, "CC") == 0)
593 || (strcmp (keyword
, "BCC") == 0))
595 size
+= 1 + strlen (field
);
596 for (rem
= the_header
->text
->continuation
;
598 rem
= rem
->continuation
)
599 size
+= 1 + strlen (rem
->string
);
601 the_header
= the_header
->next
;
602 } while (the_header
!= old
);
606 /* Scan the header described by the lists THE_HEADER,
607 and put all recipient names into the buffer WHERE.
608 Precede each recipient name with a space.
610 Also, if the header has any FCC fields, call setup_files for each one. */
613 parse_header (the_header
, where
)
615 register char *where
;
617 register header old
= the_header
;
621 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
622 if (strcmp (keyword
, "TO") == 0)
623 where
= add_field (the_header
->text
->continuation
, field
, where
);
624 else if (strcmp (keyword
, "CC") == 0)
625 where
= add_field (the_header
->text
->continuation
, field
, where
);
626 else if (strcmp (keyword
, "BCC") == 0)
628 where
= add_field (the_header
->text
->continuation
, field
, where
);
629 the_header
->previous
->next
= the_header
->next
;
630 the_header
->next
->previous
= the_header
->previous
;
632 else if (strcmp (keyword
, "FCC") == 0)
633 setup_files (the_header
->text
->continuation
, field
);
634 the_header
= the_header
->next
;
635 } while (the_header
!= old
);
640 /* Read lines from the input until we get a blank line.
641 Create a list of `header' objects, one for each header field,
642 each of which points to a list of `line_list' objects,
643 one for each line in that field.
644 Continuation lines are grouped in the headers they continue. */
649 register header the_header
= ((header
) NULL
);
650 register line_list
*next_line
= ((line_list
*) NULL
);
652 init_linebuffer (&lb
);
659 readline (&lb
, stdin
);
661 length
= strlen (line
);
662 if (length
== 0) break;
664 if (has_keyword (line
))
666 register header old
= the_header
;
667 the_header
= new_header ();
668 if (old
== ((header
) NULL
))
670 the_header
->next
= the_header
;
671 the_header
->previous
= the_header
;
675 the_header
->previous
= old
;
676 the_header
->next
= old
->next
;
677 old
->next
= the_header
;
679 next_line
= &(the_header
->text
);
682 if (next_line
== ((line_list
*) NULL
))
684 /* Not a valid header */
687 *next_line
= new_list ();
688 (*next_line
)->string
= alloc_string (length
);
689 strcpy (((*next_line
)->string
), line
);
690 next_line
= &((*next_line
)->continuation
);
696 fatal ("input message has no header");
697 return the_header
->next
;
701 write_header (the_header
)
704 register header old
= the_header
;
707 register line_list the_list
;
708 for (the_list
= the_header
->text
;
710 the_list
= the_list
->continuation
)
711 put_line (the_list
->string
);
712 the_header
= the_header
->next
;
713 } while (the_header
!= old
);
726 char *mail_program_name
;
727 char buf
[BUFLEN
+ 1];
731 extern char *getenv ();
733 mail_program_name
= getenv ("FAKEMAILER");
734 if (!(mail_program_name
&& *mail_program_name
))
735 mail_program_name
= MAIL_PROGRAM_NAME
;
736 name_length
= strlen (mail_program_name
);
739 the_streams
= ((stream_list
) NULL
);
740 the_date
= ((char *) NULL
);
741 the_user
= ((char *) NULL
);
743 the_header
= read_header ();
744 command_line
= alloc_string (name_length
+ args_size (the_header
));
745 strcpy (command_line
, mail_program_name
);
746 parse_header (the_header
, &command_line
[name_length
]);
748 the_pipe
= popen (command_line
, "w");
749 if (the_pipe
== ((FILE *) NULL
))
750 fatal ("cannot open pipe to real mailer");
752 add_a_stream (the_pipe
, pclose
);
754 write_header (the_header
);
756 /* Dump the message itself */
758 while (!feof (stdin
))
760 size
= fread (buf
, 1, BUFLEN
, stdin
);
765 exit (close_the_streams ());
768 #endif /* not MSDOS */
769 #endif /* not BSD 4.2 (or newer) */
771 /* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783
772 (do not change this comment) */
774 /* fakemail.c ends here */