*** empty log message ***
[emacs.git] / lib-src / fakemail.c
blob464a739e998112bbe0284e6759252a615e9136e6
1 /* sendmail-like interface to /bin/mail for system V,
2 Copyright (C) 1985 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 1, or (at your option)
9 any later version.
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. */
21 #define NO_SHORTNAMES
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. */
26 main ()
29 #else /* not BSD 4.2 (or newer) */
30 /* This conditional contains all the rest of the file. */
32 /* These are defined in config in some versions. */
34 #ifdef static
35 #undef static
36 #endif
38 #ifdef read
39 #undef read
40 #undef write
41 #undef open
42 #undef close
43 #endif
45 #include <stdio.h>
46 #include <string.h>
47 #include <ctype.h>
48 #include <time.h>
49 #include <pwd.h>
51 /* Type definitions */
53 #define boolean int
54 #define true 1
55 #define false 0
57 /* Various lists */
59 struct line_record
61 char *string;
62 struct line_record *continuation;
64 typedef struct line_record *line_list;
66 struct header_record
68 line_list text;
69 struct header_record *next;
70 struct header_record *previous;
72 typedef struct header_record *header;
74 struct stream_record
76 FILE *handle;
77 int (*action)();
78 struct stream_record *rest_streams;
80 typedef struct stream_record *stream_list;
82 /* A `struct linebuffer' is a structure which holds a line of text.
83 * `readline' reads a line from a stream into a linebuffer
84 * and works regardless of the length of the line.
87 struct linebuffer
89 long size;
90 char *buffer;
93 struct linebuffer lb;
95 #define new_list() \
96 ((line_list) xmalloc (sizeof (struct line_record)))
97 #define new_header() \
98 ((header) xmalloc (sizeof (struct header_record)))
99 #define new_stream() \
100 ((stream_list) xmalloc (sizeof (struct stream_record)))
101 #define alloc_string(nchars) \
102 ((char *) xmalloc ((nchars) + 1))
104 /* Global declarations */
106 #define BUFLEN 1024
107 #define KEYWORD_SIZE 256
108 #define FROM_PREFIX "From"
109 #define MY_NAME "fakemail"
110 #define NIL ((line_list) NULL)
111 #define INITIAL_LINE_SIZE 200
113 #ifndef MAIL_PROGRAM_NAME
114 #define MAIL_PROGRAM_NAME "/bin/mail"
115 #endif
117 static char *my_name;
118 static char *the_date;
119 static char *the_user;
120 static line_list file_preface;
121 static stream_list the_streams;
122 static boolean no_problems = true;
124 extern FILE *popen ();
125 extern int fclose (), pclose ();
126 extern char *malloc (), *realloc ();
128 #ifdef CURRENT_USER
129 extern struct passwd *getpwuid ();
130 extern unsigned short geteuid ();
131 static struct passwd *my_entry;
132 #define cuserid(s) \
133 (my_entry = getpwuid (((int) geteuid ())), \
134 my_entry->pw_name)
135 #endif
137 /* Utilities */
139 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
141 static void
142 error (s1, s2)
143 char *s1, *s2;
145 printf ("%s: ", my_name);
146 printf (s1, s2);
147 printf ("\n");
148 no_problems = false;
151 /* Print error message and exit. */
153 static void
154 fatal (s1, s2)
155 char *s1, *s2;
157 error (s1, s2);
158 exit (1);
161 /* Like malloc but get fatal error if memory is exhausted. */
163 static char *
164 xmalloc (size)
165 int size;
167 char *result = malloc (((unsigned) size));
168 if (result == ((char *) NULL))
169 fatal ("virtual memory exhausted", 0);
170 return result;
173 static char *
174 xrealloc (ptr, size)
175 char *ptr;
176 int size;
178 char *result = realloc (ptr, ((unsigned) size));
179 if (result == ((char *) NULL))
180 fatal ("virtual memory exhausted");
181 return result;
184 /* Initialize a linebuffer for use */
186 void
187 init_linebuffer (linebuffer)
188 struct linebuffer *linebuffer;
190 linebuffer->size = INITIAL_LINE_SIZE;
191 linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE));
194 /* Read a line of text from `stream' into `linebuffer'.
195 * Return the length of the line.
198 long
199 readline (linebuffer, stream)
200 struct linebuffer *linebuffer;
201 FILE *stream;
203 char *buffer = linebuffer->buffer;
204 char *p = linebuffer->buffer;
205 char *end = p + linebuffer->size;
207 while (true)
209 int c = getc (stream);
210 if (p == end)
212 linebuffer->size *= 2;
213 buffer = ((char *) xrealloc (buffer, linebuffer->size));
214 p += buffer - linebuffer->buffer;
215 end += buffer - linebuffer->buffer;
216 linebuffer->buffer = buffer;
218 if (c < 0 || c == '\n')
220 *p = 0;
221 break;
223 *p++ = c;
226 return p - buffer;
229 char *
230 get_keyword (field, rest)
231 register char *field;
232 char **rest;
234 static char keyword[KEYWORD_SIZE];
235 register char *ptr;
236 register char c;
238 ptr = &keyword[0];
239 c = *field++;
240 if ((isspace (c)) || (c == ':'))
241 return ((char *) NULL);
242 *ptr++ = ((islower (c)) ? (toupper (c)) : c);
243 while (((c = *field++) != ':') && (!(isspace (c))))
244 *ptr++ = ((islower (c)) ? (toupper (c)) : c);
245 *ptr++ = '\0';
246 while (isspace (c)) c = *field++;
247 if (c != ':') return ((char *) NULL);
248 *rest = field;
249 return &keyword[0];
252 boolean
253 has_keyword (field)
254 char *field;
256 char *ignored;
257 return (get_keyword (field, &ignored) != ((char *) NULL));
260 char *
261 add_field (the_list, field, where)
262 line_list the_list;
263 register char *field, *where;
265 register char c;
266 while (true)
268 *where++ = ' ';
269 while ((c = *field++) != '\0')
271 if (c == '(')
273 while (*field && *field != ')') ++field;
274 if (! (*field++)) break; /* no closer */
275 if (! (*field)) break; /* closerNULL */
276 c = *field;
278 *where++ = ((c == ','||c=='>'||c=='<') ? ' ' : c);
280 if (the_list == NIL) break;
281 field = the_list->string;
282 the_list = the_list->continuation;
284 return where;
287 line_list
288 make_file_preface ()
290 char *the_string, *temp;
291 long idiotic_interface;
292 long prefix_length;
293 long user_length;
294 long date_length;
295 line_list result;
297 prefix_length = strlen (FROM_PREFIX);
298 time (&idiotic_interface);
299 the_date = ctime (&idiotic_interface);
300 /* the_date has an unwanted newline at the end */
301 date_length = strlen (the_date) - 1;
302 the_date[date_length] = '\0';
303 temp = cuserid ((char *) NULL);
304 user_length = strlen (temp);
305 the_user = alloc_string (user_length + 1);
306 strcpy (the_user, temp);
307 the_string = alloc_string (3 + prefix_length +
308 user_length +
309 date_length);
310 temp = the_string;
311 strcpy (temp, FROM_PREFIX);
312 temp = &temp[prefix_length];
313 *temp++ = ' ';
314 strcpy (temp, the_user);
315 temp = &temp[user_length];
316 *temp++ = ' ';
317 strcpy (temp, the_date);
318 result = new_list ();
319 result->string = the_string;
320 result->continuation = ((line_list) NULL);
321 return result;
324 void
325 write_line_list (the_list, the_stream)
326 register line_list the_list;
327 FILE *the_stream;
329 for ( ;
330 the_list != ((line_list) NULL) ;
331 the_list = the_list->continuation)
333 fputs (the_list->string, the_stream);
334 putc ('\n', the_stream);
336 return;
340 close_the_streams ()
342 register stream_list rem;
343 for (rem = the_streams;
344 rem != ((stream_list) NULL);
345 rem = rem->rest_streams)
346 no_problems = (no_problems &&
347 ((*rem->action) (rem->handle) == 0));
348 the_streams = ((stream_list) NULL);
349 return (no_problems ? 0 : 1);
352 void
353 add_a_stream (the_stream, closing_action)
354 FILE *the_stream;
355 int (*closing_action)();
357 stream_list old = the_streams;
358 the_streams = new_stream ();
359 the_streams->handle = the_stream;
360 the_streams->action = closing_action;
361 the_streams->rest_streams = old;
362 return;
366 my_fclose (the_file)
367 FILE *the_file;
369 putc ('\n', the_file);
370 fflush (the_file);
371 return fclose (the_file);
374 boolean
375 open_a_file (name)
376 char *name;
378 FILE *the_stream = fopen (name, "a");
379 if (the_stream != ((FILE *) NULL))
381 add_a_stream (the_stream, my_fclose);
382 if (the_user == ((char *) NULL))
383 file_preface = make_file_preface ();
384 write_line_list (file_preface, the_stream);
385 return true;
387 return false;
390 void
391 put_string (s)
392 char *s;
394 register stream_list rem;
395 for (rem = the_streams;
396 rem != ((stream_list) NULL);
397 rem = rem->rest_streams)
398 fputs (s, rem->handle);
399 return;
402 void
403 put_line (string)
404 char *string;
406 register stream_list rem;
407 for (rem = the_streams;
408 rem != ((stream_list) NULL);
409 rem = rem->rest_streams)
411 char *s = string;
412 int column = 0;
414 /* Divide STRING into lines. */
415 while (*s != 0)
417 char *breakpos;
419 /* Find the last char that fits. */
420 for (breakpos = s; *breakpos && column < 78; ++breakpos)
422 if (*breakpos == '\t')
423 column += 8;
424 else
425 column++;
427 /* Back up to just after the last comma that fits. */
428 while (breakpos != s && breakpos[-1] != ',') --breakpos;
429 if (breakpos == s)
431 /* If no comma fits, move past the first address anyway. */
432 while (*breakpos != 0 && *breakpos != ',') ++breakpos;
433 if (*breakpos != 0)
434 /* Include the comma after it. */
435 ++breakpos;
437 /* Output that much, then break the line. */
438 fwrite (s, 1, breakpos - s, rem->handle);
439 fputs ("\n\t", rem->handle);
440 column = 8;
442 /* Skip whitespace and prepare to print more addresses. */
443 s = breakpos;
444 while (*s == ' ' || *s == '\t') ++s;
446 putc ('\n', rem->handle);
448 return;
451 #define mail_error error
453 void
454 setup_files (the_list, field)
455 register line_list the_list;
456 register char *field;
458 register char *start;
459 register char c;
460 while (true)
462 while (((c = *field) != '\0') &&
463 ((c == ' ') ||
464 (c == '\t') ||
465 (c == ',')))
466 field += 1;
467 if (c != '\0')
469 start = field;
470 while (((c = *field) != '\0') &&
471 (c != ' ') &&
472 (c != '\t') &&
473 (c != ','))
474 field += 1;
475 *field = '\0';
476 if (!open_a_file (start))
477 mail_error ("Could not open file %s", start);
478 *field = c;
479 if (c != '\0') continue;
481 if (the_list == ((line_list) NULL)) return;
482 field = the_list->string;
483 the_list = the_list->continuation;
488 args_size (the_header)
489 header the_header;
491 register header old = the_header;
492 register line_list rem;
493 register int size = 0;
496 char *field;
497 register char *keyword = get_keyword (the_header->text->string, &field);
498 if ((strcmp (keyword, "TO") == 0) ||
499 (strcmp (keyword, "CC") == 0) ||
500 (strcmp (keyword, "BCC") == 0))
502 size += 1 + strlen (field);
503 for (rem = the_header->text->continuation;
504 rem != NIL;
505 rem = rem->continuation)
506 size += 1 + strlen (rem->string);
508 the_header = the_header->next;
509 } while (the_header != old);
510 return size;
513 parse_header (the_header, where)
514 header the_header;
515 register char *where;
517 register header old = the_header;
520 char *field;
521 register char *keyword = get_keyword (the_header->text->string, &field);
522 if (strcmp (keyword, "TO") == 0)
523 where = add_field (the_header->text->continuation, field, where);
524 else if (strcmp (keyword, "CC") == 0)
525 where = add_field (the_header->text->continuation, field, where);
526 else if (strcmp (keyword, "BCC") == 0)
528 where = add_field (the_header->text->continuation, field, where);
529 the_header->previous->next = the_header->next;
530 the_header->next->previous = the_header->previous;
532 else if (strcmp (keyword, "FCC") == 0)
533 setup_files (the_header->text->continuation, field);
534 the_header = the_header->next;
535 } while (the_header != old);
536 *where = '\0';
537 return;
540 header
541 read_header ()
543 register header the_header = ((header) NULL);
544 register line_list *next_line = ((line_list *) NULL);
546 init_linebuffer (&lb);
550 long length;
551 register char *line;
553 readline (&lb, stdin);
554 line = lb.buffer;
555 length = strlen (line);
556 if (length == 0) break;
558 if (has_keyword (line))
560 register header old = the_header;
561 the_header = new_header ();
562 if (old == ((header) NULL))
564 the_header->next = the_header;
565 the_header->previous = the_header;
567 else
569 the_header->previous = old;
570 the_header->next = old->next;
571 old->next = the_header;
573 next_line = &(the_header->text);
576 if (next_line == ((line_list *) NULL))
578 /* Not a valid header */
579 exit (1);
581 *next_line = new_list ();
582 (*next_line)->string = alloc_string (length);
583 strcpy (((*next_line)->string), line);
584 next_line = &((*next_line)->continuation);
585 *next_line = NIL;
587 } while (true);
589 return the_header->next;
592 void
593 write_header (the_header)
594 header the_header;
596 register header old = the_header;
599 register line_list the_list;
600 for (the_list = the_header->text;
601 the_list != NIL;
602 the_list = the_list->continuation)
603 put_line (the_list->string);
604 the_header = the_header->next;
605 } while (the_header != old);
606 put_line ("");
607 return;
610 void
611 main (argc, argv)
612 int argc;
613 char **argv;
615 char *command_line;
616 header the_header;
617 long name_length;
618 char *mail_program_name;
619 char buf[BUFLEN + 1];
620 register int size;
621 FILE *the_pipe;
623 extern char *getenv ();
625 mail_program_name = getenv ("FAKEMAILER");
626 if (!(mail_program_name && *mail_program_name))
627 mail_program_name = MAIL_PROGRAM_NAME;
628 name_length = strlen (mail_program_name);
630 my_name = MY_NAME;
631 the_streams = ((stream_list) NULL);
632 the_date = ((char *) NULL);
633 the_user = ((char *) NULL);
635 the_header = read_header ();
636 command_line = alloc_string (name_length + args_size (the_header));
637 strcpy (command_line, mail_program_name);
638 parse_header (the_header, &command_line[name_length]);
640 the_pipe = popen (command_line, "w");
641 if (the_pipe == ((FILE *) NULL))
642 fatal ("cannot open pipe to real mailer");
644 add_a_stream (the_pipe, pclose);
646 write_header (the_header);
648 /* Dump the message itself */
650 while (!feof (stdin))
652 size = fread (buf, 1, BUFLEN, stdin);
653 buf[size] = '\0';
654 put_string (buf);
657 exit (close_the_streams ());
660 #endif /* not BSD 4.2 (or newer) */