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