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, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <../src/config.h>
24 #if defined (BSD) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
25 /* This program isnot used in BSD, so just avoid loader complaints. */
30 #else /* not BSD 4.2 (or newer) */
37 /* This conditional contains all the rest of the file. */
39 /* These are defined in config in some versions. */
58 /* Type definitions */
69 struct line_record
*continuation
;
71 typedef struct line_record
*line_list
;
76 struct header_record
*next
;
77 struct header_record
*previous
;
79 typedef struct header_record
*header
;
85 struct stream_record
*rest_streams
;
87 typedef struct stream_record
*stream_list
;
89 /* A `struct linebuffer' is a structure which holds a line of text.
90 * `readline' reads a line from a stream into a linebuffer
91 * and works regardless of the length of the line.
100 struct linebuffer lb
;
103 ((line_list) xmalloc (sizeof (struct line_record)))
104 #define new_header() \
105 ((header) xmalloc (sizeof (struct header_record)))
106 #define new_stream() \
107 ((stream_list) xmalloc (sizeof (struct stream_record)))
108 #define alloc_string(nchars) \
109 ((char *) xmalloc ((nchars) + 1))
111 /* Global declarations */
114 #define KEYWORD_SIZE 256
115 #define FROM_PREFIX "From"
116 #define MY_NAME "fakemail"
117 #define NIL ((line_list) NULL)
118 #define INITIAL_LINE_SIZE 200
120 #ifndef MAIL_PROGRAM_NAME
121 #define MAIL_PROGRAM_NAME "/bin/mail"
124 static char *my_name
;
125 static char *the_date
;
126 static char *the_user
;
127 static line_list file_preface
;
128 static stream_list the_streams
;
129 static boolean no_problems
= true;
131 extern FILE *popen ();
132 extern int fclose (), pclose ();
135 extern struct passwd
*getpwuid ();
136 extern unsigned short geteuid ();
137 static struct passwd
*my_entry
;
139 (my_entry = getpwuid (((int) geteuid ())), \
145 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
151 printf ("%s: ", my_name
);
157 /* Print error message and exit. */
167 /* Like malloc but get fatal error if memory is exhausted. */
173 long *result
= (long *) malloc (((unsigned) size
));
174 if (result
== ((long *) NULL
))
175 fatal ("virtual memory exhausted", 0);
184 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
185 if (result
== ((long *) NULL
))
186 fatal ("virtual memory exhausted");
190 /* Initialize a linebuffer for use */
193 init_linebuffer (linebuffer
)
194 struct linebuffer
*linebuffer
;
196 linebuffer
->size
= INITIAL_LINE_SIZE
;
197 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
200 /* Read a line of text from `stream' into `linebuffer'.
201 * Return the length of the line.
205 readline (linebuffer
, stream
)
206 struct linebuffer
*linebuffer
;
209 char *buffer
= linebuffer
->buffer
;
210 char *p
= linebuffer
->buffer
;
211 char *end
= p
+ linebuffer
->size
;
215 int c
= getc (stream
);
218 linebuffer
->size
*= 2;
219 buffer
= ((char *) xrealloc (buffer
, linebuffer
->size
));
220 p
= buffer
+ (p
- linebuffer
->buffer
);
221 end
= buffer
+ linebuffer
->size
;
222 linebuffer
->buffer
= buffer
;
224 if (c
< 0 || c
== '\n')
235 /* Extract a colon-terminated keyword from the string FIELD.
236 Return that keyword as a string stored in a static buffer.
237 Store the address of the rest of the string into *REST.
239 If there is no keyword, return NULL and don't alter *REST. */
242 get_keyword (field
, rest
)
243 register char *field
;
246 static char keyword
[KEYWORD_SIZE
];
252 if (isspace (c
) || c
== ':')
253 return ((char *) NULL
);
254 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
255 while (((c
= *field
++) != ':') && ! isspace (c
))
256 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
261 return ((char *) NULL
);
266 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
273 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
276 /* Store the string FIELD, followed by any lines in THE_LIST,
277 into the buffer WHERE.
278 Concatenate lines, putting just a space between them.
279 Delete everything contained in parentheses.
280 When a recipient name contains <...>, we discard
281 everything except what is inside the <...>.
283 We don't pay attention to overflowing WHERE;
284 the caller has to make it big enough. */
287 add_field (the_list
, field
, where
)
289 register char *field
, *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
;
347 char *the_string
, *temp
;
348 long idiotic_interface
;
354 prefix_length
= strlen (FROM_PREFIX
);
355 time (&idiotic_interface
);
356 the_date
= ctime (&idiotic_interface
);
357 /* the_date has an unwanted newline at the end */
358 date_length
= strlen (the_date
) - 1;
359 the_date
[date_length
] = '\0';
360 temp
= cuserid ((char *) NULL
);
361 user_length
= strlen (temp
);
362 the_user
= alloc_string (user_length
+ 1);
363 strcpy (the_user
, temp
);
364 the_string
= alloc_string (3 + prefix_length
+
368 strcpy (temp
, FROM_PREFIX
);
369 temp
= &temp
[prefix_length
];
371 strcpy (temp
, the_user
);
372 temp
= &temp
[user_length
];
374 strcpy (temp
, the_date
);
375 result
= new_list ();
376 result
->string
= the_string
;
377 result
->continuation
= ((line_list
) NULL
);
382 write_line_list (the_list
, the_stream
)
383 register line_list the_list
;
387 the_list
!= ((line_list
) NULL
) ;
388 the_list
= the_list
->continuation
)
390 fputs (the_list
->string
, the_stream
);
391 putc ('\n', the_stream
);
399 register stream_list rem
;
400 for (rem
= the_streams
;
401 rem
!= ((stream_list
) NULL
);
402 rem
= rem
->rest_streams
)
403 no_problems
= (no_problems
&&
404 ((*rem
->action
) (rem
->handle
) == 0));
405 the_streams
= ((stream_list
) NULL
);
406 return (no_problems
? 0 : 1);
410 add_a_stream (the_stream
, closing_action
)
412 int (*closing_action
)();
414 stream_list old
= the_streams
;
415 the_streams
= new_stream ();
416 the_streams
->handle
= the_stream
;
417 the_streams
->action
= closing_action
;
418 the_streams
->rest_streams
= old
;
426 putc ('\n', the_file
);
428 return fclose (the_file
);
435 FILE *the_stream
= fopen (name
, "a");
436 if (the_stream
!= ((FILE *) NULL
))
438 add_a_stream (the_stream
, my_fclose
);
439 if (the_user
== ((char *) NULL
))
440 file_preface
= make_file_preface ();
441 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
);
463 register stream_list rem
;
464 for (rem
= the_streams
;
465 rem
!= ((stream_list
) NULL
);
466 rem
= rem
->rest_streams
)
471 /* Divide STRING into lines. */
476 /* Find the last char that fits. */
477 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
479 if (*breakpos
== '\t')
484 /* If we didn't reach end of line, break the line. */
487 /* Back up to just after the last comma that fits. */
488 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
492 /* If no comma fits, move past the first address anyway. */
493 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
495 /* Include the comma after it. */
499 /* Output that much, then break the line. */
500 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
503 /* Skip whitespace and prepare to print more addresses. */
505 while (*s
== ' ' || *s
== '\t') ++s
;
507 fputs ("\n\t", rem
->handle
);
509 putc ('\n', rem
->handle
);
514 #define mail_error error
516 /* Handle an FCC field. FIELD is the text of the first line (after
517 the header name), and THE_LIST holds the continuation lines if any.
518 Call open_a_file for each file. */
521 setup_files (the_list
, field
)
522 register line_list the_list
;
523 register char *field
;
525 register char *start
;
529 while (((c
= *field
) != '\0')
537 while (((c
= *field
) != '\0')
543 if (!open_a_file (start
))
544 mail_error ("Could not open file %s", start
);
546 if (c
!= '\0') continue;
548 if (the_list
== ((line_list
) NULL
))
550 field
= the_list
->string
;
551 the_list
= the_list
->continuation
;
555 /* Compute the total size of all recipient names stored in THE_HEADER.
556 The result says how big to make the buffer to pass to parse_header. */
559 args_size (the_header
)
562 register header old
= the_header
;
563 register line_list rem
;
564 register int size
= 0;
568 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
569 if ((strcmp (keyword
, "TO") == 0)
570 || (strcmp (keyword
, "CC") == 0)
571 || (strcmp (keyword
, "BCC") == 0))
573 size
+= 1 + strlen (field
);
574 for (rem
= the_header
->text
->continuation
;
576 rem
= rem
->continuation
)
577 size
+= 1 + strlen (rem
->string
);
579 the_header
= the_header
->next
;
580 } while (the_header
!= old
);
584 /* Scan the header described by the lists THE_HEADER,
585 and put all recipient names into the buffer WHERE.
586 Precede each recipient name with a space.
588 Also, if the header has any FCC fields, call setup_files for each one. */
590 parse_header (the_header
, where
)
592 register char *where
;
594 register header old
= the_header
;
598 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
599 if (strcmp (keyword
, "TO") == 0)
600 where
= add_field (the_header
->text
->continuation
, field
, where
);
601 else if (strcmp (keyword
, "CC") == 0)
602 where
= add_field (the_header
->text
->continuation
, field
, where
);
603 else if (strcmp (keyword
, "BCC") == 0)
605 where
= add_field (the_header
->text
->continuation
, field
, where
);
606 the_header
->previous
->next
= the_header
->next
;
607 the_header
->next
->previous
= the_header
->previous
;
609 else if (strcmp (keyword
, "FCC") == 0)
610 setup_files (the_header
->text
->continuation
, field
);
611 the_header
= the_header
->next
;
612 } while (the_header
!= old
);
617 /* Read lines from the input until we get a blank line.
618 Create a list of `header' objects, one for each header field,
619 each of which points to a list of `line_list' objects,
620 one for each line in that field.
621 Continuation lines are grouped in the headers they continue. */
626 register header the_header
= ((header
) NULL
);
627 register line_list
*next_line
= ((line_list
*) NULL
);
629 init_linebuffer (&lb
);
636 readline (&lb
, stdin
);
638 length
= strlen (line
);
639 if (length
== 0) break;
641 if (has_keyword (line
))
643 register header old
= the_header
;
644 the_header
= new_header ();
645 if (old
== ((header
) NULL
))
647 the_header
->next
= the_header
;
648 the_header
->previous
= the_header
;
652 the_header
->previous
= old
;
653 the_header
->next
= old
->next
;
654 old
->next
= the_header
;
656 next_line
= &(the_header
->text
);
659 if (next_line
== ((line_list
*) NULL
))
661 /* Not a valid header */
664 *next_line
= new_list ();
665 (*next_line
)->string
= alloc_string (length
);
666 strcpy (((*next_line
)->string
), line
);
667 next_line
= &((*next_line
)->continuation
);
672 return the_header
->next
;
676 write_header (the_header
)
679 register header old
= the_header
;
682 register line_list the_list
;
683 for (the_list
= the_header
->text
;
685 the_list
= the_list
->continuation
)
686 put_line (the_list
->string
);
687 the_header
= the_header
->next
;
688 } while (the_header
!= old
);
701 char *mail_program_name
;
702 char buf
[BUFLEN
+ 1];
706 extern char *getenv ();
708 mail_program_name
= getenv ("FAKEMAILER");
709 if (!(mail_program_name
&& *mail_program_name
))
710 mail_program_name
= MAIL_PROGRAM_NAME
;
711 name_length
= strlen (mail_program_name
);
714 the_streams
= ((stream_list
) NULL
);
715 the_date
= ((char *) NULL
);
716 the_user
= ((char *) NULL
);
718 the_header
= read_header ();
719 command_line
= alloc_string (name_length
+ args_size (the_header
));
720 strcpy (command_line
, mail_program_name
);
721 parse_header (the_header
, &command_line
[name_length
]);
723 the_pipe
= popen (command_line
, "w");
724 if (the_pipe
== ((FILE *) NULL
))
725 fatal ("cannot open pipe to real mailer");
727 add_a_stream (the_pipe
, pclose
);
729 write_header (the_header
);
731 /* Dump the message itself */
733 while (!feof (stdin
))
735 size
= fread (buf
, 1, BUFLEN
, stdin
);
740 exit (close_the_streams ());
743 #endif /* not MSDOS */
744 #endif /* not BSD 4.2 (or newer) */