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. */
22 /* This is needed to get the declaration of cuserid in GNU libc. */
23 #define _XOPEN_SOURCE 1
26 #include <../src/config.h>
28 #if defined (BSD_SYSTEM) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
29 /* This program isnot used in BSD, so just avoid loader complaints. */
35 #else /* not BSD 4.2 (or newer) */
43 /* This conditional contains all the rest of the file. */
45 /* These are defined in config in some versions. */
68 /* This is to declare cuserid. */
77 /* Type definitions */
88 struct line_record
*continuation
;
90 typedef struct line_record
*line_list
;
95 struct header_record
*next
;
96 struct header_record
*previous
;
98 typedef struct header_record
*header
;
104 struct stream_record
*rest_streams
;
106 typedef struct stream_record
*stream_list
;
108 /* A `struct linebuffer' is a structure which holds a line of text.
109 * `readline' reads a line from a stream into a linebuffer
110 * and works regardless of the length of the line.
119 struct linebuffer lb
;
122 ((line_list) xmalloc (sizeof (struct line_record)))
123 #define new_header() \
124 ((header) xmalloc (sizeof (struct header_record)))
125 #define new_stream() \
126 ((stream_list) xmalloc (sizeof (struct stream_record)))
127 #define alloc_string(nchars) \
128 ((char *) xmalloc ((nchars) + 1))
130 /* Global declarations */
133 #define KEYWORD_SIZE 256
134 #define FROM_PREFIX "From"
135 #define MY_NAME "fakemail"
136 #define NIL ((line_list) NULL)
137 #define INITIAL_LINE_SIZE 200
139 #ifndef MAIL_PROGRAM_NAME
140 #define MAIL_PROGRAM_NAME "/bin/mail"
143 static char *my_name
;
144 static char *the_date
;
145 static char *the_user
;
146 static line_list file_preface
;
147 static stream_list the_streams
;
148 static boolean no_problems
= true;
150 extern FILE *popen ();
151 extern int fclose (), pclose ();
154 extern struct passwd
*getpwuid ();
155 extern unsigned short geteuid ();
156 static struct passwd
*my_entry
;
158 (my_entry = getpwuid (((int) geteuid ())), \
164 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
170 printf ("%s: ", my_name
);
176 /* Print error message and exit. */
186 /* Like malloc but get fatal error if memory is exhausted. */
192 long *result
= (long *) malloc (((unsigned) size
));
193 if (result
== ((long *) NULL
))
194 fatal ("virtual memory exhausted", 0);
203 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
204 if (result
== ((long *) NULL
))
205 fatal ("virtual memory exhausted");
209 /* Initialize a linebuffer for use */
212 init_linebuffer (linebuffer
)
213 struct linebuffer
*linebuffer
;
215 linebuffer
->size
= INITIAL_LINE_SIZE
;
216 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
219 /* Read a line of text from `stream' into `linebuffer'.
220 * Return the length of the line.
224 readline (linebuffer
, stream
)
225 struct linebuffer
*linebuffer
;
228 char *buffer
= linebuffer
->buffer
;
229 char *p
= linebuffer
->buffer
;
230 char *end
= p
+ linebuffer
->size
;
234 int c
= getc (stream
);
237 linebuffer
->size
*= 2;
238 buffer
= ((char *) xrealloc (buffer
, linebuffer
->size
));
239 p
= buffer
+ (p
- linebuffer
->buffer
);
240 end
= buffer
+ linebuffer
->size
;
241 linebuffer
->buffer
= buffer
;
243 if (c
< 0 || c
== '\n')
254 /* Extract a colon-terminated keyword from the string FIELD.
255 Return that keyword as a string stored in a static buffer.
256 Store the address of the rest of the string into *REST.
258 If there is no keyword, return NULL and don't alter *REST. */
261 get_keyword (field
, rest
)
262 register char *field
;
265 static char keyword
[KEYWORD_SIZE
];
271 if (isspace (c
) || c
== ':')
272 return ((char *) NULL
);
273 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
274 while (((c
= *field
++) != ':') && ! isspace (c
))
275 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
280 return ((char *) NULL
);
285 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
292 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
295 /* Store the string FIELD, followed by any lines in THE_LIST,
296 into the buffer WHERE.
297 Concatenate lines, putting just a space between them.
298 Delete everything contained in parentheses.
299 When a recipient name contains <...>, we discard
300 everything except what is inside the <...>.
302 We don't pay attention to overflowing WHERE;
303 the caller has to make it big enough. */
306 add_field (the_list
, field
, where
)
308 register char *field
, *where
;
313 char *this_recipient_where
;
317 this_recipient_where
= where
;
319 while ((c
= *field
++) != '\0')
325 in_quotes
= ! in_quotes
;
332 while (*field
&& *field
!= ')') ++field
;
333 if (! (*field
++)) break; /* no close */
339 /* When we get to the end of one recipient,
340 don't discard it if the next one has <...>. */
341 this_recipient_where
= where
;
344 /* Discard everything we got before the `<'. */
345 where
= this_recipient_where
;
347 /* Discard the rest of this name that follows the `>'. */
349 while (*field
&& *field
!= ',') ++field
;
350 if (! (*field
++)) break; /* no comma */
356 if (the_list
== NIL
) break;
357 field
= the_list
->string
;
358 the_list
= the_list
->continuation
;
366 char *the_string
, *temp
;
367 long idiotic_interface
;
373 prefix_length
= strlen (FROM_PREFIX
);
374 time (&idiotic_interface
);
375 the_date
= ctime (&idiotic_interface
);
376 /* the_date has an unwanted newline at the end */
377 date_length
= strlen (the_date
) - 1;
378 the_date
[date_length
] = '\0';
379 temp
= cuserid ((char *) NULL
);
380 user_length
= strlen (temp
);
381 the_user
= alloc_string (user_length
+ 1);
382 strcpy (the_user
, temp
);
383 the_string
= alloc_string (3 + prefix_length
387 strcpy (temp
, FROM_PREFIX
);
388 temp
= &temp
[prefix_length
];
390 strcpy (temp
, the_user
);
391 temp
= &temp
[user_length
];
393 strcpy (temp
, the_date
);
394 result
= new_list ();
395 result
->string
= the_string
;
396 result
->continuation
= ((line_list
) NULL
);
401 write_line_list (the_list
, the_stream
)
402 register line_list the_list
;
406 the_list
!= ((line_list
) NULL
) ;
407 the_list
= the_list
->continuation
)
409 fputs (the_list
->string
, the_stream
);
410 putc ('\n', the_stream
);
418 register stream_list rem
;
419 for (rem
= the_streams
;
420 rem
!= ((stream_list
) NULL
);
421 rem
= rem
->rest_streams
)
422 no_problems
= (no_problems
&&
423 ((*rem
->action
) (rem
->handle
) == 0));
424 the_streams
= ((stream_list
) NULL
);
425 return (no_problems
? 0 : 1);
429 add_a_stream (the_stream
, closing_action
)
431 int (*closing_action
)();
433 stream_list old
= the_streams
;
434 the_streams
= new_stream ();
435 the_streams
->handle
= the_stream
;
436 the_streams
->action
= closing_action
;
437 the_streams
->rest_streams
= old
;
445 putc ('\n', the_file
);
447 return fclose (the_file
);
454 FILE *the_stream
= fopen (name
, "a");
455 if (the_stream
!= ((FILE *) NULL
))
457 add_a_stream (the_stream
, my_fclose
);
458 if (the_user
== ((char *) NULL
))
459 file_preface
= make_file_preface ();
460 write_line_list (file_preface
, the_stream
);
470 register stream_list rem
;
471 for (rem
= the_streams
;
472 rem
!= ((stream_list
) NULL
);
473 rem
= rem
->rest_streams
)
474 fputs (s
, rem
->handle
);
482 register stream_list rem
;
483 for (rem
= the_streams
;
484 rem
!= ((stream_list
) NULL
);
485 rem
= rem
->rest_streams
)
490 /* Divide STRING into lines. */
495 /* Find the last char that fits. */
496 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
498 if (*breakpos
== '\t')
503 /* If we didn't reach end of line, break the line. */
506 /* Back up to just after the last comma that fits. */
507 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
511 /* If no comma fits, move past the first address anyway. */
512 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
514 /* Include the comma after it. */
518 /* Output that much, then break the line. */
519 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
522 /* Skip whitespace and prepare to print more addresses. */
524 while (*s
== ' ' || *s
== '\t') ++s
;
526 fputs ("\n\t", rem
->handle
);
528 putc ('\n', rem
->handle
);
533 #define mail_error error
535 /* Handle an FCC field. FIELD is the text of the first line (after
536 the header name), and THE_LIST holds the continuation lines if any.
537 Call open_a_file for each file. */
540 setup_files (the_list
, field
)
541 register line_list the_list
;
542 register char *field
;
544 register char *start
;
548 while (((c
= *field
) != '\0')
556 while (((c
= *field
) != '\0')
562 if (!open_a_file (start
))
563 mail_error ("Could not open file %s", start
);
565 if (c
!= '\0') continue;
567 if (the_list
== ((line_list
) NULL
))
569 field
= the_list
->string
;
570 the_list
= the_list
->continuation
;
574 /* Compute the total size of all recipient names stored in THE_HEADER.
575 The result says how big to make the buffer to pass to parse_header. */
578 args_size (the_header
)
581 register header old
= the_header
;
582 register line_list rem
;
583 register int size
= 0;
587 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
588 if ((strcmp (keyword
, "TO") == 0)
589 || (strcmp (keyword
, "CC") == 0)
590 || (strcmp (keyword
, "BCC") == 0))
592 size
+= 1 + strlen (field
);
593 for (rem
= the_header
->text
->continuation
;
595 rem
= rem
->continuation
)
596 size
+= 1 + strlen (rem
->string
);
598 the_header
= the_header
->next
;
599 } while (the_header
!= old
);
603 /* Scan the header described by the lists THE_HEADER,
604 and put all recipient names into the buffer WHERE.
605 Precede each recipient name with a space.
607 Also, if the header has any FCC fields, call setup_files for each one. */
610 parse_header (the_header
, where
)
612 register char *where
;
614 register header old
= the_header
;
618 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
619 if (strcmp (keyword
, "TO") == 0)
620 where
= add_field (the_header
->text
->continuation
, field
, where
);
621 else if (strcmp (keyword
, "CC") == 0)
622 where
= add_field (the_header
->text
->continuation
, field
, where
);
623 else if (strcmp (keyword
, "BCC") == 0)
625 where
= add_field (the_header
->text
->continuation
, field
, where
);
626 the_header
->previous
->next
= the_header
->next
;
627 the_header
->next
->previous
= the_header
->previous
;
629 else if (strcmp (keyword
, "FCC") == 0)
630 setup_files (the_header
->text
->continuation
, field
);
631 the_header
= the_header
->next
;
632 } while (the_header
!= old
);
637 /* Read lines from the input until we get a blank line.
638 Create a list of `header' objects, one for each header field,
639 each of which points to a list of `line_list' objects,
640 one for each line in that field.
641 Continuation lines are grouped in the headers they continue. */
646 register header the_header
= ((header
) NULL
);
647 register line_list
*next_line
= ((line_list
*) NULL
);
649 init_linebuffer (&lb
);
656 readline (&lb
, stdin
);
658 length
= strlen (line
);
659 if (length
== 0) break;
661 if (has_keyword (line
))
663 register header old
= the_header
;
664 the_header
= new_header ();
665 if (old
== ((header
) NULL
))
667 the_header
->next
= the_header
;
668 the_header
->previous
= the_header
;
672 the_header
->previous
= old
;
673 the_header
->next
= old
->next
;
674 old
->next
= the_header
;
676 next_line
= &(the_header
->text
);
679 if (next_line
== ((line_list
*) NULL
))
681 /* Not a valid header */
684 *next_line
= new_list ();
685 (*next_line
)->string
= alloc_string (length
);
686 strcpy (((*next_line
)->string
), line
);
687 next_line
= &((*next_line
)->continuation
);
692 return the_header
->next
;
696 write_header (the_header
)
699 register header old
= the_header
;
702 register line_list the_list
;
703 for (the_list
= the_header
->text
;
705 the_list
= the_list
->continuation
)
706 put_line (the_list
->string
);
707 the_header
= the_header
->next
;
708 } while (the_header
!= old
);
721 char *mail_program_name
;
722 char buf
[BUFLEN
+ 1];
726 extern char *getenv ();
728 mail_program_name
= getenv ("FAKEMAILER");
729 if (!(mail_program_name
&& *mail_program_name
))
730 mail_program_name
= MAIL_PROGRAM_NAME
;
731 name_length
= strlen (mail_program_name
);
734 the_streams
= ((stream_list
) NULL
);
735 the_date
= ((char *) NULL
);
736 the_user
= ((char *) NULL
);
738 the_header
= read_header ();
739 command_line
= alloc_string (name_length
+ args_size (the_header
));
740 strcpy (command_line
, mail_program_name
);
741 parse_header (the_header
, &command_line
[name_length
]);
743 the_pipe
= popen (command_line
, "w");
744 if (the_pipe
== ((FILE *) NULL
))
745 fatal ("cannot open pipe to real mailer");
747 add_a_stream (the_pipe
, pclose
);
749 write_header (the_header
);
751 /* Dump the message itself */
753 while (!feof (stdin
))
755 size
= fread (buf
, 1, BUFLEN
, stdin
);
760 exit (close_the_streams ());
763 #endif /* not MSDOS */
764 #endif /* not BSD 4.2 (or newer) */