1241fef780a6e79b45003e663a340a12d49511b8
[chise/xemacs-chise.git.1] / lib-src / fakemail.c
1 /* sendmail-like interface to /bin/mail for system V,
2    Copyright (C) 1985, 1994 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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)
9 any later version.
10
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.
15
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 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Synched up with: FSF 19.28. */
22
23 #define NO_SHORTNAMES
24 #include <../src/config.h>
25
26 #if defined (BSD) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
27 /* This program is not used in BSD, so just avoid loader complaints.  */
28 int
29 main (int argc, char *argv[])
30 {
31   return 0;
32 }
33 #elif defined (LINUX)
34 #include <stdio.h>
35 #include <stdlib.h>
36 int
37 main (int argc, char *argv[])
38 {
39   /* Linux /bin/mail, if it exists, is NOT the Unix v7 mail that
40      fakemail depends on!  This causes garbled mail.  Better to
41      output an error message. */
42   fprintf (stderr, "Sorry, fakemail does not work on Linux.\n");
43   fprintf (stderr, "Make sure you have the sendmail program, and\n");
44   fprintf (stderr, "set the Lisp variable `sendmail-program' to point\n");
45   fprintf (stderr, "to the path of the sendmail binary.\n");
46   return 1;
47 }
48 #else /* not BSD 4.2 (or newer) */
49 #ifdef MSDOS
50 int
51 main (int argc, char *argv[])
52 {
53   return 0;
54 }
55 #else /* not MSDOS */
56 /* This conditional contains all the rest of the file.  */
57
58 /* These are defined in config in some versions. */
59
60 #ifdef static
61 #undef static
62 #endif
63
64 #ifdef read
65 #undef read
66 #undef write
67 #undef open
68 #undef close
69 #endif
70
71 #include <stdio.h>
72 #if __STDC__ || defined(STDC_HEADERS)
73 #include <stdlib.h>
74 #include <unistd.h>
75 #endif
76 #include <string.h>
77 #include <ctype.h>
78 #include <time.h>
79 #include <pwd.h>
80 \f
81 /* Type definitions */
82
83 #define boolean int
84 #define true 1
85 #define false 0
86
87 /* Various lists */
88
89 struct line_record
90 {
91   char *string;
92   struct line_record *continuation;
93 };
94 typedef struct line_record *line_list;
95
96 struct header_record
97 {
98   line_list text;
99   struct header_record *next;
100   struct header_record *previous;
101 };
102 typedef struct header_record *header;
103
104 struct stream_record
105 {
106   FILE *handle;
107   int (*action)(FILE *);
108   struct stream_record *rest_streams;
109 };
110 typedef struct stream_record *stream_list;
111
112 /* A `struct linebuffer' is a structure which holds a line of text.
113  * `readline' reads a line from a stream into a linebuffer
114  * and works regardless of the length of the line.
115  */
116
117 struct linebuffer
118 {
119   long size;
120   char *buffer;
121 };
122
123 struct linebuffer lb;
124
125 #define new_list()                                      \
126   ((line_list) xmalloc (sizeof (struct line_record)))
127 #define new_header()                            \
128   ((header) xmalloc (sizeof (struct header_record)))
129 #define new_stream()                            \
130   ((stream_list) xmalloc (sizeof (struct stream_record)))
131 #define alloc_string(nchars)                            \
132   ((char *) xmalloc ((nchars) + 1))
133 \f
134 /* Global declarations */
135
136 #define BUFLEN 1024
137 #define KEYWORD_SIZE 256
138 #define FROM_PREFIX "From"
139 #define MY_NAME "fakemail"
140 #define NIL ((line_list) NULL)
141 #define INITIAL_LINE_SIZE 200
142
143 #ifndef MAIL_PROGRAM_NAME
144 #define MAIL_PROGRAM_NAME "/bin/mail"
145 #endif
146
147 static CONST char *my_name;
148 static char *the_date;
149 static char *the_user;
150 static line_list file_preface;
151 static stream_list the_streams;
152 static boolean no_problems = true;
153
154 #if !__STDC__ && !defined(STDC_HEADERS)
155 extern FILE *popen ();
156 extern int fclose (), pclose ();
157 extern char *malloc (), *realloc ();
158 #endif
159
160 #ifdef CURRENT_USER
161 extern struct passwd *getpwuid ();
162 extern unsigned short geteuid ();
163 static struct passwd *my_entry;
164 #define cuserid(s)                              \
165 (my_entry = getpwuid (((int) geteuid ())),      \
166  my_entry->pw_name)
167 #endif
168 \f
169 /* Utilities */
170
171 /* Print error message.  `s1' is printf control string, `s2' is arg for it. */
172
173 static void
174 error (CONST char *s1, CONST char *s2)
175 {
176   printf ("%s: ", my_name);
177   printf (s1, s2);
178   printf ("\n");
179   no_problems = false;
180 }
181
182 /* Print error message and exit.  */
183
184 static void
185 fatal (CONST char *s1, CONST char *s2)
186 {
187   error (s1, s2);
188   exit (1);
189 }
190
191 /* Like malloc but get fatal error if memory is exhausted.  */
192
193 static char *
194 xmalloc (size_t size)
195 {
196   char *result = malloc (((unsigned) size));
197   if (result == ((char *) NULL))
198     fatal ("virtual memory exhausted", (char *) 0);
199   return result;
200 }
201
202 static char *
203 xrealloc (char *ptr, size_t size)
204 {
205   char *result = realloc (ptr, ((unsigned) size));
206   if (result == ((char *) NULL))
207     fatal ("virtual memory exhausted", (char *) 0);
208   return result;
209 }
210 \f
211 /* Initialize a linebuffer for use */
212
213 static void
214 init_linebuffer (struct linebuffer *linebuffer)
215 {
216   linebuffer->size = INITIAL_LINE_SIZE;
217   linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE));
218 }
219
220 /* Read a line of text from `stream' into `linebuffer'.
221  * Return the length of the line.
222  */
223
224 static long
225 readline (struct linebuffer *linebuffer, FILE *stream)
226 {
227   char *buffer = linebuffer->buffer;
228   char *p = linebuffer->buffer;
229   char *end = p + linebuffer->size;
230
231   while (true)
232     {
233       int c = getc (stream);
234       if (p == end)
235         {
236           linebuffer->size *= 2;
237           buffer = ((char *) xrealloc ((char *) buffer,
238                                        (size_t) (linebuffer->size)));
239           p = buffer + (p - linebuffer->buffer);
240           end = buffer + linebuffer->size;
241           linebuffer->buffer = buffer;
242         }
243       if (c < 0 || c == '\n')
244         {
245           *p = 0;
246           break;
247         }
248       *p++ = c;
249     }
250
251   return p - buffer;
252 }
253 \f
254 static char *
255 get_keyword (register char *field, char **rest)
256 {
257   static char keyword[KEYWORD_SIZE];
258   register char *ptr;
259   register char c;
260
261   ptr = &keyword[0];
262   c = *field++;
263   if ((isspace ((int) (unsigned char) c)) || (c == ':'))
264     return (char *) NULL;
265   *ptr++ = ((islower ((int) (unsigned char) c)) ?
266             (toupper ((int) (unsigned char) c)) : c);
267   while (((c = *field++) != ':') &&
268          (!(isspace ((int) (unsigned char) c))))
269     *ptr++ = ((islower ((int) (unsigned char) c)) ?
270               (toupper ((int) (unsigned char) c)) : c);
271   *ptr++ = '\0';
272   while (isspace ((int) (unsigned char) c)) c = *field++;
273   if (c != ':') return (char *) NULL;
274   *rest = field;
275   return &keyword[0];
276 }
277
278 static boolean
279 has_keyword (char *field)
280 {
281   char *ignored;
282   return (get_keyword (field, &ignored) != ((char *) NULL));
283 }
284
285 static char *
286 add_field (line_list the_list, register char *field, register char *where)
287 {
288   register char c;
289   while (true)
290     {
291       *where++ = ' ';
292       while ((c = *field++) != '\0')
293         {
294           if (c == '(')
295             {
296               while (*field && *field != ')') ++field;
297               if (! (*field++)) break; /* no closer */
298               if (! (*field))   break; /* closerNULL */
299               c = *field;
300             }
301           *where++ = ((c == ','||c=='>'||c=='<') ? ' ' : c);
302         }
303       if (the_list == NIL) break;
304       field = the_list->string;
305       the_list = the_list->continuation;
306     }
307   return where;
308 }
309 \f
310 static line_list
311 make_file_preface (void)
312 {
313   char *the_string, *temp;
314   long idiotic_interface;
315   long prefix_length;
316   long user_length;
317   long date_length;
318   line_list result;
319
320   prefix_length = strlen (FROM_PREFIX);
321   time (&idiotic_interface);
322   the_date = ctime (&idiotic_interface);
323   /* the_date has an unwanted newline at the end */
324   date_length = strlen (the_date) - 1;
325   the_date[date_length] = '\0';
326   temp = cuserid ((char *) NULL);
327   user_length = strlen (temp);
328   the_user = alloc_string ((size_t) (user_length + 1));
329   strcpy (the_user, temp);
330   the_string = alloc_string ((size_t) (3 + prefix_length +
331                                        user_length +
332                                        date_length));
333   temp = the_string;
334   strcpy (temp, FROM_PREFIX);
335   temp = &temp[prefix_length];
336   *temp++ = ' ';
337   strcpy (temp, the_user);
338   temp = &temp[user_length];
339   *temp++ = ' ';
340   strcpy (temp, the_date);
341   result = new_list ();
342   result->string = the_string;
343   result->continuation = ((line_list) NULL);
344   return result;
345 }
346
347 static void
348 write_line_list (register line_list the_list, FILE *the_stream)
349 {
350   for ( ;
351       the_list != ((line_list) NULL) ;
352       the_list = the_list->continuation)
353     {
354       fputs (the_list->string, the_stream);
355       putc ('\n', the_stream);
356     }
357   return;
358 }
359 \f
360 static int
361 close_the_streams (void)
362 {
363   register stream_list rem;
364   for (rem = the_streams;
365        rem != ((stream_list) NULL);
366        rem = rem->rest_streams)
367     no_problems = (no_problems &&
368                    ((*rem->action) (rem->handle) == 0));
369   the_streams = ((stream_list) NULL);
370   return (no_problems ? 0 : 1);
371 }
372
373 static void
374 add_a_stream (FILE *the_stream, int (*closing_action)(FILE *))
375 {
376   stream_list old = the_streams;
377   the_streams = new_stream ();
378   the_streams->handle = the_stream;
379   the_streams->action = closing_action;
380   the_streams->rest_streams = old;
381   return;
382 }
383
384 static int
385 my_fclose (FILE *the_file)
386 {
387   putc ('\n', the_file);
388   fflush (the_file);
389   return fclose (the_file);
390 }
391
392 static boolean
393 open_a_file (char *name)
394 {
395   FILE *the_stream = fopen (name, "a");
396   if (the_stream != ((FILE *) NULL))
397     {
398       add_a_stream (the_stream, my_fclose);
399       if (the_user == ((char *) NULL))
400         file_preface = make_file_preface ();
401       write_line_list (file_preface, the_stream);
402       return true;
403     }
404   return false;
405 }
406
407 static void
408 put_string (char *s)
409 {
410   register stream_list rem;
411   for (rem = the_streams;
412        rem != ((stream_list) NULL);
413        rem = rem->rest_streams)
414     fputs (s, rem->handle);
415   return;
416 }
417
418 static void
419 put_line (CONST char *string)
420 {
421   register stream_list rem;
422   for (rem = the_streams;
423        rem != ((stream_list) NULL);
424        rem = rem->rest_streams)
425     {
426       CONST char *s = string;
427       int column = 0;
428
429       /* Divide STRING into lines.  */
430       while (*s != 0)
431         {
432           CONST char *breakpos;
433
434           /* Find the last char that fits.  */
435           for (breakpos = s; *breakpos && column < 78; ++breakpos)
436             {
437               if (*breakpos == '\t')
438                 column += 8;
439               else
440                 column++;
441             }
442           /* If we didn't reach end of line, break the line.  */
443           if (*breakpos)
444             {
445               /* Back up to just after the last comma that fits.  */
446               while (breakpos != s && breakpos[-1] != ',') --breakpos;
447
448               if (breakpos == s)
449                 {
450                   /* If no comma fits, move past the first address anyway.  */
451                   while (*breakpos != 0 && *breakpos != ',') ++breakpos;
452                   if (*breakpos != 0)
453                     /* Include the comma after it.  */
454                     ++breakpos;
455                 }
456             }
457           /* Output that much, then break the line.  */
458           fwrite (s, 1, breakpos - s, rem->handle);
459           column = 8;
460
461           /* Skip whitespace and prepare to print more addresses.  */
462           s = breakpos;
463           while (*s == ' ' || *s == '\t') ++s;
464           if (*s != 0)
465             fputs ("\n\t", rem->handle);
466         }
467       putc ('\n', rem->handle);
468     }
469   return;
470 }
471 \f
472 #define mail_error error
473
474 static void
475 setup_files (register line_list the_list, register char *field)
476 {
477   register char *start;
478   register char c;
479   while (true)
480     {
481       while (((c = *field) != '\0') &&
482              ((c == ' ') ||
483               (c == '\t') ||
484               (c == ',')))
485         field += 1;
486       if (c != '\0')
487         {
488           start = field;
489           while (((c = *field) != '\0') &&
490                  (c != ' ') &&
491                  (c != '\t') &&
492                  (c != ','))
493             field += 1;
494           *field = '\0';
495           if (!open_a_file (start))
496             mail_error ("Could not open file %s", start);
497           *field = c;
498           if (c != '\0') continue;
499         }
500       if (the_list == ((line_list) NULL)) return;
501       field = the_list->string;
502       the_list = the_list->continuation;
503     }
504 }
505 \f
506 static int
507 args_size (header the_header)
508 {
509   register header old = the_header;
510   register line_list rem;
511   register int size = 0;
512   do
513     {
514       char *field;
515       register char *keyword = get_keyword (the_header->text->string, &field);
516       if ((strcmp (keyword, "TO") == 0) ||
517           (strcmp (keyword, "CC") == 0) ||
518           (strcmp (keyword, "BCC") == 0))
519         {
520           size += 1 + strlen (field);
521           for (rem = the_header->text->continuation;
522                rem != NIL;
523                rem = rem->continuation)
524             size += 1 + strlen (rem->string);
525         }
526       the_header = the_header->next;
527     } while (the_header != old);
528   return size;
529 }
530
531 static void
532 parse_header (header the_header, register char *where)
533 {
534   register header old = the_header;
535   do
536     {
537       char *field;
538       register char *keyword = get_keyword (the_header->text->string, &field);
539       if (strcmp (keyword, "TO") == 0)
540         where = add_field (the_header->text->continuation, field, where);
541       else if (strcmp (keyword, "CC") == 0)
542         where = add_field (the_header->text->continuation, field, where);
543       else if (strcmp (keyword, "BCC") == 0)
544         {
545           where = add_field (the_header->text->continuation, field, where);
546           the_header->previous->next = the_header->next;
547           the_header->next->previous = the_header->previous;
548         }
549       else if (strcmp (keyword, "FCC") == 0)
550         setup_files (the_header->text->continuation, field);
551       the_header = the_header->next;
552     } while (the_header != old);
553   *where = '\0';
554   return;
555 }
556 \f
557 static header
558 read_header (void)
559 {
560   register header the_header = ((header) NULL);
561   register line_list *next_line = ((line_list *) NULL);
562
563   init_linebuffer (&lb);
564
565   do
566     {
567       long length;
568       register char *line;
569
570       readline (&lb, stdin);
571       line = lb.buffer;
572       length = strlen (line);
573       if (length == 0) break;
574
575       if (has_keyword (line))
576         {
577           register header old = the_header;
578           the_header = new_header ();
579           if (old == ((header) NULL))
580             {
581               the_header->next = the_header;
582               the_header->previous = the_header;
583             }
584           else
585             {
586               the_header->previous = old;
587               the_header->next = old->next;
588               old->next = the_header;
589             }
590           next_line = &(the_header->text);
591         }
592
593       if (next_line == ((line_list *) NULL))
594         {
595           /* Not a valid header */
596           exit (1);
597         }
598       *next_line = new_list ();
599       (*next_line)->string = alloc_string ((size_t) length);
600       strcpy (((*next_line)->string), line);
601       next_line = &((*next_line)->continuation);
602       *next_line = NIL;
603
604     } while (true);
605
606   return the_header->next;
607 }
608 \f
609 static void
610 write_header (header the_header)
611 {
612   register header old = the_header;
613   do
614     {
615       register line_list the_list;
616       for (the_list = the_header->text;
617            the_list != NIL;
618            the_list = the_list->continuation)
619         put_line (the_list->string);
620       the_header = the_header->next;
621     } while (the_header != old);
622   put_line ("");
623   return;
624 }
625 \f
626 int
627 main (int argc, char *argv[])
628 {
629   char *command_line;
630   header the_header;
631   long name_length;
632   char *mail_program_name;
633   char buf[BUFLEN + 1];
634   register int size;
635   FILE *the_pipe;
636
637 #if !(__STDC__ || defined(STDC_HEADERS))
638   extern char *getenv ();
639 #endif
640
641   mail_program_name = getenv ("FAKEMAILER");
642   if (!(mail_program_name && *mail_program_name))
643     mail_program_name = (char *) MAIL_PROGRAM_NAME;
644   name_length = strlen (mail_program_name);
645
646   my_name = MY_NAME;
647   the_streams = ((stream_list) NULL);
648   the_date = ((char *) NULL);
649   the_user = ((char *) NULL);
650
651   the_header = read_header ();
652   command_line = alloc_string ((size_t) (name_length +
653                                          args_size (the_header)));
654   strcpy (command_line, mail_program_name);
655   parse_header (the_header, &command_line[name_length]);
656
657   the_pipe = popen (command_line, "w");
658   if (the_pipe == ((FILE *) NULL))
659     fatal ("cannot open pipe to real mailer", (char *) 0);
660
661   add_a_stream (the_pipe, pclose);
662
663   write_header (the_header);
664
665   /* Dump the message itself */
666
667   while (!feof (stdin))
668     {
669       size = fread (buf, 1, BUFLEN, stdin);
670       buf[size] = '\0';
671       put_string (buf);
672     }
673
674   return close_the_streams ();
675 }
676
677 #endif /* not MSDOS */
678 #endif /* not BSD 4.2 (or newer) */