0
|
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 isnot used in BSD, so just avoid loader complaints. */
|
215
|
28 int
|
0
|
29 main ()
|
|
30 {
|
215
|
31 return 0;
|
0
|
32 }
|
|
33 #elif defined (LINUX)
|
|
34 #include <stdio.h>
|
|
35 #include <stdlib.h>
|
215
|
36 int
|
0
|
37 main ()
|
|
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");
|
215
|
46 return 1;
|
0
|
47 }
|
|
48 #else /* not BSD 4.2 (or newer) */
|
|
49 #ifdef MSDOS
|
215
|
50 int
|
0
|
51 main ()
|
|
52 {
|
215
|
53 return 0;
|
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
|
|
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)();
|
|
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
|
|
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
|
|
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)
|
|
195 size_t size;
|
|
196 {
|
|
197 char *result = malloc (((unsigned) size));
|
|
198 if (result == ((char *) NULL))
|
|
199 fatal ("virtual memory exhausted", (char *) 0);
|
|
200 return result;
|
|
201 }
|
|
202
|
|
203 static char *
|
|
204 xrealloc (ptr, size)
|
|
205 char *ptr;
|
|
206 size_t size;
|
|
207 {
|
|
208 char *result = realloc (ptr, ((unsigned) size));
|
|
209 if (result == ((char *) NULL))
|
|
210 fatal ("virtual memory exhausted", (char *) 0);
|
|
211 return result;
|
|
212 }
|
|
213
|
|
214 /* Initialize a linebuffer for use */
|
|
215
|
|
216 static void
|
|
217 init_linebuffer (struct linebuffer *linebuffer)
|
|
218 {
|
|
219 linebuffer->size = INITIAL_LINE_SIZE;
|
|
220 linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE));
|
|
221 }
|
|
222
|
|
223 /* Read a line of text from `stream' into `linebuffer'.
|
|
224 * Return the length of the line.
|
|
225 */
|
|
226
|
|
227 static long
|
|
228 readline (struct linebuffer *linebuffer, FILE *stream)
|
|
229 {
|
|
230 char *buffer = linebuffer->buffer;
|
|
231 char *p = linebuffer->buffer;
|
|
232 char *end = p + linebuffer->size;
|
|
233
|
|
234 while (true)
|
|
235 {
|
|
236 int c = getc (stream);
|
|
237 if (p == end)
|
|
238 {
|
|
239 linebuffer->size *= 2;
|
|
240 buffer = ((char *) xrealloc ((char *) buffer,
|
|
241 (size_t) (linebuffer->size)));
|
|
242 p = buffer + (p - linebuffer->buffer);
|
|
243 end = buffer + linebuffer->size;
|
|
244 linebuffer->buffer = buffer;
|
|
245 }
|
|
246 if (c < 0 || c == '\n')
|
|
247 {
|
|
248 *p = 0;
|
|
249 break;
|
|
250 }
|
|
251 *p++ = c;
|
|
252 }
|
|
253
|
|
254 return p - buffer;
|
|
255 }
|
|
256
|
|
257 static char *
|
|
258 get_keyword (register char *field, char **rest)
|
|
259 {
|
|
260 static char keyword[KEYWORD_SIZE];
|
|
261 register char *ptr;
|
|
262 register char c;
|
|
263
|
|
264 ptr = &keyword[0];
|
|
265 c = *field++;
|
|
266 if ((isspace (c)) || (c == ':'))
|
|
267 return ((char *) NULL);
|
|
268 *ptr++ = ((islower (c)) ? (toupper (c)) : c);
|
|
269 while (((c = *field++) != ':') && (!(isspace (c))))
|
|
270 *ptr++ = ((islower (c)) ? (toupper (c)) : c);
|
|
271 *ptr++ = '\0';
|
|
272 while (isspace (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
|
|
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
|
|
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)())
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
215
|
626 int
|
0
|
627 main (argc, argv)
|
|
628 int argc;
|
|
629 char **argv;
|
|
630 {
|
|
631 char *command_line;
|
|
632 header the_header;
|
|
633 long name_length;
|
|
634 char *mail_program_name;
|
|
635 char buf[BUFLEN + 1];
|
|
636 register int size;
|
|
637 FILE *the_pipe;
|
|
638
|
|
639 #if !(__STDC__ || defined(STDC_HEADERS))
|
|
640 extern char *getenv ();
|
|
641 #endif
|
|
642
|
|
643 mail_program_name = getenv ("FAKEMAILER");
|
|
644 if (!(mail_program_name && *mail_program_name))
|
|
645 mail_program_name = (char *) MAIL_PROGRAM_NAME;
|
|
646 name_length = strlen (mail_program_name);
|
|
647
|
|
648 my_name = MY_NAME;
|
|
649 the_streams = ((stream_list) NULL);
|
|
650 the_date = ((char *) NULL);
|
|
651 the_user = ((char *) NULL);
|
|
652
|
|
653 the_header = read_header ();
|
|
654 command_line = alloc_string ((size_t) (name_length +
|
|
655 args_size (the_header)));
|
|
656 strcpy (command_line, mail_program_name);
|
|
657 parse_header (the_header, &command_line[name_length]);
|
|
658
|
|
659 the_pipe = popen (command_line, "w");
|
|
660 if (the_pipe == ((FILE *) NULL))
|
|
661 fatal ("cannot open pipe to real mailer", (char *) 0);
|
|
662
|
|
663 add_a_stream (the_pipe, pclose);
|
|
664
|
|
665 write_header (the_header);
|
|
666
|
|
667 /* Dump the message itself */
|
|
668
|
|
669 while (!feof (stdin))
|
|
670 {
|
|
671 size = fread (buf, 1, BUFLEN, stdin);
|
|
672 buf[size] = '\0';
|
|
673 put_string (buf);
|
|
674 }
|
|
675
|
215
|
676 return close_the_streams ();
|
0
|
677 }
|
|
678
|
|
679 #endif /* not MSDOS */
|
|
680 #endif /* not BSD 4.2 (or newer) */
|