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) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
26 /* This program isnot used in BSD, so just avoid loader complaints. */
31 #else /* not BSD 4.2 (or newer) */
38 /* This conditional contains all the rest of the file. */
40 /* These are defined in config in some versions. */
63 /* Type definitions */
74 struct line_record
*continuation
;
76 typedef struct line_record
*line_list
;
81 struct header_record
*next
;
82 struct header_record
*previous
;
84 typedef struct header_record
*header
;
90 struct stream_record
*rest_streams
;
92 typedef struct stream_record
*stream_list
;
94 /* A `struct linebuffer' is a structure which holds a line of text.
95 * `readline' reads a line from a stream into a linebuffer
96 * and works regardless of the length of the line.
105 struct linebuffer lb
;
108 ((line_list) xmalloc (sizeof (struct line_record)))
109 #define new_header() \
110 ((header) xmalloc (sizeof (struct header_record)))
111 #define new_stream() \
112 ((stream_list) xmalloc (sizeof (struct stream_record)))
113 #define alloc_string(nchars) \
114 ((char *) xmalloc ((nchars) + 1))
116 /* Global declarations */
119 #define KEYWORD_SIZE 256
120 #define FROM_PREFIX "From"
121 #define MY_NAME "fakemail"
122 #define NIL ((line_list) NULL)
123 #define INITIAL_LINE_SIZE 200
125 #ifndef MAIL_PROGRAM_NAME
126 #define MAIL_PROGRAM_NAME "/bin/mail"
129 static char *my_name
;
130 static char *the_date
;
131 static char *the_user
;
132 static line_list file_preface
;
133 static stream_list the_streams
;
134 static boolean no_problems
= true;
136 extern FILE *popen ();
137 extern int fclose (), pclose ();
140 extern struct passwd
*getpwuid ();
141 extern unsigned short geteuid ();
142 static struct passwd
*my_entry
;
144 (my_entry = getpwuid (((int) geteuid ())), \
150 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
156 printf ("%s: ", my_name
);
162 /* Print error message and exit. */
172 /* Like malloc but get fatal error if memory is exhausted. */
178 long *result
= (long *) malloc (((unsigned) size
));
179 if (result
== ((long *) NULL
))
180 fatal ("virtual memory exhausted", 0);
189 long *result
= (long *) realloc (ptr
, ((unsigned) size
));
190 if (result
== ((long *) NULL
))
191 fatal ("virtual memory exhausted");
195 /* Initialize a linebuffer for use */
198 init_linebuffer (linebuffer
)
199 struct linebuffer
*linebuffer
;
201 linebuffer
->size
= INITIAL_LINE_SIZE
;
202 linebuffer
->buffer
= ((char *) xmalloc (INITIAL_LINE_SIZE
));
205 /* Read a line of text from `stream' into `linebuffer'.
206 * Return the length of the line.
210 readline (linebuffer
, stream
)
211 struct linebuffer
*linebuffer
;
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 (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 (field
, rest
)
248 register char *field
;
251 static char keyword
[KEYWORD_SIZE
];
257 if (isspace (c
) || c
== ':')
258 return ((char *) NULL
);
259 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
260 while (((c
= *field
++) != ':') && ! isspace (c
))
261 *ptr
++ = (islower (c
) ? toupper (c
) : c
);
266 return ((char *) NULL
);
271 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */
278 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
281 /* Store the string FIELD, followed by any lines in THE_LIST,
282 into the buffer WHERE.
283 Concatenate lines, putting just a space between them.
284 Delete everything contained in parentheses.
285 When a recipient name contains <...>, we discard
286 everything except what is inside the <...>.
288 We don't pay attention to overflowing WHERE;
289 the caller has to make it big enough. */
292 add_field (the_list
, field
, where
)
294 register char *field
, *where
;
299 char *this_recipient_where
;
303 this_recipient_where
= where
;
305 while ((c
= *field
++) != '\0')
311 in_quotes
= ! in_quotes
;
318 while (*field
&& *field
!= ')') ++field
;
319 if (! (*field
++)) break; /* no close */
325 /* When we get to the end of one recipient,
326 don't discard it if the next one has <...>. */
327 this_recipient_where
= where
;
330 /* Discard everything we got before the `<'. */
331 where
= this_recipient_where
;
333 /* Discard the rest of this name that follows the `>'. */
335 while (*field
&& *field
!= ',') ++field
;
336 if (! (*field
++)) break; /* no comma */
342 if (the_list
== NIL
) break;
343 field
= the_list
->string
;
344 the_list
= the_list
->continuation
;
352 char *the_string
, *temp
;
353 long idiotic_interface
;
359 prefix_length
= strlen (FROM_PREFIX
);
360 time (&idiotic_interface
);
361 the_date
= ctime (&idiotic_interface
);
362 /* the_date has an unwanted newline at the end */
363 date_length
= strlen (the_date
) - 1;
364 the_date
[date_length
] = '\0';
365 temp
= cuserid ((char *) NULL
);
366 user_length
= strlen (temp
);
367 the_user
= alloc_string (user_length
+ 1);
368 strcpy (the_user
, temp
);
369 the_string
= alloc_string (3 + prefix_length
+
373 strcpy (temp
, FROM_PREFIX
);
374 temp
= &temp
[prefix_length
];
376 strcpy (temp
, the_user
);
377 temp
= &temp
[user_length
];
379 strcpy (temp
, the_date
);
380 result
= new_list ();
381 result
->string
= the_string
;
382 result
->continuation
= ((line_list
) NULL
);
387 write_line_list (the_list
, the_stream
)
388 register line_list the_list
;
392 the_list
!= ((line_list
) NULL
) ;
393 the_list
= the_list
->continuation
)
395 fputs (the_list
->string
, the_stream
);
396 putc ('\n', the_stream
);
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
? 0 : 1);
415 add_a_stream (the_stream
, closing_action
)
417 int (*closing_action
)();
419 stream_list old
= the_streams
;
420 the_streams
= new_stream ();
421 the_streams
->handle
= the_stream
;
422 the_streams
->action
= closing_action
;
423 the_streams
->rest_streams
= old
;
431 putc ('\n', the_file
);
433 return fclose (the_file
);
440 FILE *the_stream
= fopen (name
, "a");
441 if (the_stream
!= ((FILE *) NULL
))
443 add_a_stream (the_stream
, my_fclose
);
444 if (the_user
== ((char *) NULL
))
445 file_preface
= make_file_preface ();
446 write_line_list (file_preface
, the_stream
);
456 register stream_list rem
;
457 for (rem
= the_streams
;
458 rem
!= ((stream_list
) NULL
);
459 rem
= rem
->rest_streams
)
460 fputs (s
, rem
->handle
);
468 register stream_list rem
;
469 for (rem
= the_streams
;
470 rem
!= ((stream_list
) NULL
);
471 rem
= rem
->rest_streams
)
476 /* Divide STRING into lines. */
481 /* Find the last char that fits. */
482 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
484 if (*breakpos
== '\t')
489 /* If we didn't reach end of line, break the line. */
492 /* Back up to just after the last comma that fits. */
493 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
497 /* If no comma fits, move past the first address anyway. */
498 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
500 /* Include the comma after it. */
504 /* Output that much, then break the line. */
505 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
508 /* Skip whitespace and prepare to print more addresses. */
510 while (*s
== ' ' || *s
== '\t') ++s
;
512 fputs ("\n\t", rem
->handle
);
514 putc ('\n', rem
->handle
);
519 #define mail_error error
521 /* Handle an FCC field. FIELD is the text of the first line (after
522 the header name), and THE_LIST holds the continuation lines if any.
523 Call open_a_file for each file. */
526 setup_files (the_list
, field
)
527 register line_list the_list
;
528 register char *field
;
530 register char *start
;
534 while (((c
= *field
) != '\0')
542 while (((c
= *field
) != '\0')
548 if (!open_a_file (start
))
549 mail_error ("Could not open file %s", start
);
551 if (c
!= '\0') continue;
553 if (the_list
== ((line_list
) NULL
))
555 field
= the_list
->string
;
556 the_list
= the_list
->continuation
;
560 /* Compute the total size of all recipient names stored in THE_HEADER.
561 The result says how big to make the buffer to pass to parse_header. */
564 args_size (the_header
)
567 register header old
= the_header
;
568 register line_list rem
;
569 register int size
= 0;
573 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
574 if ((strcmp (keyword
, "TO") == 0)
575 || (strcmp (keyword
, "CC") == 0)
576 || (strcmp (keyword
, "BCC") == 0))
578 size
+= 1 + strlen (field
);
579 for (rem
= the_header
->text
->continuation
;
581 rem
= rem
->continuation
)
582 size
+= 1 + strlen (rem
->string
);
584 the_header
= the_header
->next
;
585 } while (the_header
!= old
);
589 /* Scan the header described by the lists THE_HEADER,
590 and put all recipient names into the buffer WHERE.
591 Precede each recipient name with a space.
593 Also, if the header has any FCC fields, call setup_files for each one. */
595 parse_header (the_header
, where
)
597 register char *where
;
599 register header old
= the_header
;
603 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
604 if (strcmp (keyword
, "TO") == 0)
605 where
= add_field (the_header
->text
->continuation
, field
, where
);
606 else if (strcmp (keyword
, "CC") == 0)
607 where
= add_field (the_header
->text
->continuation
, field
, where
);
608 else if (strcmp (keyword
, "BCC") == 0)
610 where
= add_field (the_header
->text
->continuation
, field
, where
);
611 the_header
->previous
->next
= the_header
->next
;
612 the_header
->next
->previous
= the_header
->previous
;
614 else if (strcmp (keyword
, "FCC") == 0)
615 setup_files (the_header
->text
->continuation
, field
);
616 the_header
= the_header
->next
;
617 } while (the_header
!= old
);
622 /* Read lines from the input until we get a blank line.
623 Create a list of `header' objects, one for each header field,
624 each of which points to a list of `line_list' objects,
625 one for each line in that field.
626 Continuation lines are grouped in the headers they continue. */
631 register header the_header
= ((header
) NULL
);
632 register line_list
*next_line
= ((line_list
*) NULL
);
634 init_linebuffer (&lb
);
641 readline (&lb
, stdin
);
643 length
= strlen (line
);
644 if (length
== 0) break;
646 if (has_keyword (line
))
648 register header old
= the_header
;
649 the_header
= new_header ();
650 if (old
== ((header
) NULL
))
652 the_header
->next
= the_header
;
653 the_header
->previous
= the_header
;
657 the_header
->previous
= old
;
658 the_header
->next
= old
->next
;
659 old
->next
= the_header
;
661 next_line
= &(the_header
->text
);
664 if (next_line
== ((line_list
*) NULL
))
666 /* Not a valid header */
669 *next_line
= new_list ();
670 (*next_line
)->string
= alloc_string (length
);
671 strcpy (((*next_line
)->string
), line
);
672 next_line
= &((*next_line
)->continuation
);
677 return the_header
->next
;
681 write_header (the_header
)
684 register header old
= the_header
;
687 register line_list the_list
;
688 for (the_list
= the_header
->text
;
690 the_list
= the_list
->continuation
)
691 put_line (the_list
->string
);
692 the_header
= the_header
->next
;
693 } while (the_header
!= old
);
706 char *mail_program_name
;
707 char buf
[BUFLEN
+ 1];
711 extern char *getenv ();
713 mail_program_name
= getenv ("FAKEMAILER");
714 if (!(mail_program_name
&& *mail_program_name
))
715 mail_program_name
= MAIL_PROGRAM_NAME
;
716 name_length
= strlen (mail_program_name
);
719 the_streams
= ((stream_list
) NULL
);
720 the_date
= ((char *) NULL
);
721 the_user
= ((char *) NULL
);
723 the_header
= read_header ();
724 command_line
= alloc_string (name_length
+ args_size (the_header
));
725 strcpy (command_line
, mail_program_name
);
726 parse_header (the_header
, &command_line
[name_length
]);
728 the_pipe
= popen (command_line
, "w");
729 if (the_pipe
== ((FILE *) NULL
))
730 fatal ("cannot open pipe to real mailer");
732 add_a_stream (the_pipe
, pclose
);
734 write_header (the_header
);
736 /* Dump the message itself */
738 while (!feof (stdin
))
740 size
= fread (buf
, 1, BUFLEN
, stdin
);
745 exit (close_the_streams ());
748 #endif /* not MSDOS */
749 #endif /* not BSD 4.2 (or newer) */