1 /* sendmail-like interface to /bin/mail for system V,
2 Copyright (C) 1985, 1994 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 #include <../src/config.h>
25 #if defined (BSD_SYSTEM) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
26 /* This program isnot used in BSD, so just avoid loader complaints. */
32 #else /* not BSD 4.2 (or newer) */
40 /* This conditional contains all the rest of the file. */
42 /* These are defined in config in some versions. */
65 /* Type definitions */
76 struct line_record
*continuation
;
78 typedef struct line_record
*line_list
;
83 struct header_record
*next
;
84 struct header_record
*previous
;
86 typedef struct header_record
*header
;
92 struct stream_record
*rest_streams
;
94 typedef struct stream_record
*stream_list
;
96 /* A `struct linebuffer' is a structure which holds a line of text.
97 * `readline' reads a line from a stream into a linebuffer
98 * and works regardless of the length of the line.
107 struct linebuffer lb
;
110 ((line_list) xmalloc (sizeof (struct line_record)))
111 #define new_header() \
112 ((header) xmalloc (sizeof (struct header_record)))
113 #define new_stream() \
114 ((stream_list) xmalloc (sizeof (struct stream_record)))
115 #define alloc_string(nchars) \
116 ((char *) xmalloc ((nchars) + 1))
118 /* Global declarations */
121 #define KEYWORD_SIZE 256
122 #define FROM_PREFIX "From"
123 #define MY_NAME "fakemail"
124 #define NIL ((line_list) NULL)
125 #define INITIAL_LINE_SIZE 200
127 #ifndef MAIL_PROGRAM_NAME
128 #define MAIL_PROGRAM_NAME "/bin/mail"
131 static char *my_name
;
132 static char *the_date
;
133 static char *the_user
;
134 static line_list file_preface
;
135 static stream_list the_streams
;
136 static boolean no_problems
= true;
138 extern FILE *popen ();
139 extern int fclose (), pclose ();
142 extern struct passwd
*getpwuid ();
143 extern unsigned short geteuid ();
144 static struct passwd
*my_entry
;
146 (my_entry = getpwuid (((int) geteuid ())), \
152 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
158 printf ("%s: ", my_name
);
164 /* Print error message and exit. */
174 /* Like malloc but get fatal error if memory is exhausted. */
180 long *result
= (long *) malloc (((unsigned) size
));
181 if (result
== ((long *) NULL
))
182 fatal ("virtual memory exhausted", 0);
191 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
192 if (result
== ((long *) NULL
))
193 fatal ("virtual memory exhausted");
197 /* Initialize a linebuffer for use */
200 init_linebuffer (linebuffer
)
201 struct linebuffer
*linebuffer
;
203 linebuffer
->size
= INITIAL_LINE_SIZE
;
204 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
207 /* Read a line of text from `stream' into `linebuffer'.
208 * Return the length of the line.
212 readline (linebuffer
, stream
)
213 struct linebuffer
*linebuffer
;
216 char *buffer
= linebuffer
->buffer
;
217 char *p
= linebuffer
->buffer
;
218 char *end
= p
+ linebuffer
->size
;
222 int c
= getc (stream
);
225 linebuffer
->size
*= 2;
226 buffer
= ((char *) xrealloc (buffer
, linebuffer
->size
));
227 p
= buffer
+ (p
- linebuffer
->buffer
);
228 end
= buffer
+ linebuffer
->size
;
229 linebuffer
->buffer
= buffer
;
231 if (c
< 0 || c
== '\n')
242 /* Extract a colon-terminated keyword from the string FIELD.
243 Return that keyword as a string stored in a static buffer.
244 Store the address of the rest of the string into *REST.
246 If there is no keyword, return NULL and don't alter *REST. */
249 get_keyword (field
, rest
)
250 register char *field
;
253 static char keyword
[KEYWORD_SIZE
];
259 if (isspace (c
) || c
== ':')
260 return ((char *) NULL
);
261 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
262 while (((c
= *field
++) != ':') && ! isspace (c
))
263 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
268 return ((char *) NULL
);
273 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
280 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
283 /* Store the string FIELD, followed by any lines in THE_LIST,
284 into the buffer WHERE.
285 Concatenate lines, putting just a space between them.
286 Delete everything contained in parentheses.
287 When a recipient name contains <...>, we discard
288 everything except what is inside the <...>.
290 We don't pay attention to overflowing WHERE;
291 the caller has to make it big enough. */
294 add_field (the_list
, field
, where
)
296 register char *field
, *where
;
301 char *this_recipient_where
;
305 this_recipient_where
= where
;
307 while ((c
= *field
++) != '\0')
313 in_quotes
= ! in_quotes
;
320 while (*field
&& *field
!= ')') ++field
;
321 if (! (*field
++)) break; /* no close */
327 /* When we get to the end of one recipient,
328 don't discard it if the next one has <...>. */
329 this_recipient_where
= where
;
332 /* Discard everything we got before the `<'. */
333 where
= this_recipient_where
;
335 /* Discard the rest of this name that follows the `>'. */
337 while (*field
&& *field
!= ',') ++field
;
338 if (! (*field
++)) break; /* no comma */
344 if (the_list
== NIL
) break;
345 field
= the_list
->string
;
346 the_list
= the_list
->continuation
;
354 char *the_string
, *temp
;
355 long idiotic_interface
;
361 prefix_length
= strlen (FROM_PREFIX
);
362 time (&idiotic_interface
);
363 the_date
= ctime (&idiotic_interface
);
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 (the_list
, the_stream
)
390 register line_list the_list
;
394 the_list
!= ((line_list
) NULL
) ;
395 the_list
= the_list
->continuation
)
397 fputs (the_list
->string
, the_stream
);
398 putc ('\n', the_stream
);
406 register stream_list rem
;
407 for (rem
= the_streams
;
408 rem
!= ((stream_list
) NULL
);
409 rem
= rem
->rest_streams
)
410 no_problems
= (no_problems
&&
411 ((*rem
->action
) (rem
->handle
) == 0));
412 the_streams
= ((stream_list
) NULL
);
413 return (no_problems
? 0 : 1);
417 add_a_stream (the_stream
, closing_action
)
419 int (*closing_action
)();
421 stream_list old
= the_streams
;
422 the_streams
= new_stream ();
423 the_streams
->handle
= the_stream
;
424 the_streams
->action
= closing_action
;
425 the_streams
->rest_streams
= old
;
433 putc ('\n', the_file
);
435 return fclose (the_file
);
442 FILE *the_stream
= fopen (name
, "a");
443 if (the_stream
!= ((FILE *) NULL
))
445 add_a_stream (the_stream
, my_fclose
);
446 if (the_user
== ((char *) NULL
))
447 file_preface
= make_file_preface ();
448 write_line_list (file_preface
, the_stream
);
458 register stream_list rem
;
459 for (rem
= the_streams
;
460 rem
!= ((stream_list
) NULL
);
461 rem
= rem
->rest_streams
)
462 fputs (s
, rem
->handle
);
470 register stream_list rem
;
471 for (rem
= the_streams
;
472 rem
!= ((stream_list
) NULL
);
473 rem
= rem
->rest_streams
)
478 /* Divide STRING into lines. */
483 /* Find the last char that fits. */
484 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
486 if (*breakpos
== '\t')
491 /* If we didn't reach end of line, break the line. */
494 /* Back up to just after the last comma that fits. */
495 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
499 /* If no comma fits, move past the first address anyway. */
500 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
502 /* Include the comma after it. */
506 /* Output that much, then break the line. */
507 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
510 /* Skip whitespace and prepare to print more addresses. */
512 while (*s
== ' ' || *s
== '\t') ++s
;
514 fputs ("\n\t", rem
->handle
);
516 putc ('\n', rem
->handle
);
521 #define mail_error error
523 /* Handle an FCC field. FIELD is the text of the first line (after
524 the header name), and THE_LIST holds the continuation lines if any.
525 Call open_a_file for each file. */
528 setup_files (the_list
, field
)
529 register line_list the_list
;
530 register char *field
;
532 register char *start
;
536 while (((c
= *field
) != '\0')
544 while (((c
= *field
) != '\0')
550 if (!open_a_file (start
))
551 mail_error ("Could not open file %s", start
);
553 if (c
!= '\0') continue;
555 if (the_list
== ((line_list
) NULL
))
557 field
= the_list
->string
;
558 the_list
= the_list
->continuation
;
562 /* Compute the total size of all recipient names stored in THE_HEADER.
563 The result says how big to make the buffer to pass to parse_header. */
566 args_size (the_header
)
569 register header old
= the_header
;
570 register line_list rem
;
571 register int size
= 0;
575 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
576 if ((strcmp (keyword
, "TO") == 0)
577 || (strcmp (keyword
, "CC") == 0)
578 || (strcmp (keyword
, "BCC") == 0))
580 size
+= 1 + strlen (field
);
581 for (rem
= the_header
->text
->continuation
;
583 rem
= rem
->continuation
)
584 size
+= 1 + strlen (rem
->string
);
586 the_header
= the_header
->next
;
587 } while (the_header
!= old
);
591 /* Scan the header described by the lists THE_HEADER,
592 and put all recipient names into the buffer WHERE.
593 Precede each recipient name with a space.
595 Also, if the header has any FCC fields, call setup_files for each one. */
597 parse_header (the_header
, where
)
599 register char *where
;
601 register header old
= the_header
;
605 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
606 if (strcmp (keyword
, "TO") == 0)
607 where
= add_field (the_header
->text
->continuation
, field
, where
);
608 else if (strcmp (keyword
, "CC") == 0)
609 where
= add_field (the_header
->text
->continuation
, field
, where
);
610 else if (strcmp (keyword
, "BCC") == 0)
612 where
= add_field (the_header
->text
->continuation
, field
, where
);
613 the_header
->previous
->next
= the_header
->next
;
614 the_header
->next
->previous
= the_header
->previous
;
616 else if (strcmp (keyword
, "FCC") == 0)
617 setup_files (the_header
->text
->continuation
, field
);
618 the_header
= the_header
->next
;
619 } while (the_header
!= old
);
624 /* Read lines from the input until we get a blank line.
625 Create a list of `header' objects, one for each header field,
626 each of which points to a list of `line_list' objects,
627 one for each line in that field.
628 Continuation lines are grouped in the headers they continue. */
633 register header the_header
= ((header
) NULL
);
634 register line_list
*next_line
= ((line_list
*) NULL
);
636 init_linebuffer (&lb
);
643 readline (&lb
, stdin
);
645 length
= strlen (line
);
646 if (length
== 0) break;
648 if (has_keyword (line
))
650 register header old
= the_header
;
651 the_header
= new_header ();
652 if (old
== ((header
) NULL
))
654 the_header
->next
= the_header
;
655 the_header
->previous
= the_header
;
659 the_header
->previous
= old
;
660 the_header
->next
= old
->next
;
661 old
->next
= the_header
;
663 next_line
= &(the_header
->text
);
666 if (next_line
== ((line_list
*) NULL
))
668 /* Not a valid header */
671 *next_line
= new_list ();
672 (*next_line
)->string
= alloc_string (length
);
673 strcpy (((*next_line
)->string
), line
);
674 next_line
= &((*next_line
)->continuation
);
679 return the_header
->next
;
683 write_header (the_header
)
686 register header old
= the_header
;
689 register line_list the_list
;
690 for (the_list
= the_header
->text
;
692 the_list
= the_list
->continuation
)
693 put_line (the_list
->string
);
694 the_header
= the_header
->next
;
695 } while (the_header
!= old
);
708 char *mail_program_name
;
709 char buf
[BUFLEN
+ 1];
713 extern char *getenv ();
715 mail_program_name
= getenv ("FAKEMAILER");
716 if (!(mail_program_name
&& *mail_program_name
))
717 mail_program_name
= MAIL_PROGRAM_NAME
;
718 name_length
= strlen (mail_program_name
);
721 the_streams
= ((stream_list
) NULL
);
722 the_date
= ((char *) NULL
);
723 the_user
= ((char *) NULL
);
725 the_header
= read_header ();
726 command_line
= alloc_string (name_length
+ args_size (the_header
));
727 strcpy (command_line
, mail_program_name
);
728 parse_header (the_header
, &command_line
[name_length
]);
730 the_pipe
= popen (command_line
, "w");
731 if (the_pipe
== ((FILE *) NULL
))
732 fatal ("cannot open pipe to real mailer");
734 add_a_stream (the_pipe
, pclose
);
736 write_header (the_header
);
738 /* Dump the message itself */
740 while (!feof (stdin
))
742 size
= fread (buf
, 1, BUFLEN
, stdin
);
747 exit (close_the_streams ());
750 #endif /* not MSDOS */
751 #endif /* not BSD 4.2 (or newer) */