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)
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. */
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. */
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. */
51 /* Type definitions */
62 struct line_record
*continuation
;
64 typedef struct line_record
*line_list
;
69 struct header_record
*next
;
70 struct header_record
*previous
;
72 typedef struct header_record
*header
;
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.
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 */
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"
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 ();
129 extern struct passwd
*getpwuid ();
130 extern unsigned short geteuid ();
131 static struct passwd
*my_entry
;
133 (my_entry = getpwuid (((int) geteuid ())), \
139 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
145 printf ("%s: ", my_name
);
151 /* Print error message and exit. */
161 /* Like malloc but get fatal error if memory is exhausted. */
167 char *result
= malloc (((unsigned) size
));
168 if (result
== ((char *) NULL
))
169 fatal ("virtual memory exhausted", 0);
178 char *result
= realloc (ptr
, ((unsigned) size
));
179 if (result
== ((char *) NULL
))
180 fatal ("virtual memory exhausted");
184 /* Initialize a linebuffer for use */
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.
199 readline (linebuffer
, stream
)
200 struct linebuffer
*linebuffer
;
203 char *buffer
= linebuffer
->buffer
;
204 char *p
= linebuffer
->buffer
;
205 char *end
= p
+ linebuffer
->size
;
209 int c
= getc (stream
);
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')
230 get_keyword (field
, rest
)
231 register char *field
;
234 static char keyword
[KEYWORD_SIZE
];
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
);
246 while (isspace (c
)) c
= *field
++;
247 if (c
!= ':') return ((char *) NULL
);
257 return (get_keyword (field
, &ignored
) != ((char *) NULL
));
261 add_field (the_list
, field
, where
)
263 register char *field
, *where
;
269 while ((c
= *field
++) != '\0')
273 while (*field
&& *field
!= ')') ++field
;
274 if (! (*field
++)) break; /* no closer */
275 if (! (*field
)) break; /* closerNULL */
278 *where
++ = ((c
== ','||c
=='>'||c
=='<') ? ' ' : c
);
280 if (the_list
== NIL
) break;
281 field
= the_list
->string
;
282 the_list
= the_list
->continuation
;
290 char *the_string
, *temp
;
291 long idiotic_interface
;
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
+
311 strcpy (temp
, FROM_PREFIX
);
312 temp
= &temp
[prefix_length
];
314 strcpy (temp
, the_user
);
315 temp
= &temp
[user_length
];
317 strcpy (temp
, the_date
);
318 result
= new_list ();
319 result
->string
= the_string
;
320 result
->continuation
= ((line_list
) NULL
);
325 write_line_list (the_list
, the_stream
)
326 register line_list the_list
;
330 the_list
!= ((line_list
) NULL
) ;
331 the_list
= the_list
->continuation
)
333 fputs (the_list
->string
, the_stream
);
334 putc ('\n', the_stream
);
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);
353 add_a_stream (the_stream
, closing_action
)
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
;
369 putc ('\n', the_file
);
371 return fclose (the_file
);
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
);
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
);
406 register stream_list rem
;
407 for (rem
= the_streams
;
408 rem
!= ((stream_list
) NULL
);
409 rem
= rem
->rest_streams
)
414 /* Divide STRING into lines. */
419 /* Find the last char that fits. */
420 for (breakpos
= s
; *breakpos
&& column
< 78; ++breakpos
)
422 if (*breakpos
== '\t')
427 /* Back up to just after the last comma that fits. */
428 while (breakpos
!= s
&& breakpos
[-1] != ',') --breakpos
;
431 /* If no comma fits, move past the first address anyway. */
432 while (*breakpos
!= 0 && *breakpos
!= ',') ++breakpos
;
434 /* Include the comma after it. */
437 /* Output that much, then break the line. */
438 fwrite (s
, 1, breakpos
- s
, rem
->handle
);
441 /* Skip whitespace and prepare to print more addresses. */
443 while (*s
== ' ' || *s
== '\t') ++s
;
445 fputs ("\n\t", rem
->handle
);
447 putc ('\n', rem
->handle
);
452 #define mail_error error
455 setup_files (the_list
, field
)
456 register line_list the_list
;
457 register char *field
;
459 register char *start
;
463 while (((c
= *field
) != '\0') &&
471 while (((c
= *field
) != '\0') &&
477 if (!open_a_file (start
))
478 mail_error ("Could not open file %s", start
);
480 if (c
!= '\0') continue;
482 if (the_list
== ((line_list
) NULL
)) return;
483 field
= the_list
->string
;
484 the_list
= the_list
->continuation
;
489 args_size (the_header
)
492 register header old
= the_header
;
493 register line_list rem
;
494 register int size
= 0;
498 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
499 if ((strcmp (keyword
, "TO") == 0) ||
500 (strcmp (keyword
, "CC") == 0) ||
501 (strcmp (keyword
, "BCC") == 0))
503 size
+= 1 + strlen (field
);
504 for (rem
= the_header
->text
->continuation
;
506 rem
= rem
->continuation
)
507 size
+= 1 + strlen (rem
->string
);
509 the_header
= the_header
->next
;
510 } while (the_header
!= old
);
514 parse_header (the_header
, where
)
516 register char *where
;
518 register header old
= the_header
;
522 register char *keyword
= get_keyword (the_header
->text
->string
, &field
);
523 if (strcmp (keyword
, "TO") == 0)
524 where
= add_field (the_header
->text
->continuation
, field
, where
);
525 else if (strcmp (keyword
, "CC") == 0)
526 where
= add_field (the_header
->text
->continuation
, field
, where
);
527 else if (strcmp (keyword
, "BCC") == 0)
529 where
= add_field (the_header
->text
->continuation
, field
, where
);
530 the_header
->previous
->next
= the_header
->next
;
531 the_header
->next
->previous
= the_header
->previous
;
533 else if (strcmp (keyword
, "FCC") == 0)
534 setup_files (the_header
->text
->continuation
, field
);
535 the_header
= the_header
->next
;
536 } while (the_header
!= old
);
544 register header the_header
= ((header
) NULL
);
545 register line_list
*next_line
= ((line_list
*) NULL
);
547 init_linebuffer (&lb
);
554 readline (&lb
, stdin
);
556 length
= strlen (line
);
557 if (length
== 0) break;
559 if (has_keyword (line
))
561 register header old
= the_header
;
562 the_header
= new_header ();
563 if (old
== ((header
) NULL
))
565 the_header
->next
= the_header
;
566 the_header
->previous
= the_header
;
570 the_header
->previous
= old
;
571 the_header
->next
= old
->next
;
572 old
->next
= the_header
;
574 next_line
= &(the_header
->text
);
577 if (next_line
== ((line_list
*) NULL
))
579 /* Not a valid header */
582 *next_line
= new_list ();
583 (*next_line
)->string
= alloc_string (length
);
584 strcpy (((*next_line
)->string
), line
);
585 next_line
= &((*next_line
)->continuation
);
590 return the_header
->next
;
594 write_header (the_header
)
597 register header old
= the_header
;
600 register line_list the_list
;
601 for (the_list
= the_header
->text
;
603 the_list
= the_list
->continuation
)
604 put_line (the_list
->string
);
605 the_header
= the_header
->next
;
606 } while (the_header
!= old
);
619 char *mail_program_name
;
620 char buf
[BUFLEN
+ 1];
624 extern char *getenv ();
626 mail_program_name
= getenv ("FAKEMAILER");
627 if (!(mail_program_name
&& *mail_program_name
))
628 mail_program_name
= MAIL_PROGRAM_NAME
;
629 name_length
= strlen (mail_program_name
);
632 the_streams
= ((stream_list
) NULL
);
633 the_date
= ((char *) NULL
);
634 the_user
= ((char *) NULL
);
636 the_header
= read_header ();
637 command_line
= alloc_string (name_length
+ args_size (the_header
));
638 strcpy (command_line
, mail_program_name
);
639 parse_header (the_header
, &command_line
[name_length
]);
641 the_pipe
= popen (command_line
, "w");
642 if (the_pipe
== ((FILE *) NULL
))
643 fatal ("cannot open pipe to real mailer");
645 add_a_stream (the_pipe
, pclose
);
647 write_header (the_header
);
649 /* Dump the message itself */
651 while (!feof (stdin
))
653 size
= fread (buf
, 1, BUFLEN
, stdin
);
658 exit (close_the_streams ());
661 #endif /* not BSD 4.2 (or newer) */