Mercurial > emacs
annotate lib-src/fakemail.c @ 112382:396b01a20bde
Merge: omit auto-generated aclocal.m4 from repository
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 19 Jan 2011 21:02:52 -0800 |
parents | 56d3e9c28eb0 |
children |
rev | line source |
---|---|
18 | 1 /* sendmail-like interface to /bin/mail for system V, |
75250
6d19c76d81c5
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
72034
diff
changeset
|
2 Copyright (C) 1985, 1994, 1999, 2001, 2002, 2003, 2004, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
18 | 4 |
101079
0370b7985d6d
Comment (add an author based on ack.texi).
Glenn Morris <rgm@gnu.org>
parents:
100958
diff
changeset
|
5 Author: Bill Rozas <jinx@martigny.ai.mit.edu> |
0370b7985d6d
Comment (add an author based on ack.texi).
Glenn Morris <rgm@gnu.org>
parents:
100958
diff
changeset
|
6 (according to ack.texi) |
0370b7985d6d
Comment (add an author based on ack.texi).
Glenn Morris <rgm@gnu.org>
parents:
100958
diff
changeset
|
7 |
18 | 8 This file is part of GNU Emacs. |
9 | |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
10 GNU Emacs is free software: you can redistribute it and/or modify |
37 | 11 it under the terms of the GNU General Public License as published by |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
12 the Free Software Foundation, either version 3 of the License, or |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
13 (at your option) any later version. |
18 | 14 |
37 | 15 GNU Emacs is distributed in the hope that it will be useful, |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 GNU General Public License for more details. | |
19 | |
20 You should have received a copy of the GNU General Public License | |
94828
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
3a4bc081639c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
22 |
18 | 23 |
42134
de525d9743c9
Include "config.h", not <../src/config.h>.
Dave Love <fx@gnu.org>
parents:
34951
diff
changeset
|
24 #define _XOPEN_SOURCE 500 /* for cuserid */ |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
25 |
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
26 #ifdef HAVE_CONFIG_H |
42469 | 27 #include <config.h> |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
28 #endif |
18 | 29 |
96303 | 30 #if defined (BSD_SYSTEM) && !defined (USE_FAKEMAIL) |
18 | 31 /* This program isnot used in BSD, so just avoid loader complaints. */ |
15683 | 32 int |
109744
fdbd24f8d999
Fix warnings produced by compiling with -Wwrite_strings (i.e. use const char *).
Jan D <jan.h.d@swipnet.se>
parents:
109511
diff
changeset
|
33 main (void) |
18 | 34 { |
16121 | 35 return 0; |
18 | 36 } |
37 #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
|
38 #ifdef MSDOS |
15683 | 39 int |
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
40 main () |
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
41 { |
16121 | 42 return 0; |
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
43 } |
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
44 #else /* not MSDOS */ |
18 | 45 /* This conditional contains all the rest of the file. */ |
46 | |
47 /* These are defined in config in some versions. */ | |
48 | |
49 #ifdef static | |
50 #undef static | |
51 #endif | |
52 | |
15099
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
53 #ifdef WINDOWSNT |
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
54 #include "ntlib.h" |
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
55 #endif |
857388330750
[WINDOWSNT]: Include ntlib.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
56 |
18 | 57 #include <stdio.h> |
58 #include <string.h> | |
59 #include <ctype.h> | |
60 #include <time.h> | |
61 #include <pwd.h> | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
62 #include <stdlib.h> |
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
63 |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
64 /* This is to declare cuserid. */ |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
65 #include <unistd.h> |
18 | 66 |
67 /* Type definitions */ | |
68 | |
69 #define boolean int | |
70 #define true 1 | |
71 #define false 0 | |
72 | |
69790
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
73 #define TM_YEAR_BASE 1900 |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
74 |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
75 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
76 asctime to have well-defined behavior. */ |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
77 #ifndef TM_YEAR_IN_ASCTIME_RANGE |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
78 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \ |
69790
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
79 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE) |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
80 #endif |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
81 |
18 | 82 /* Various lists */ |
83 | |
84 struct line_record | |
85 { | |
86 char *string; | |
87 struct line_record *continuation; | |
88 }; | |
89 typedef struct line_record *line_list; | |
90 | |
91 struct header_record | |
92 { | |
93 line_list text; | |
94 struct header_record *next; | |
95 struct header_record *previous; | |
96 }; | |
97 typedef struct header_record *header; | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
98 |
18 | 99 struct stream_record |
100 { | |
101 FILE *handle; | |
109125
12b02558bf51
* lib-src/fakemail.c (action): Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109111
diff
changeset
|
102 int (*action)(FILE *); |
18 | 103 struct stream_record *rest_streams; |
104 }; | |
105 typedef struct stream_record *stream_list; | |
106 | |
107 /* A `struct linebuffer' is a structure which holds a line of text. | |
108 * `readline' reads a line from a stream into a linebuffer | |
109 * and works regardless of the length of the line. | |
110 */ | |
111 | |
112 struct linebuffer | |
113 { | |
114 long size; | |
115 char *buffer; | |
116 }; | |
117 | |
118 struct linebuffer lb; | |
119 | |
120 #define new_list() \ | |
121 ((line_list) xmalloc (sizeof (struct line_record))) | |
122 #define new_header() \ | |
123 ((header) xmalloc (sizeof (struct header_record))) | |
124 #define new_stream() \ | |
125 ((stream_list) xmalloc (sizeof (struct stream_record))) | |
126 #define alloc_string(nchars) \ | |
127 ((char *) xmalloc ((nchars) + 1)) | |
128 | |
129 /* Global declarations */ | |
130 | |
131 #define BUFLEN 1024 | |
132 #define KEYWORD_SIZE 256 | |
133 #define FROM_PREFIX "From" | |
134 #define MY_NAME "fakemail" | |
135 #define NIL ((line_list) NULL) | |
136 #define INITIAL_LINE_SIZE 200 | |
137 | |
91725 | 138 #ifndef MAIL_PROGRAM_NAME |
139 #define MAIL_PROGRAM_NAME "/bin/mail" | |
140 #endif | |
141 | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
142 static const char *my_name; |
18 | 143 static char *the_date; |
144 static char *the_user; | |
145 static line_list file_preface; | |
146 static stream_list the_streams; | |
147 static boolean no_problems = true; | |
148 | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
149 static void fatal (const char *s1) NO_RETURN; |
18 | 150 |
151 #ifdef CURRENT_USER | |
152 static struct passwd *my_entry; | |
153 #define cuserid(s) \ | |
154 (my_entry = getpwuid (((int) geteuid ())), \ | |
155 my_entry->pw_name) | |
156 #endif | |
157 | |
158 /* Utilities */ | |
159 | |
160 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
161 | |
162 static void | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
163 error (const char *s1, const char *s2) |
18 | 164 { |
165 printf ("%s: ", my_name); | |
166 printf (s1, s2); | |
167 printf ("\n"); | |
168 no_problems = false; | |
169 } | |
170 | |
171 /* Print error message and exit. */ | |
172 | |
173 static void | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
174 fatal (const char *s1) |
18 | 175 { |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
176 error ("%s", s1); |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
177 exit (EXIT_FAILURE); |
18 | 178 } |
179 | |
180 /* Like malloc but get fatal error if memory is exhausted. */ | |
181 | |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
182 static long * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
183 xmalloc (int size) |
18 | 184 { |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
185 long *result = (long *) malloc (((unsigned) size)); |
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
186 if (result == ((long *) NULL)) |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
187 fatal ("virtual memory exhausted"); |
18 | 188 return result; |
189 } | |
190 | |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
191 static long * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
192 xrealloc (long int *ptr, int size) |
18 | 193 { |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
194 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
|
195 if (result == ((long *) NULL)) |
18 | 196 fatal ("virtual memory exhausted"); |
197 return result; | |
198 } | |
199 | |
200 /* Initialize a linebuffer for use */ | |
201 | |
202 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
203 init_linebuffer (struct linebuffer *linebuffer) |
18 | 204 { |
205 linebuffer->size = INITIAL_LINE_SIZE; | |
206 linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE)); | |
207 } | |
208 | |
209 /* Read a line of text from `stream' into `linebuffer'. | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
210 Return the length of the line. */ |
18 | 211 |
212 long | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
213 readline (struct linebuffer *linebuffer, FILE *stream) |
18 | 214 { |
215 char *buffer = linebuffer->buffer; | |
216 char *p = linebuffer->buffer; | |
217 char *end = p + linebuffer->size; | |
218 | |
219 while (true) | |
220 { | |
221 int c = getc (stream); | |
222 if (p == end) | |
223 { | |
224 linebuffer->size *= 2; | |
34951
1efc40541908
(readline): Cast buffer to "long *" to pacify
Eli Zaretskii <eliz@gnu.org>
parents:
34609
diff
changeset
|
225 buffer = ((char *) xrealloc ((long *)buffer, linebuffer->size)); |
6992
ed57331fb222
(readline): Fix updating of p when buffer grows.
Richard M. Stallman <rms@gnu.org>
parents:
6954
diff
changeset
|
226 p = buffer + (p - linebuffer->buffer); |
6954
774fdc20d115
(readline): When extending the buffer,
Richard M. Stallman <rms@gnu.org>
parents:
6109
diff
changeset
|
227 end = buffer + linebuffer->size; |
18 | 228 linebuffer->buffer = buffer; |
229 } | |
230 if (c < 0 || c == '\n') | |
231 { | |
232 *p = 0; | |
233 break; | |
234 } | |
235 *p++ = c; | |
236 } | |
237 | |
238 return p - buffer; | |
239 } | |
240 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
241 /* Extract a colon-terminated keyword from the string FIELD. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
242 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
|
243 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
|
244 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
245 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
|
246 |
18 | 247 char * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
248 get_keyword (register char *field, char **rest) |
18 | 249 { |
250 static char keyword[KEYWORD_SIZE]; | |
251 register char *ptr; | |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
252 register int c; |
18 | 253 |
254 ptr = &keyword[0]; | |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
255 c = (unsigned char) *field++; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
256 if (isspace (c) || c == ':') |
18 | 257 return ((char *) NULL); |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
258 *ptr++ = (islower (c) ? toupper (c) : c); |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
259 while (((c = (unsigned char) *field++) != ':') && ! isspace (c)) |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
260 *ptr++ = (islower (c) ? toupper (c) : c); |
18 | 261 *ptr++ = '\0'; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
262 while (isspace (c)) |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
263 c = (unsigned char) *field++; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
264 if (c != ':') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
265 return ((char *) NULL); |
18 | 266 *rest = field; |
267 return &keyword[0]; | |
268 } | |
269 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
270 /* 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
|
271 |
18 | 272 boolean |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
273 has_keyword (char *field) |
18 | 274 { |
275 char *ignored; | |
276 return (get_keyword (field, &ignored) != ((char *) NULL)); | |
277 } | |
278 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
279 /* 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
|
280 into the buffer WHERE. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
281 Concatenate lines, putting just a space between them. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
282 Delete everything contained in parentheses. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
283 When a recipient name contains <...>, we discard |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
284 everything except what is inside the <...>. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
285 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
286 We don't pay attention to overflowing WHERE; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
287 the caller has to make it big enough. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
288 |
18 | 289 char * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
290 add_field (line_list the_list, register char *field, register char *where) |
18 | 291 { |
292 register char c; | |
293 while (true) | |
294 { | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
295 char *this_recipient_where; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
296 int in_quotes = 0; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
297 |
18 | 298 *where++ = ' '; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
299 this_recipient_where = where; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
300 |
18 | 301 while ((c = *field++) != '\0') |
302 { | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
303 if (c == '\\') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
304 *where++ = c; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
305 else if (c == '"') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
306 { |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
307 in_quotes = ! in_quotes; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
308 *where++ = c; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
309 } |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
310 else if (in_quotes) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
311 *where++ = c; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
312 else if (c == '(') |
18 | 313 { |
314 while (*field && *field != ')') ++field; | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
315 if (! (*field++)) break; /* no close */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
316 continue; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
317 } |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
318 else if (c == ',') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
319 { |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
320 *where++ = ' '; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
321 /* When we get to the end of one recipient, |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
322 don't discard it if the next one has <...>. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
323 this_recipient_where = where; |
18 | 324 } |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
325 else if (c == '<') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
326 /* Discard everything we got before the `<'. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
327 where = this_recipient_where; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
328 else if (c == '>') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
329 /* Discard the rest of this name that follows the `>'. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
330 { |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
331 while (*field && *field != ',') ++field; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
332 if (! (*field++)) break; /* no comma */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
333 continue; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
334 } |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
335 else |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
336 *where++ = c; |
18 | 337 } |
338 if (the_list == NIL) break; | |
339 field = the_list->string; | |
340 the_list = the_list->continuation; | |
341 } | |
342 return where; | |
343 } | |
344 | |
345 line_list | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
346 make_file_preface (void) |
18 | 347 { |
348 char *the_string, *temp; | |
349 long idiotic_interface; | |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
350 struct tm *tm; |
18 | 351 long prefix_length; |
352 long user_length; | |
353 long date_length; | |
354 line_list result; | |
355 | |
356 prefix_length = strlen (FROM_PREFIX); | |
357 time (&idiotic_interface); | |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
358 /* Convert to a string, checking for out-of-range time stamps. |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
359 Don't use 'ctime', as that might dump core if the hardware clock |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
360 is set to a bizarre value. */ |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
361 tm = localtime (&idiotic_interface); |
69790
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
362 if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year) |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
363 && (the_date = asctime (tm)))) |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
364 fatal ("current time is out of range"); |
18 | 365 /* the_date has an unwanted newline at the end */ |
366 date_length = strlen (the_date) - 1; | |
367 the_date[date_length] = '\0'; | |
368 temp = cuserid ((char *) NULL); | |
369 user_length = strlen (temp); | |
370 the_user = alloc_string (user_length + 1); | |
371 strcpy (the_user, temp); | |
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
372 the_string = alloc_string (3 + prefix_length |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
373 + user_length |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
374 + date_length); |
18 | 375 temp = the_string; |
376 strcpy (temp, FROM_PREFIX); | |
377 temp = &temp[prefix_length]; | |
378 *temp++ = ' '; | |
379 strcpy (temp, the_user); | |
380 temp = &temp[user_length]; | |
381 *temp++ = ' '; | |
382 strcpy (temp, the_date); | |
383 result = new_list (); | |
384 result->string = the_string; | |
385 result->continuation = ((line_list) NULL); | |
386 return result; | |
387 } | |
388 | |
389 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
390 write_line_list (register line_list the_list, FILE *the_stream) |
18 | 391 { |
392 for ( ; | |
393 the_list != ((line_list) NULL) ; | |
394 the_list = the_list->continuation) | |
395 { | |
396 fputs (the_list->string, the_stream); | |
397 putc ('\n', the_stream); | |
398 } | |
399 return; | |
400 } | |
401 | |
402 int | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
403 close_the_streams (void) |
18 | 404 { |
405 register stream_list rem; | |
406 for (rem = the_streams; | |
407 rem != ((stream_list) NULL); | |
408 rem = rem->rest_streams) | |
409 no_problems = (no_problems && | |
410 ((*rem->action) (rem->handle) == 0)); | |
411 the_streams = ((stream_list) NULL); | |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
412 return (no_problems ? EXIT_SUCCESS : EXIT_FAILURE); |
18 | 413 } |
414 | |
415 void | |
109125
12b02558bf51
* lib-src/fakemail.c (action): Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109111
diff
changeset
|
416 add_a_stream (FILE *the_stream, int (*closing_action) (FILE *)) |
18 | 417 { |
418 stream_list old = the_streams; | |
419 the_streams = new_stream (); | |
420 the_streams->handle = the_stream; | |
421 the_streams->action = closing_action; | |
422 the_streams->rest_streams = old; | |
423 return; | |
424 } | |
425 | |
426 int | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
427 my_fclose (FILE *the_file) |
18 | 428 { |
429 putc ('\n', the_file); | |
430 fflush (the_file); | |
431 return fclose (the_file); | |
432 } | |
433 | |
434 boolean | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
435 open_a_file (char *name) |
18 | 436 { |
437 FILE *the_stream = fopen (name, "a"); | |
438 if (the_stream != ((FILE *) NULL)) | |
439 { | |
440 add_a_stream (the_stream, my_fclose); | |
441 if (the_user == ((char *) NULL)) | |
442 file_preface = make_file_preface (); | |
443 write_line_list (file_preface, the_stream); | |
444 return true; | |
445 } | |
446 return false; | |
447 } | |
448 | |
449 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
450 put_string (char *s) |
18 | 451 { |
452 register stream_list rem; | |
453 for (rem = the_streams; | |
454 rem != ((stream_list) NULL); | |
455 rem = rem->rest_streams) | |
456 fputs (s, rem->handle); | |
457 return; | |
458 } | |
459 | |
460 void | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
461 put_line (const char *string) |
18 | 462 { |
463 register stream_list rem; | |
464 for (rem = the_streams; | |
465 rem != ((stream_list) NULL); | |
466 rem = rem->rest_streams) | |
467 { | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
468 const char *s = string; |
20 | 469 int column = 0; |
470 | |
471 /* Divide STRING into lines. */ | |
472 while (*s != 0) | |
473 { | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
474 const char *breakpos; |
20 | 475 |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
476 /* Find the last char that fits. */ |
20 | 477 for (breakpos = s; *breakpos && column < 78; ++breakpos) |
478 { | |
479 if (*breakpos == '\t') | |
480 column += 8; | |
481 else | |
482 column++; | |
483 } | |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
484 /* 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
|
485 if (*breakpos) |
20 | 486 { |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
487 /* 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
|
488 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
|
489 |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
490 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
|
491 { |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
492 /* 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
|
493 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
|
494 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
|
495 /* 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
|
496 ++breakpos; |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
497 } |
20 | 498 } |
499 /* Output that much, then break the line. */ | |
500 fwrite (s, 1, breakpos - s, rem->handle); | |
501 column = 8; | |
502 | |
503 /* Skip whitespace and prepare to print more addresses. */ | |
504 s = breakpos; | |
505 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
|
506 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
|
507 fputs ("\n\t", rem->handle); |
20 | 508 } |
18 | 509 putc ('\n', rem->handle); |
510 } | |
511 return; | |
512 } | |
513 | |
514 #define mail_error error | |
515 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
516 /* 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
|
517 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
|
518 Call open_a_file for each file. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
519 |
18 | 520 void |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
521 setup_files (register line_list the_list, register char *field) |
18 | 522 { |
523 register char *start; | |
524 register char c; | |
525 while (true) | |
526 { | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
527 while (((c = *field) != '\0') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
528 && (c == ' ' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
529 || c == '\t' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
530 || c == ',')) |
18 | 531 field += 1; |
532 if (c != '\0') | |
533 { | |
534 start = field; | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
535 while (((c = *field) != '\0') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
536 && c != ' ' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
537 && c != '\t' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
538 && c != ',') |
18 | 539 field += 1; |
540 *field = '\0'; | |
541 if (!open_a_file (start)) | |
542 mail_error ("Could not open file %s", start); | |
543 *field = c; | |
544 if (c != '\0') continue; | |
545 } | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
546 if (the_list == ((line_list) NULL)) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
547 return; |
18 | 548 field = the_list->string; |
549 the_list = the_list->continuation; | |
550 } | |
551 } | |
552 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
553 /* 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
|
554 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
|
555 |
18 | 556 int |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
557 args_size (header the_header) |
18 | 558 { |
559 register header old = the_header; | |
560 register line_list rem; | |
561 register int size = 0; | |
562 do | |
563 { | |
564 char *field; | |
565 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
|
566 if ((strcmp (keyword, "TO") == 0) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
567 || (strcmp (keyword, "CC") == 0) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
568 || (strcmp (keyword, "BCC") == 0)) |
18 | 569 { |
570 size += 1 + strlen (field); | |
571 for (rem = the_header->text->continuation; | |
572 rem != NIL; | |
573 rem = rem->continuation) | |
574 size += 1 + strlen (rem->string); | |
575 } | |
576 the_header = the_header->next; | |
577 } while (the_header != old); | |
578 return size; | |
579 } | |
580 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
581 /* Scan the header described by the lists THE_HEADER, |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
582 and put all recipient names into the buffer WHERE. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
583 Precede each recipient name with a space. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
584 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
585 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
|
586 |
21389
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
587 void |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
588 parse_header (header the_header, register char *where) |
18 | 589 { |
590 register header old = the_header; | |
591 do | |
592 { | |
593 char *field; | |
594 register char *keyword = get_keyword (the_header->text->string, &field); | |
595 if (strcmp (keyword, "TO") == 0) | |
596 where = add_field (the_header->text->continuation, field, where); | |
597 else if (strcmp (keyword, "CC") == 0) | |
598 where = add_field (the_header->text->continuation, field, where); | |
599 else if (strcmp (keyword, "BCC") == 0) | |
600 { | |
601 where = add_field (the_header->text->continuation, field, where); | |
602 the_header->previous->next = the_header->next; | |
603 the_header->next->previous = the_header->previous; | |
604 } | |
605 else if (strcmp (keyword, "FCC") == 0) | |
606 setup_files (the_header->text->continuation, field); | |
607 the_header = the_header->next; | |
608 } while (the_header != old); | |
609 *where = '\0'; | |
610 return; | |
611 } | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
612 |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
613 /* 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
|
614 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
|
615 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
|
616 one for each line in that field. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
617 Continuation lines are grouped in the headers they continue. */ |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
618 |
18 | 619 header |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
620 read_header (void) |
18 | 621 { |
622 register header the_header = ((header) NULL); | |
623 register line_list *next_line = ((line_list *) NULL); | |
624 | |
625 init_linebuffer (&lb); | |
626 | |
627 do | |
628 { | |
629 long length; | |
630 register char *line; | |
631 | |
632 readline (&lb, stdin); | |
633 line = lb.buffer; | |
634 length = strlen (line); | |
635 if (length == 0) break; | |
636 | |
637 if (has_keyword (line)) | |
638 { | |
639 register header old = the_header; | |
640 the_header = new_header (); | |
641 if (old == ((header) NULL)) | |
642 { | |
643 the_header->next = the_header; | |
644 the_header->previous = the_header; | |
645 } | |
646 else | |
647 { | |
648 the_header->previous = old; | |
649 the_header->next = old->next; | |
650 old->next = the_header; | |
651 } | |
652 next_line = &(the_header->text); | |
653 } | |
654 | |
655 if (next_line == ((line_list *) NULL)) | |
656 { | |
657 /* Not a valid header */ | |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
658 exit (EXIT_FAILURE); |
18 | 659 } |
660 *next_line = new_list (); | |
661 (*next_line)->string = alloc_string (length); | |
662 strcpy (((*next_line)->string), line); | |
663 next_line = &((*next_line)->continuation); | |
664 *next_line = NIL; | |
665 | |
666 } while (true); | |
667 | |
70278
8e7233f487a3
(read_header): Give fatal error if input has no header.
Richard M. Stallman <rms@gnu.org>
parents:
69790
diff
changeset
|
668 if (! the_header) |
8e7233f487a3
(read_header): Give fatal error if input has no header.
Richard M. Stallman <rms@gnu.org>
parents:
69790
diff
changeset
|
669 fatal ("input message has no header"); |
18 | 670 return the_header->next; |
671 } | |
672 | |
673 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
674 write_header (header the_header) |
18 | 675 { |
676 register header old = the_header; | |
677 do | |
678 { | |
679 register line_list the_list; | |
680 for (the_list = the_header->text; | |
681 the_list != NIL; | |
682 the_list = the_list->continuation) | |
683 put_line (the_list->string); | |
684 the_header = the_header->next; | |
685 } while (the_header != old); | |
686 put_line (""); | |
687 return; | |
688 } | |
689 | |
15683 | 690 int |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
691 main (int argc, char **argv) |
18 | 692 { |
693 char *command_line; | |
694 header the_header; | |
695 long name_length; | |
109747
1f617baf8ae5
Fix -Wwrite-strings warnings in fakemail.c.
Jan D <jan.h.d@swipnet.se>
parents:
109744
diff
changeset
|
696 const char *mail_program_name; |
18 | 697 char buf[BUFLEN + 1]; |
698 register int size; | |
699 FILE *the_pipe; | |
700 | |
701 mail_program_name = getenv ("FAKEMAILER"); | |
702 if (!(mail_program_name && *mail_program_name)) | |
91725 | 703 mail_program_name = MAIL_PROGRAM_NAME; |
18 | 704 name_length = strlen (mail_program_name); |
705 | |
706 my_name = MY_NAME; | |
707 the_streams = ((stream_list) NULL); | |
708 the_date = ((char *) NULL); | |
709 the_user = ((char *) NULL); | |
710 | |
711 the_header = read_header (); | |
712 command_line = alloc_string (name_length + args_size (the_header)); | |
713 strcpy (command_line, mail_program_name); | |
714 parse_header (the_header, &command_line[name_length]); | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
715 |
18 | 716 the_pipe = popen (command_line, "w"); |
717 if (the_pipe == ((FILE *) NULL)) | |
718 fatal ("cannot open pipe to real mailer"); | |
719 | |
720 add_a_stream (the_pipe, pclose); | |
721 | |
722 write_header (the_header); | |
723 | |
724 /* Dump the message itself */ | |
725 | |
726 while (!feof (stdin)) | |
727 { | |
728 size = fread (buf, 1, BUFLEN, stdin); | |
729 buf[size] = '\0'; | |
730 put_string (buf); | |
731 } | |
732 | |
733 exit (close_the_streams ()); | |
734 } | |
735 | |
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
736 #endif /* not MSDOS */ |
18 | 737 #endif /* not BSD 4.2 (or newer) */ |
52401 | 738 |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
739 |
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
740 /* fakemail.c ends here */ |