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