Mercurial > emacs
annotate lib-src/fakemail.c @ 25709:ba4e2a641663
(SXHASH_COMBINE): Add missing parentheses.
(Fchar_table_range, Fset_char_table_default, mapcar1,
Fyes_or_no_p, sweep_weak_hash_tables): Remove unused variable(s).
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Tue, 14 Sep 1999 13:09:25 +0000 |
| parents | 7ebe942c4a9c |
| children | 134b57acef68 |
| rev | line source |
|---|---|
| 18 | 1 /* sendmail-like interface to /bin/mail for system V, |
| 7307 | 2 Copyright (C) 1985, 1994 Free Software Foundation, Inc. |
| 18 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 37 | 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 | |
| 6109 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 37 | 9 any later version. |
| 18 | 10 |
| 37 | 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 | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12840
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12840
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
| 18 | 20 |
| 21 | |
|
21389
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
22 /* This is needed to get the declaration of cuserid in GNU libc. */ |
|
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
23 #define _XOPEN_SOURCE 1 |
|
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
24 |
| 18 | 25 #define NO_SHORTNAMES |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3219
diff
changeset
|
26 #include <../src/config.h> |
| 18 | 27 |
|
16218
32f82ca8b41f
Replaced all BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
16121
diff
changeset
|
28 #if defined (BSD_SYSTEM) && !defined (BSD4_1) && !defined (USE_FAKEMAIL) |
| 18 | 29 /* This program isnot used in BSD, so just avoid loader complaints. */ |
| 15683 | 30 int |
| 18 | 31 main () |
| 32 { | |
| 16121 | 33 return 0; |
| 18 | 34 } |
| 35 #else /* not BSD 4.2 (or newer) */ | |
|
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
36 #ifdef MSDOS |
| 15683 | 37 int |
|
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
38 main () |
|
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
39 { |
| 16121 | 40 return 0; |
|
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
41 } |
|
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
42 #else /* not MSDOS */ |
| 18 | 43 /* This conditional contains all the rest of the file. */ |
| 44 | |
| 45 /* These are defined in config in some versions. */ | |
| 46 | |
| 47 #ifdef static | |
| 48 #undef static | |
| 49 #endif | |
| 50 | |
| 51 #ifdef read | |
| 52 #undef read | |
| 53 #undef write | |
| 54 #undef open | |
| 55 #undef close | |
| 56 #endif | |
| 57 | |
|
15099
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
58 #ifdef WINDOWSNT |
|
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
59 #include "ntlib.h" |
|
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
60 #endif |
|
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
61 |
| 18 | 62 #include <stdio.h> |
| 63 #include <string.h> | |
| 64 #include <ctype.h> | |
| 65 #include <time.h> | |
| 66 #include <pwd.h> | |
|
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
67 |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
68 /* This is to declare cuserid. */ |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
69 #ifdef HAVE_UNISTD_H |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
70 #include <unistd.h> |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
71 #endif |
|
25449
7ebe942c4a9c
Include <stdlib.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
21389
diff
changeset
|
72 |
|
7ebe942c4a9c
Include <stdlib.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
21389
diff
changeset
|
73 #ifdef STDC_HEADERS |
|
7ebe942c4a9c
Include <stdlib.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
21389
diff
changeset
|
74 #include <stdlib.h> |
|
7ebe942c4a9c
Include <stdlib.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
21389
diff
changeset
|
75 #endif |
| 18 | 76 |
| 77 /* Type definitions */ | |
| 78 | |
| 79 #define boolean int | |
| 80 #define true 1 | |
| 81 #define false 0 | |
| 82 | |
| 83 /* Various lists */ | |
| 84 | |
| 85 struct line_record | |
| 86 { | |
| 87 char *string; | |
| 88 struct line_record *continuation; | |
| 89 }; | |
| 90 typedef struct line_record *line_list; | |
| 91 | |
| 92 struct header_record | |
| 93 { | |
| 94 line_list text; | |
| 95 struct header_record *next; | |
| 96 struct header_record *previous; | |
| 97 }; | |
| 98 typedef struct header_record *header; | |
| 99 | |
| 100 struct stream_record | |
| 101 { | |
| 102 FILE *handle; | |
| 103 int (*action)(); | |
| 104 struct stream_record *rest_streams; | |
| 105 }; | |
| 106 typedef struct stream_record *stream_list; | |
| 107 | |
| 108 /* A `struct linebuffer' is a structure which holds a line of text. | |
| 109 * `readline' reads a line from a stream into a linebuffer | |
| 110 * and works regardless of the length of the line. | |
| 111 */ | |
| 112 | |
| 113 struct linebuffer | |
| 114 { | |
| 115 long size; | |
| 116 char *buffer; | |
| 117 }; | |
| 118 | |
| 119 struct linebuffer lb; | |
| 120 | |
| 121 #define new_list() \ | |
| 122 ((line_list) xmalloc (sizeof (struct line_record))) | |
| 123 #define new_header() \ | |
| 124 ((header) xmalloc (sizeof (struct header_record))) | |
| 125 #define new_stream() \ | |
| 126 ((stream_list) xmalloc (sizeof (struct stream_record))) | |
| 127 #define alloc_string(nchars) \ | |
| 128 ((char *) xmalloc ((nchars) + 1)) | |
| 129 | |
| 130 /* Global declarations */ | |
| 131 | |
| 132 #define BUFLEN 1024 | |
| 133 #define KEYWORD_SIZE 256 | |
| 134 #define FROM_PREFIX "From" | |
| 135 #define MY_NAME "fakemail" | |
| 136 #define NIL ((line_list) NULL) | |
| 137 #define INITIAL_LINE_SIZE 200 | |
| 138 | |
| 139 #ifndef MAIL_PROGRAM_NAME | |
| 140 #define MAIL_PROGRAM_NAME "/bin/mail" | |
| 141 #endif | |
| 142 | |
| 143 static char *my_name; | |
| 144 static char *the_date; | |
| 145 static char *the_user; | |
| 146 static line_list file_preface; | |
| 147 static stream_list the_streams; | |
| 148 static boolean no_problems = true; | |
| 149 | |
| 150 extern FILE *popen (); | |
| 151 extern int fclose (), pclose (); | |
| 152 | |
| 153 #ifdef CURRENT_USER | |
| 154 extern struct passwd *getpwuid (); | |
| 155 extern unsigned short geteuid (); | |
| 156 static struct passwd *my_entry; | |
| 157 #define cuserid(s) \ | |
| 158 (my_entry = getpwuid (((int) geteuid ())), \ | |
| 159 my_entry->pw_name) | |
| 160 #endif | |
| 161 | |
| 162 /* Utilities */ | |
| 163 | |
| 164 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
| 165 | |
| 166 static void | |
| 167 error (s1, s2) | |
| 168 char *s1, *s2; | |
| 169 { | |
| 170 printf ("%s: ", my_name); | |
| 171 printf (s1, s2); | |
| 172 printf ("\n"); | |
| 173 no_problems = false; | |
| 174 } | |
| 175 | |
| 176 /* Print error message and exit. */ | |
| 177 | |
| 178 static void | |
| 179 fatal (s1, s2) | |
| 180 char *s1, *s2; | |
| 181 { | |
| 182 error (s1, s2); | |
| 183 exit (1); | |
| 184 } | |
| 185 | |
| 186 /* Like malloc but get fatal error if memory is exhausted. */ | |
| 187 | |
|
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
188 static long * |
| 18 | 189 xmalloc (size) |
| 190 int size; | |
| 191 { | |
|
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
192 long *result = (long *) malloc (((unsigned) size)); |
|
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
193 if (result == ((long *) NULL)) |
| 18 | 194 fatal ("virtual memory exhausted", 0); |
| 195 return result; | |
| 196 } | |
| 197 | |
|
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
198 static long * |
| 18 | 199 xrealloc (ptr, size) |
|
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
200 long *ptr; |
| 18 | 201 int size; |
| 202 { | |
|
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
203 long *result = (long *) realloc (ptr, ((unsigned) size)); |
|
12840
4e9a14304b8b
(xrealloc): Change cast to match return type.
Karl Heuer <kwzh@gnu.org>
parents:
12833
diff
changeset
|
204 if (result == ((long *) NULL)) |
| 18 | 205 fatal ("virtual memory exhausted"); |
| 206 return result; | |
| 207 } | |
| 208 | |
| 209 /* Initialize a linebuffer for use */ | |
| 210 | |
| 211 void | |
| 212 init_linebuffer (linebuffer) | |
| 213 struct linebuffer *linebuffer; | |
| 214 { | |
| 215 linebuffer->size = INITIAL_LINE_SIZE; | |
| 216 linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE)); | |
| 217 } | |
| 218 | |
| 219 /* Read a line of text from `stream' into `linebuffer'. | |
| 220 * Return the length of the line. | |
| 221 */ | |
| 222 | |
| 223 long | |
| 224 readline (linebuffer, stream) | |
| 225 struct linebuffer *linebuffer; | |
| 226 FILE *stream; | |
| 227 { | |
| 228 char *buffer = linebuffer->buffer; | |
| 229 char *p = linebuffer->buffer; | |
| 230 char *end = p + linebuffer->size; | |
| 231 | |
| 232 while (true) | |
| 233 { | |
| 234 int c = getc (stream); | |
| 235 if (p == end) | |
| 236 { | |
| 237 linebuffer->size *= 2; | |
| 238 buffer = ((char *) xrealloc (buffer, linebuffer->size)); | |
|
6992
ed57331fb222
(readline): Fix updating of p when buffer grows.
Richard M. Stallman <rms@gnu.org>
parents:
6954
diff
changeset
|
239 p = buffer + (p - linebuffer->buffer); |
|
6954
774fdc20d115
(readline): When extending the buffer,
Richard M. Stallman <rms@gnu.org>
parents:
6109
diff
changeset
|
240 end = buffer + linebuffer->size; |
| 18 | 241 linebuffer->buffer = buffer; |
| 242 } | |
| 243 if (c < 0 || c == '\n') | |
| 244 { | |
| 245 *p = 0; | |
| 246 break; | |
| 247 } | |
| 248 *p++ = c; | |
| 249 } | |
| 250 | |
| 251 return p - buffer; | |
| 252 } | |
| 253 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
254 /* Extract a colon-terminated keyword from the string FIELD. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
255 Return that keyword as a string stored in a static buffer. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
256 Store the address of the rest of the string into *REST. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
257 |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
258 If there is no keyword, return NULL and don't alter *REST. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
259 |
| 18 | 260 char * |
| 261 get_keyword (field, rest) | |
| 262 register char *field; | |
| 263 char **rest; | |
| 264 { | |
| 265 static char keyword[KEYWORD_SIZE]; | |
| 266 register char *ptr; | |
| 267 register char c; | |
| 268 | |
| 269 ptr = &keyword[0]; | |
| 270 c = *field++; | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
271 if (isspace (c) || c == ':') |
| 18 | 272 return ((char *) NULL); |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
273 *ptr++ = (islower (c) ? toupper (c) : c); |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
274 while (((c = *field++) != ':') && ! isspace (c)) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
275 *ptr++ = (islower (c) ? toupper (c) : c); |
| 18 | 276 *ptr++ = '\0'; |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
277 while (isspace (c)) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
278 c = *field++; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
279 if (c != ':') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
280 return ((char *) NULL); |
| 18 | 281 *rest = field; |
| 282 return &keyword[0]; | |
| 283 } | |
| 284 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
285 /* Nonzero if the string FIELD starts with a colon-terminated keyword. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
286 |
| 18 | 287 boolean |
| 288 has_keyword (field) | |
| 289 char *field; | |
| 290 { | |
| 291 char *ignored; | |
| 292 return (get_keyword (field, &ignored) != ((char *) NULL)); | |
| 293 } | |
| 294 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
295 /* Store the string FIELD, followed by any lines in THE_LIST, |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
296 into the buffer WHERE. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
297 Concatenate lines, putting just a space between them. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
298 Delete everything contained in parentheses. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
299 When a recipient name contains <...>, we discard |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
300 everything except what is inside the <...>. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
301 |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
302 We don't pay attention to overflowing WHERE; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
303 the caller has to make it big enough. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
304 |
| 18 | 305 char * |
| 306 add_field (the_list, field, where) | |
| 307 line_list the_list; | |
| 308 register char *field, *where; | |
| 309 { | |
| 310 register char c; | |
| 311 while (true) | |
| 312 { | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
313 char *this_recipient_where; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
314 int in_quotes = 0; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
315 |
| 18 | 316 *where++ = ' '; |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
317 this_recipient_where = where; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
318 |
| 18 | 319 while ((c = *field++) != '\0') |
| 320 { | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
321 if (c == '\\') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
322 *where++ = c; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
323 else if (c == '"') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
324 { |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
325 in_quotes = ! in_quotes; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
326 *where++ = c; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
327 } |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
328 else if (in_quotes) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
329 *where++ = c; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
330 else if (c == '(') |
| 18 | 331 { |
| 332 while (*field && *field != ')') ++field; | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
333 if (! (*field++)) break; /* no close */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
334 continue; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
335 } |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
336 else if (c == ',') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
337 { |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
338 *where++ = ' '; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
339 /* When we get to the end of one recipient, |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
340 don't discard it if the next one has <...>. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
341 this_recipient_where = where; |
| 18 | 342 } |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
343 else if (c == '<') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
344 /* Discard everything we got before the `<'. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
345 where = this_recipient_where; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
346 else if (c == '>') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
347 /* Discard the rest of this name that follows the `>'. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
348 { |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
349 while (*field && *field != ',') ++field; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
350 if (! (*field++)) break; /* no comma */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
351 continue; |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
352 } |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
353 else |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
354 *where++ = c; |
| 18 | 355 } |
| 356 if (the_list == NIL) break; | |
| 357 field = the_list->string; | |
| 358 the_list = the_list->continuation; | |
| 359 } | |
| 360 return where; | |
| 361 } | |
| 362 | |
| 363 line_list | |
| 364 make_file_preface () | |
| 365 { | |
| 366 char *the_string, *temp; | |
| 367 long idiotic_interface; | |
| 368 long prefix_length; | |
| 369 long user_length; | |
| 370 long date_length; | |
| 371 line_list result; | |
| 372 | |
| 373 prefix_length = strlen (FROM_PREFIX); | |
| 374 time (&idiotic_interface); | |
| 375 the_date = ctime (&idiotic_interface); | |
| 376 /* the_date has an unwanted newline at the end */ | |
| 377 date_length = strlen (the_date) - 1; | |
| 378 the_date[date_length] = '\0'; | |
| 379 temp = cuserid ((char *) NULL); | |
| 380 user_length = strlen (temp); | |
| 381 the_user = alloc_string (user_length + 1); | |
| 382 strcpy (the_user, temp); | |
|
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
383 the_string = alloc_string (3 + prefix_length |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
384 + user_length |
|
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
385 + date_length); |
| 18 | 386 temp = the_string; |
| 387 strcpy (temp, FROM_PREFIX); | |
| 388 temp = &temp[prefix_length]; | |
| 389 *temp++ = ' '; | |
| 390 strcpy (temp, the_user); | |
| 391 temp = &temp[user_length]; | |
| 392 *temp++ = ' '; | |
| 393 strcpy (temp, the_date); | |
| 394 result = new_list (); | |
| 395 result->string = the_string; | |
| 396 result->continuation = ((line_list) NULL); | |
| 397 return result; | |
| 398 } | |
| 399 | |
| 400 void | |
| 401 write_line_list (the_list, the_stream) | |
| 402 register line_list the_list; | |
| 403 FILE *the_stream; | |
| 404 { | |
| 405 for ( ; | |
| 406 the_list != ((line_list) NULL) ; | |
| 407 the_list = the_list->continuation) | |
| 408 { | |
| 409 fputs (the_list->string, the_stream); | |
| 410 putc ('\n', the_stream); | |
| 411 } | |
| 412 return; | |
| 413 } | |
| 414 | |
| 415 int | |
| 416 close_the_streams () | |
| 417 { | |
| 418 register stream_list rem; | |
| 419 for (rem = the_streams; | |
| 420 rem != ((stream_list) NULL); | |
| 421 rem = rem->rest_streams) | |
| 422 no_problems = (no_problems && | |
| 423 ((*rem->action) (rem->handle) == 0)); | |
| 424 the_streams = ((stream_list) NULL); | |
| 425 return (no_problems ? 0 : 1); | |
| 426 } | |
| 427 | |
| 428 void | |
| 429 add_a_stream (the_stream, closing_action) | |
| 430 FILE *the_stream; | |
| 431 int (*closing_action)(); | |
| 432 { | |
| 433 stream_list old = the_streams; | |
| 434 the_streams = new_stream (); | |
| 435 the_streams->handle = the_stream; | |
| 436 the_streams->action = closing_action; | |
| 437 the_streams->rest_streams = old; | |
| 438 return; | |
| 439 } | |
| 440 | |
| 441 int | |
| 442 my_fclose (the_file) | |
| 443 FILE *the_file; | |
| 444 { | |
| 445 putc ('\n', the_file); | |
| 446 fflush (the_file); | |
| 447 return fclose (the_file); | |
| 448 } | |
| 449 | |
| 450 boolean | |
| 451 open_a_file (name) | |
| 452 char *name; | |
| 453 { | |
| 454 FILE *the_stream = fopen (name, "a"); | |
| 455 if (the_stream != ((FILE *) NULL)) | |
| 456 { | |
| 457 add_a_stream (the_stream, my_fclose); | |
| 458 if (the_user == ((char *) NULL)) | |
| 459 file_preface = make_file_preface (); | |
| 460 write_line_list (file_preface, the_stream); | |
| 461 return true; | |
| 462 } | |
| 463 return false; | |
| 464 } | |
| 465 | |
| 466 void | |
| 467 put_string (s) | |
| 468 char *s; | |
| 469 { | |
| 470 register stream_list rem; | |
| 471 for (rem = the_streams; | |
| 472 rem != ((stream_list) NULL); | |
| 473 rem = rem->rest_streams) | |
| 474 fputs (s, rem->handle); | |
| 475 return; | |
| 476 } | |
| 477 | |
| 478 void | |
| 20 | 479 put_line (string) |
| 480 char *string; | |
| 18 | 481 { |
| 482 register stream_list rem; | |
| 483 for (rem = the_streams; | |
| 484 rem != ((stream_list) NULL); | |
| 485 rem = rem->rest_streams) | |
| 486 { | |
| 20 | 487 char *s = string; |
| 488 int column = 0; | |
| 489 | |
| 490 /* Divide STRING into lines. */ | |
| 491 while (*s != 0) | |
| 492 { | |
| 493 char *breakpos; | |
| 494 | |
|
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
495 /* Find the last char that fits. */ |
| 20 | 496 for (breakpos = s; *breakpos && column < 78; ++breakpos) |
| 497 { | |
| 498 if (*breakpos == '\t') | |
| 499 column += 8; | |
| 500 else | |
| 501 column++; | |
| 502 } | |
|
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
503 /* If we didn't reach end of line, break the line. */ |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
504 if (*breakpos) |
| 20 | 505 { |
|
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
506 /* Back up to just after the last comma that fits. */ |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
507 while (breakpos != s && breakpos[-1] != ',') --breakpos; |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
508 |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
509 if (breakpos == s) |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
510 { |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
511 /* If no comma fits, move past the first address anyway. */ |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
512 while (*breakpos != 0 && *breakpos != ',') ++breakpos; |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
513 if (*breakpos != 0) |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
514 /* Include the comma after it. */ |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
515 ++breakpos; |
|
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
516 } |
| 20 | 517 } |
| 518 /* Output that much, then break the line. */ | |
| 519 fwrite (s, 1, breakpos - s, rem->handle); | |
| 520 column = 8; | |
| 521 | |
| 522 /* Skip whitespace and prepare to print more addresses. */ | |
| 523 s = breakpos; | |
| 524 while (*s == ' ' || *s == '\t') ++s; | |
|
3219
1aa8fa0a569e
(put_line): Don't output \n\t unless more text follows.
Richard M. Stallman <rms@gnu.org>
parents:
37
diff
changeset
|
525 if (*s != 0) |
|
1aa8fa0a569e
(put_line): Don't output \n\t unless more text follows.
Richard M. Stallman <rms@gnu.org>
parents:
37
diff
changeset
|
526 fputs ("\n\t", rem->handle); |
| 20 | 527 } |
| 18 | 528 putc ('\n', rem->handle); |
| 529 } | |
| 530 return; | |
| 531 } | |
| 532 | |
| 533 #define mail_error error | |
| 534 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
535 /* Handle an FCC field. FIELD is the text of the first line (after |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
536 the header name), and THE_LIST holds the continuation lines if any. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
537 Call open_a_file for each file. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
538 |
| 18 | 539 void |
| 540 setup_files (the_list, field) | |
| 541 register line_list the_list; | |
| 542 register char *field; | |
| 543 { | |
| 544 register char *start; | |
| 545 register char c; | |
| 546 while (true) | |
| 547 { | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
548 while (((c = *field) != '\0') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
549 && (c == ' ' |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
550 || c == '\t' |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
551 || c == ',')) |
| 18 | 552 field += 1; |
| 553 if (c != '\0') | |
| 554 { | |
| 555 start = field; | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
556 while (((c = *field) != '\0') |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
557 && c != ' ' |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
558 && c != '\t' |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
559 && c != ',') |
| 18 | 560 field += 1; |
| 561 *field = '\0'; | |
| 562 if (!open_a_file (start)) | |
| 563 mail_error ("Could not open file %s", start); | |
| 564 *field = c; | |
| 565 if (c != '\0') continue; | |
| 566 } | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
567 if (the_list == ((line_list) NULL)) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
568 return; |
| 18 | 569 field = the_list->string; |
| 570 the_list = the_list->continuation; | |
| 571 } | |
| 572 } | |
| 573 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
574 /* Compute the total size of all recipient names stored in THE_HEADER. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
575 The result says how big to make the buffer to pass to parse_header. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
576 |
| 18 | 577 int |
| 578 args_size (the_header) | |
| 579 header the_header; | |
| 580 { | |
| 581 register header old = the_header; | |
| 582 register line_list rem; | |
| 583 register int size = 0; | |
| 584 do | |
| 585 { | |
| 586 char *field; | |
| 587 register char *keyword = get_keyword (the_header->text->string, &field); | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
588 if ((strcmp (keyword, "TO") == 0) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
589 || (strcmp (keyword, "CC") == 0) |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
590 || (strcmp (keyword, "BCC") == 0)) |
| 18 | 591 { |
| 592 size += 1 + strlen (field); | |
| 593 for (rem = the_header->text->continuation; | |
| 594 rem != NIL; | |
| 595 rem = rem->continuation) | |
| 596 size += 1 + strlen (rem->string); | |
| 597 } | |
| 598 the_header = the_header->next; | |
| 599 } while (the_header != old); | |
| 600 return size; | |
| 601 } | |
| 602 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
603 /* Scan the header described by the lists THE_HEADER, |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
604 and put all recipient names into the buffer WHERE. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
605 Precede each recipient name with a space. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
606 |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
607 Also, if the header has any FCC fields, call setup_files for each one. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
608 |
|
21389
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
609 void |
| 18 | 610 parse_header (the_header, where) |
| 611 header the_header; | |
| 612 register char *where; | |
| 613 { | |
| 614 register header old = the_header; | |
| 615 do | |
| 616 { | |
| 617 char *field; | |
| 618 register char *keyword = get_keyword (the_header->text->string, &field); | |
| 619 if (strcmp (keyword, "TO") == 0) | |
| 620 where = add_field (the_header->text->continuation, field, where); | |
| 621 else if (strcmp (keyword, "CC") == 0) | |
| 622 where = add_field (the_header->text->continuation, field, where); | |
| 623 else if (strcmp (keyword, "BCC") == 0) | |
| 624 { | |
| 625 where = add_field (the_header->text->continuation, field, where); | |
| 626 the_header->previous->next = the_header->next; | |
| 627 the_header->next->previous = the_header->previous; | |
| 628 } | |
| 629 else if (strcmp (keyword, "FCC") == 0) | |
| 630 setup_files (the_header->text->continuation, field); | |
| 631 the_header = the_header->next; | |
| 632 } while (the_header != old); | |
| 633 *where = '\0'; | |
| 634 return; | |
| 635 } | |
| 636 | |
|
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
637 /* Read lines from the input until we get a blank line. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
638 Create a list of `header' objects, one for each header field, |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
639 each of which points to a list of `line_list' objects, |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
640 one for each line in that field. |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
641 Continuation lines are grouped in the headers they continue. */ |
|
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
642 |
| 18 | 643 header |
| 644 read_header () | |
| 645 { | |
| 646 register header the_header = ((header) NULL); | |
| 647 register line_list *next_line = ((line_list *) NULL); | |
| 648 | |
| 649 init_linebuffer (&lb); | |
| 650 | |
| 651 do | |
| 652 { | |
| 653 long length; | |
| 654 register char *line; | |
| 655 | |
| 656 readline (&lb, stdin); | |
| 657 line = lb.buffer; | |
| 658 length = strlen (line); | |
| 659 if (length == 0) break; | |
| 660 | |
| 661 if (has_keyword (line)) | |
| 662 { | |
| 663 register header old = the_header; | |
| 664 the_header = new_header (); | |
| 665 if (old == ((header) NULL)) | |
| 666 { | |
| 667 the_header->next = the_header; | |
| 668 the_header->previous = the_header; | |
| 669 } | |
| 670 else | |
| 671 { | |
| 672 the_header->previous = old; | |
| 673 the_header->next = old->next; | |
| 674 old->next = the_header; | |
| 675 } | |
| 676 next_line = &(the_header->text); | |
| 677 } | |
| 678 | |
| 679 if (next_line == ((line_list *) NULL)) | |
| 680 { | |
| 681 /* Not a valid header */ | |
| 682 exit (1); | |
| 683 } | |
| 684 *next_line = new_list (); | |
| 685 (*next_line)->string = alloc_string (length); | |
| 686 strcpy (((*next_line)->string), line); | |
| 687 next_line = &((*next_line)->continuation); | |
| 688 *next_line = NIL; | |
| 689 | |
| 690 } while (true); | |
| 691 | |
| 692 return the_header->next; | |
| 693 } | |
| 694 | |
| 695 void | |
| 696 write_header (the_header) | |
| 697 header the_header; | |
| 698 { | |
| 699 register header old = the_header; | |
| 700 do | |
| 701 { | |
| 702 register line_list the_list; | |
| 703 for (the_list = the_header->text; | |
| 704 the_list != NIL; | |
| 705 the_list = the_list->continuation) | |
| 706 put_line (the_list->string); | |
| 707 the_header = the_header->next; | |
| 708 } while (the_header != old); | |
| 709 put_line (""); | |
| 710 return; | |
| 711 } | |
| 712 | |
| 15683 | 713 int |
| 18 | 714 main (argc, argv) |
| 715 int argc; | |
| 716 char **argv; | |
| 717 { | |
| 718 char *command_line; | |
| 719 header the_header; | |
| 720 long name_length; | |
| 721 char *mail_program_name; | |
| 722 char buf[BUFLEN + 1]; | |
| 723 register int size; | |
| 724 FILE *the_pipe; | |
| 725 | |
| 726 extern char *getenv (); | |
| 727 | |
| 728 mail_program_name = getenv ("FAKEMAILER"); | |
| 729 if (!(mail_program_name && *mail_program_name)) | |
| 730 mail_program_name = MAIL_PROGRAM_NAME; | |
| 731 name_length = strlen (mail_program_name); | |
| 732 | |
| 733 my_name = MY_NAME; | |
| 734 the_streams = ((stream_list) NULL); | |
| 735 the_date = ((char *) NULL); | |
| 736 the_user = ((char *) NULL); | |
| 737 | |
| 738 the_header = read_header (); | |
| 739 command_line = alloc_string (name_length + args_size (the_header)); | |
| 740 strcpy (command_line, mail_program_name); | |
| 741 parse_header (the_header, &command_line[name_length]); | |
| 742 | |
| 743 the_pipe = popen (command_line, "w"); | |
| 744 if (the_pipe == ((FILE *) NULL)) | |
| 745 fatal ("cannot open pipe to real mailer"); | |
| 746 | |
| 747 add_a_stream (the_pipe, pclose); | |
| 748 | |
| 749 write_header (the_header); | |
| 750 | |
| 751 /* Dump the message itself */ | |
| 752 | |
| 753 while (!feof (stdin)) | |
| 754 { | |
| 755 size = fread (buf, 1, BUFLEN, stdin); | |
| 756 buf[size] = '\0'; | |
| 757 put_string (buf); | |
| 758 } | |
| 759 | |
| 760 exit (close_the_streams ()); | |
| 761 } | |
| 762 | |
|
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
763 #endif /* not MSDOS */ |
| 18 | 764 #endif /* not BSD 4.2 (or newer) */ |
