XEmacs 21.2.29 "Hestia".
[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 #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   size_t 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 void *
194 xmalloc (size_t size)
195 {
196   void *result = malloc (size);
197   if (result == NULL)
198     fatal ("virtual memory exhausted", (char *) 0);
199   return result;
200 }
201
202 static void *
203 xrealloc (void *ptr, size_t size)
204 {
205   void *result = realloc (ptr, size);
206   if (result == 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 (buffer, linebuffer->size);
238           p = buffer + (p - linebuffer->buffer);
239           end = buffer + linebuffer->size;
240           linebuffer->buffer = buffer;
241         }
242       if (c < 0 || c == '\n')
243         {
244           *p = 0;
245           break;
246         }
247       *p++ = c;
248     }
249
250   return p - buffer;
251 }
252 \f
253 static char *
254 get_keyword (register char *field, char **rest)
255 {
256   static char keyword[KEYWORD_SIZE];
257   register char *ptr;
258   register char c;
259
260   ptr = &keyword[0];
261   c = *field++;
262   if ((isspace ((int) (unsigned char) c)) || (c == ':'))
263     return (char *) NULL;
264   *ptr++ = ((islower ((int) (unsigned char) c)) ?
265             (toupper ((int) (unsigned char) c)) : c);
266   while (((c = *field++) != ':') &&
267          (!(isspace ((int) (unsigned char) c))))
268     *ptr++ = ((islower ((int) (unsigned char) c)) ?
269               (toupper ((int) (unsigned char) c)) : c);
270   *ptr++ = '\0';
271   while (isspace ((int) (unsigned char) c)) c = *field++;
272   if (c != ':') return (char *) NULL;
273   *rest = field;
274   return &keyword[0];
275 }
276
277 static boolean
278 has_keyword (char *field)
279 {
280   char *ignored;
281   return (get_keyword (field, &ignored) != (char *) NULL);
282 }
283
284 static char *
285 add_field (line_list the_list, register char *field, register char *where)
286 {
287   register char c;
288   while (true)
289     {
290       *where++ = ' ';
291       while ((c = *field++) != '\0')
292         {
293           if (c == '(')
294             {
295               while (*field && *field != ')') ++field;
296               if (! (*field++)) break; /* no closer */
297               if (! (*field))   break; /* closerNULL */
298               c = *field;
299             }
300           *where++ = ((c == ','||c=='>'||c=='<') ? ' ' : c);
301         }
302       if (the_list == NIL) break;
303       field = the_list->string;
304       the_list = the_list->continuation;
305     }
306   return where;
307 }
308 \f
309 static line_list
310 make_file_preface (void)
311 {
312   char *the_string, *temp;
313   long idiotic_interface;
314   long prefix_length;
315   long user_length;
316   long date_length;
317   line_list result;
318
319   prefix_length = strlen (FROM_PREFIX);
320   time (&idiotic_interface);
321   the_date = ctime (&idiotic_interface);
322   /* the_date has an unwanted newline at the end */
323   date_length = strlen (the_date) - 1;
324   the_date[date_length] = '\0';
325 #ifdef WINDOWSNT
326   temp = "(null)";
327 #else
328   temp = cuserid ((char *) NULL);
329 #endif
330   user_length = strlen (temp);
331   the_user = alloc_string ((size_t) (user_length + 1));
332   strcpy (the_user, temp);
333   the_string = alloc_string ((size_t) (3 + prefix_length +
334                                        user_length +
335                                        date_length));
336   temp = the_string;
337   strcpy (temp, FROM_PREFIX);
338   temp = &temp[prefix_length];
339   *temp++ = ' ';
340   strcpy (temp, the_user);
341   temp = &temp[user_length];
342   *temp++ = ' ';
343   strcpy (temp, the_date);
344   result = new_list ();
345   result->string = the_string;
346   result->continuation = ((line_list) NULL);
347   return result;
348 }
349
350 static void
351 write_line_list (register line_list the_list, FILE *the_stream)
352 {
353   for ( ;
354       the_list != ((line_list) NULL) ;
355       the_list = the_list->continuation)
356     {
357       fputs (the_list->string, the_stream);
358       putc ('\n', the_stream);
359     }
360   return;
361 }
362 \f
363 static int
364 close_the_streams (void)
365 {
366   register stream_list rem;
367   for (rem = the_streams;
368        rem != ((stream_list) NULL);
369        rem = rem->rest_streams)
370     no_problems = (no_problems &&
371                    ((*rem->action) (rem->handle) == 0));
372   the_streams = ((stream_list) NULL);
373   return (no_problems ? 0 : 1);
374 }
375
376 static void
377 add_a_stream (FILE *the_stream, int (*closing_action)(FILE *))
378 {
379   stream_list old = the_streams;
380   the_streams = new_stream ();
381   the_streams->handle = the_stream;
382   the_streams->action = closing_action;
383   the_streams->rest_streams = old;
384   return;
385 }
386
387 static int
388 my_fclose (FILE *the_file)
389 {
390   putc ('\n', the_file);
391   fflush (the_file);
392   return fclose (the_file);
393 }
394
395 static boolean
396 open_a_file (char *name)
397 {
398   FILE *the_stream = fopen (name, "a");
399   if (the_stream != ((FILE *) NULL))
400     {
401       add_a_stream (the_stream, my_fclose);
402       if (the_user == (char *) NULL)
403         file_preface = make_file_preface ();
404       write_line_list (file_preface, the_stream);
405       return true;
406     }
407   return false;
408 }
409
410 static void
411 put_string (char *s)
412 {
413   register stream_list rem;
414   for (rem = the_streams;
415        rem != ((stream_list) NULL);
416        rem = rem->rest_streams)
417     fputs (s, rem->handle);
418   return;
419 }
420
421 static void
422 put_line (const char *string)
423 {
424   register stream_list rem;
425   for (rem = the_streams;
426        rem != ((stream_list) NULL);
427        rem = rem->rest_streams)
428     {
429       const char *s = string;
430       int column = 0;
431
432       /* Divide STRING into lines.  */
433       while (*s != 0)
434         {
435           const char *breakpos;
436
437           /* Find the last char that fits.  */
438           for (breakpos = s; *breakpos && column < 78; ++breakpos)
439             {
440               if (*breakpos == '\t')
441                 column += 8;
442               else
443                 column++;
444             }
445           /* If we didn't reach end of line, break the line.  */
446           if (*breakpos)
447             {
448               /* Back up to just after the last comma that fits.  */
449               while (breakpos != s && breakpos[-1] != ',') --breakpos;
450
451               if (breakpos == s)
452                 {
453                   /* If no comma fits, move past the first address anyway.  */
454                   while (*breakpos != 0 && *breakpos != ',') ++breakpos;
455                   if (*breakpos != 0)
456                     /* Include the comma after it.  */
457                     ++breakpos;
458                 }
459             }
460           /* Output that much, then break the line.  */
461           fwrite (s, 1, breakpos - s, rem->handle);
462           column = 8;
463
464           /* Skip whitespace and prepare to print more addresses.  */
465           s = breakpos;
466           while (*s == ' ' || *s == '\t') ++s;
467           if (*s != 0)
468             fputs ("\n\t", rem->handle);
469         }
470       putc ('\n', rem->handle);
471     }
472   return;
473 }
474 \f
475 #define mail_error error
476
477 static void
478 setup_files (register line_list the_list, register char *field)
479 {
480   register char *start;
481   register char c;
482   while (true)
483     {
484       while (((c = *field) != '\0') &&
485              ((c == ' ') ||
486               (c == '\t') ||
487               (c == ',')))
488         field += 1;
489       if (c != '\0')
490         {
491           start = field;
492           while (((c = *field) != '\0') &&
493                  (c != ' ') &&
494                  (c != '\t') &&
495                  (c != ','))
496             field += 1;
497           *field = '\0';
498           if (!open_a_file (start))
499             mail_error ("Could not open file %s", start);
500           *field = c;
501           if (c != '\0') continue;
502         }
503       if (the_list == ((line_list) NULL)) return;
504       field = the_list->string;
505       the_list = the_list->continuation;
506     }
507 }
508 \f
509 static int
510 args_size (header the_header)
511 {
512   register header old = the_header;
513   register line_list rem;
514   register int size = 0;
515   do
516     {
517       char *field;
518       register char *keyword = get_keyword (the_header->text->string, &field);
519       if ((strcmp (keyword, "TO") == 0) ||
520           (strcmp (keyword, "CC") == 0) ||
521           (strcmp (keyword, "BCC") == 0))
522         {
523           size += 1 + strlen (field);
524           for (rem = the_header->text->continuation;
525                rem != NIL;
526                rem = rem->continuation)
527             size += 1 + strlen (rem->string);
528         }
529       the_header = the_header->next;
530     } while (the_header != old);
531   return size;
532 }
533
534 static void
535 parse_header (header the_header, register char *where)
536 {
537   register header old = the_header;
538   do
539     {
540       char *field;
541       register char *keyword = get_keyword (the_header->text->string, &field);
542       if (strcmp (keyword, "TO") == 0)
543         where = add_field (the_header->text->continuation, field, where);
544       else if (strcmp (keyword, "CC") == 0)
545         where = add_field (the_header->text->continuation, field, where);
546       else if (strcmp (keyword, "BCC") == 0)
547         {
548           where = add_field (the_header->text->continuation, field, where);
549           the_header->previous->next = the_header->next;
550           the_header->next->previous = the_header->previous;
551         }
552       else if (strcmp (keyword, "FCC") == 0)
553         setup_files (the_header->text->continuation, field);
554       the_header = the_header->next;
555     } while (the_header != old);
556   *where = '\0';
557   return;
558 }
559 \f
560 static header
561 read_header (void)
562 {
563   register header the_header = ((header) NULL);
564   register line_list *next_line = ((line_list *) NULL);
565
566   init_linebuffer (&lb);
567
568   do
569     {
570       long length;
571       register char *line;
572
573       readline (&lb, stdin);
574       line = lb.buffer;
575       length = strlen (line);
576       if (length == 0) break;
577
578       if (has_keyword (line))
579         {
580           register header old = the_header;
581           the_header = new_header ();
582           if (old == ((header) NULL))
583             {
584               the_header->next = the_header;
585               the_header->previous = the_header;
586             }
587           else
588             {
589               the_header->previous = old;
590               the_header->next = old->next;
591               old->next = the_header;
592             }
593           next_line = &(the_header->text);
594         }
595
596       if (next_line == ((line_list *) NULL))
597         {
598           /* Not a valid header */
599           exit (1);
600         }
601       *next_line = new_list ();
602       (*next_line)->string = alloc_string ((size_t) length);
603       strcpy (((*next_line)->string), line);
604       next_line = &((*next_line)->continuation);
605       *next_line = NIL;
606
607     } while (true);
608
609   return the_header->next;
610 }
611 \f
612 static void
613 write_header (header the_header)
614 {
615   register header old = the_header;
616   do
617     {
618       register line_list the_list;
619       for (the_list = the_header->text;
620            the_list != NIL;
621            the_list = the_list->continuation)
622         put_line (the_list->string);
623       the_header = the_header->next;
624     } while (the_header != old);
625   put_line ("");
626   return;
627 }
628 \f
629 int
630 main (int argc, char *argv[])
631 {
632   char *command_line;
633   header the_header;
634   long name_length;
635   char *mail_program_name;
636   char buf[BUFLEN + 1];
637   register int size;
638   FILE *the_pipe;
639
640   mail_program_name = getenv ("FAKEMAILER");
641   if (!(mail_program_name && *mail_program_name))
642     mail_program_name = (char *) MAIL_PROGRAM_NAME;
643   name_length = strlen (mail_program_name);
644
645   my_name = MY_NAME;
646   the_streams = ((stream_list) NULL);
647   the_date = (char *) NULL;
648   the_user = (char *) NULL;
649
650   the_header = read_header ();
651   command_line = alloc_string ((size_t) (name_length +
652                                          args_size (the_header)));
653   strcpy (command_line, mail_program_name);
654   parse_header (the_header, &command_line[name_length]);
655
656   the_pipe = popen (command_line, "w");
657   if (the_pipe == ((FILE *) NULL))
658     fatal ("cannot open pipe to real mailer", (char *) NULL);
659
660   add_a_stream (the_pipe, pclose);
661
662   write_header (the_header);
663
664   /* Dump the message itself */
665
666   while (!feof (stdin))
667     {
668       size = fread (buf, 1, BUFLEN, stdin);
669       buf[size] = '\0';
670       put_string (buf);
671     }
672
673   return close_the_streams ();
674 }
675
676 #endif /* not MSDOS */
677 #endif /* not BSD 4.2 (or newer) */