Mercurial > emacs
annotate lib-src/fakemail.c @ 109684:dbc0119ac80e
Make some doc strings bidi-friendly.
cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
editfns.c (Fline_beginning_position, Fline_end_position): State
in the doc strings that start and end of line are in the logical order.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sun, 08 Aug 2010 19:43:26 +0300 |
parents | 09a43f890565 |
children | fdbd24f8d999 |
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, |
106815 | 3 2005, 2006, 2007, 2008, 2009, 2010 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 |
18 | 33 main () |
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> | |
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
62 |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
63 /* This is to declare cuserid. */ |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
64 #ifdef HAVE_UNISTD_H |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
65 #include <unistd.h> |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
66 #endif |
18 | 67 |
68 /* Type definitions */ | |
69 | |
70 #define boolean int | |
71 #define true 1 | |
72 #define false 0 | |
73 | |
69790
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
74 #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
|
75 |
1e68e7f3b824
* lib-src/b2m.c (main): Don't include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
69697
diff
changeset
|
76 /* 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
|
77 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
|
78 #ifndef TM_YEAR_IN_ASCTIME_RANGE |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
79 # 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
|
80 (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
|
81 #endif |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
82 |
18 | 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; | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
99 |
18 | 100 struct stream_record |
101 { | |
102 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
|
103 int (*action)(FILE *); |
18 | 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 | |
91725 | 139 #ifndef MAIL_PROGRAM_NAME |
140 #define MAIL_PROGRAM_NAME "/bin/mail" | |
141 #endif | |
142 | |
18 | 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 | |
109511
09a43f890565
Add NO_RETURN specifiers to functions in lib-src.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109125
diff
changeset
|
150 static void fatal (char *s1) NO_RETURN; |
09a43f890565
Add NO_RETURN specifiers to functions in lib-src.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109125
diff
changeset
|
151 |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
152 extern FILE *popen (const char *, const char *); |
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
153 extern int fclose (FILE *), pclose (FILE *); |
18 | 154 |
155 #ifdef CURRENT_USER | |
156 extern struct passwd *getpwuid (); | |
157 extern unsigned short geteuid (); | |
158 static struct passwd *my_entry; | |
159 #define cuserid(s) \ | |
160 (my_entry = getpwuid (((int) geteuid ())), \ | |
161 my_entry->pw_name) | |
162 #endif | |
163 | |
164 /* Utilities */ | |
165 | |
166 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
167 | |
168 static void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
169 error (char *s1, char *s2) |
18 | 170 { |
171 printf ("%s: ", my_name); | |
172 printf (s1, s2); | |
173 printf ("\n"); | |
174 no_problems = false; | |
175 } | |
176 | |
177 /* Print error message and exit. */ | |
178 | |
179 static void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
180 fatal (char *s1) |
18 | 181 { |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
182 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
|
183 exit (EXIT_FAILURE); |
18 | 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 * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
189 xmalloc (int size) |
18 | 190 { |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
191 long *result = (long *) malloc (((unsigned) size)); |
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
192 if (result == ((long *) NULL)) |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
193 fatal ("virtual memory exhausted"); |
18 | 194 return result; |
195 } | |
196 | |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
197 static long * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
198 xrealloc (long int *ptr, int size) |
18 | 199 { |
12833
25464bf61eb1
(xmalloc, xrealloc): Use return-type long *.
Richard M. Stallman <rms@gnu.org>
parents:
10265
diff
changeset
|
200 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
|
201 if (result == ((long *) NULL)) |
18 | 202 fatal ("virtual memory exhausted"); |
203 return result; | |
204 } | |
205 | |
206 /* Initialize a linebuffer for use */ | |
207 | |
208 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
209 init_linebuffer (struct linebuffer *linebuffer) |
18 | 210 { |
211 linebuffer->size = INITIAL_LINE_SIZE; | |
212 linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE)); | |
213 } | |
214 | |
215 /* 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
|
216 Return the length of the line. */ |
18 | 217 |
218 long | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
219 readline (struct linebuffer *linebuffer, FILE *stream) |
18 | 220 { |
221 char *buffer = linebuffer->buffer; | |
222 char *p = linebuffer->buffer; | |
223 char *end = p + linebuffer->size; | |
224 | |
225 while (true) | |
226 { | |
227 int c = getc (stream); | |
228 if (p == end) | |
229 { | |
230 linebuffer->size *= 2; | |
34951
1efc40541908
(readline): Cast buffer to "long *" to pacify
Eli Zaretskii <eliz@gnu.org>
parents:
34609
diff
changeset
|
231 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
|
232 p = buffer + (p - linebuffer->buffer); |
6954
774fdc20d115
(readline): When extending the buffer,
Richard M. Stallman <rms@gnu.org>
parents:
6109
diff
changeset
|
233 end = buffer + linebuffer->size; |
18 | 234 linebuffer->buffer = buffer; |
235 } | |
236 if (c < 0 || c == '\n') | |
237 { | |
238 *p = 0; | |
239 break; | |
240 } | |
241 *p++ = c; | |
242 } | |
243 | |
244 return p - buffer; | |
245 } | |
246 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
247 /* Extract a colon-terminated keyword from the string FIELD. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
248 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
|
249 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
|
250 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
251 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
|
252 |
18 | 253 char * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
254 get_keyword (register char *field, char **rest) |
18 | 255 { |
256 static char keyword[KEYWORD_SIZE]; | |
257 register char *ptr; | |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
258 register int c; |
18 | 259 |
260 ptr = &keyword[0]; | |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
261 c = (unsigned char) *field++; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
262 if (isspace (c) || c == ':') |
18 | 263 return ((char *) NULL); |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
264 *ptr++ = (islower (c) ? toupper (c) : c); |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
265 while (((c = (unsigned char) *field++) != ':') && ! isspace (c)) |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
266 *ptr++ = (islower (c) ? toupper (c) : c); |
18 | 267 *ptr++ = '\0'; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
268 while (isspace (c)) |
34609
cb2667416fa5
(get_keyword): Make sure that isspace and
Gerd Moellmann <gerd@gnu.org>
parents:
26083
diff
changeset
|
269 c = (unsigned char) *field++; |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
270 if (c != ':') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
271 return ((char *) NULL); |
18 | 272 *rest = field; |
273 return &keyword[0]; | |
274 } | |
275 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
276 /* 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
|
277 |
18 | 278 boolean |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
279 has_keyword (char *field) |
18 | 280 { |
281 char *ignored; | |
282 return (get_keyword (field, &ignored) != ((char *) NULL)); | |
283 } | |
284 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
285 /* 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
|
286 into the buffer WHERE. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
287 Concatenate lines, putting just a space between them. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
288 Delete everything contained in parentheses. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
289 When a recipient name contains <...>, we discard |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
290 everything except what is inside the <...>. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
291 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
292 We don't pay attention to overflowing WHERE; |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
293 the caller has to make it big enough. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
294 |
18 | 295 char * |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
296 add_field (line_list the_list, register char *field, register char *where) |
18 | 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 | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
352 make_file_preface (void) |
18 | 353 { |
354 char *the_string, *temp; | |
355 long idiotic_interface; | |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
356 struct tm *tm; |
18 | 357 long prefix_length; |
358 long user_length; | |
359 long date_length; | |
360 line_list result; | |
361 | |
362 prefix_length = strlen (FROM_PREFIX); | |
363 time (&idiotic_interface); | |
69697
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
364 /* 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
|
365 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
|
366 is set to a bizarre value. */ |
e112ec9aa49b
* b2m.c: Include <limits.h>.
Paul Eggert <eggert@twinsun.com>
parents:
68647
diff
changeset
|
367 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
|
368 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
|
369 && (the_date = asctime (tm)))) |
72034
ca1a855f01ae
(fatal): Drop second parameter and treat first
Andreas Schwab <schwab@suse.de>
parents:
70278
diff
changeset
|
370 fatal ("current time is out of range"); |
18 | 371 /* the_date has an unwanted newline at the end */ |
372 date_length = strlen (the_date) - 1; | |
373 the_date[date_length] = '\0'; | |
374 temp = cuserid ((char *) NULL); | |
375 user_length = strlen (temp); | |
376 the_user = alloc_string (user_length + 1); | |
377 strcpy (the_user, temp); | |
18841
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
378 the_string = alloc_string (3 + prefix_length |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
379 + user_length |
36704f455f32
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
16218
diff
changeset
|
380 + date_length); |
18 | 381 temp = the_string; |
382 strcpy (temp, FROM_PREFIX); | |
383 temp = &temp[prefix_length]; | |
384 *temp++ = ' '; | |
385 strcpy (temp, the_user); | |
386 temp = &temp[user_length]; | |
387 *temp++ = ' '; | |
388 strcpy (temp, the_date); | |
389 result = new_list (); | |
390 result->string = the_string; | |
391 result->continuation = ((line_list) NULL); | |
392 return result; | |
393 } | |
394 | |
395 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
396 write_line_list (register line_list the_list, FILE *the_stream) |
18 | 397 { |
398 for ( ; | |
399 the_list != ((line_list) NULL) ; | |
400 the_list = the_list->continuation) | |
401 { | |
402 fputs (the_list->string, the_stream); | |
403 putc ('\n', the_stream); | |
404 } | |
405 return; | |
406 } | |
407 | |
408 int | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
409 close_the_streams (void) |
18 | 410 { |
411 register stream_list rem; | |
412 for (rem = the_streams; | |
413 rem != ((stream_list) NULL); | |
414 rem = rem->rest_streams) | |
415 no_problems = (no_problems && | |
416 ((*rem->action) (rem->handle) == 0)); | |
417 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
|
418 return (no_problems ? EXIT_SUCCESS : EXIT_FAILURE); |
18 | 419 } |
420 | |
421 void | |
109125
12b02558bf51
* lib-src/fakemail.c (action): Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109111
diff
changeset
|
422 add_a_stream (FILE *the_stream, int (*closing_action) (FILE *)) |
18 | 423 { |
424 stream_list old = the_streams; | |
425 the_streams = new_stream (); | |
426 the_streams->handle = the_stream; | |
427 the_streams->action = closing_action; | |
428 the_streams->rest_streams = old; | |
429 return; | |
430 } | |
431 | |
432 int | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
433 my_fclose (FILE *the_file) |
18 | 434 { |
435 putc ('\n', the_file); | |
436 fflush (the_file); | |
437 return fclose (the_file); | |
438 } | |
439 | |
440 boolean | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
441 open_a_file (char *name) |
18 | 442 { |
443 FILE *the_stream = fopen (name, "a"); | |
444 if (the_stream != ((FILE *) NULL)) | |
445 { | |
446 add_a_stream (the_stream, my_fclose); | |
447 if (the_user == ((char *) NULL)) | |
448 file_preface = make_file_preface (); | |
449 write_line_list (file_preface, the_stream); | |
450 return true; | |
451 } | |
452 return false; | |
453 } | |
454 | |
455 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
456 put_string (char *s) |
18 | 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 | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
467 put_line (char *string) |
18 | 468 { |
469 register stream_list rem; | |
470 for (rem = the_streams; | |
471 rem != ((stream_list) NULL); | |
472 rem = rem->rest_streams) | |
473 { | |
20 | 474 char *s = string; |
475 int column = 0; | |
476 | |
477 /* Divide STRING into lines. */ | |
478 while (*s != 0) | |
479 { | |
480 char *breakpos; | |
481 | |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
482 /* Find the last char that fits. */ |
20 | 483 for (breakpos = s; *breakpos && column < 78; ++breakpos) |
484 { | |
485 if (*breakpos == '\t') | |
486 column += 8; | |
487 else | |
488 column++; | |
489 } | |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
490 /* 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
|
491 if (*breakpos) |
20 | 492 { |
5959
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
493 /* 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
|
494 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
|
495 |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
496 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
|
497 { |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
498 /* 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
|
499 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
|
500 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
|
501 /* 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
|
502 ++breakpos; |
e4337a7bbe32
(put_line): Don't break the line if it all fits.
Richard M. Stallman <rms@gnu.org>
parents:
5447
diff
changeset
|
503 } |
20 | 504 } |
505 /* Output that much, then break the line. */ | |
506 fwrite (s, 1, breakpos - s, rem->handle); | |
507 column = 8; | |
508 | |
509 /* Skip whitespace and prepare to print more addresses. */ | |
510 s = breakpos; | |
511 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
|
512 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
|
513 fputs ("\n\t", rem->handle); |
20 | 514 } |
18 | 515 putc ('\n', rem->handle); |
516 } | |
517 return; | |
518 } | |
519 | |
520 #define mail_error error | |
521 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
522 /* 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
|
523 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
|
524 Call open_a_file for each file. */ |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
525 |
18 | 526 void |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
527 setup_files (register line_list the_list, register char *field) |
18 | 528 { |
529 register char *start; | |
530 register char c; | |
531 while (true) | |
532 { | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
533 while (((c = *field) != '\0') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
534 && (c == ' ' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
535 || c == '\t' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
536 || c == ',')) |
18 | 537 field += 1; |
538 if (c != '\0') | |
539 { | |
540 start = field; | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
541 while (((c = *field) != '\0') |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
542 && c != ' ' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
543 && c != '\t' |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
544 && c != ',') |
18 | 545 field += 1; |
546 *field = '\0'; | |
547 if (!open_a_file (start)) | |
548 mail_error ("Could not open file %s", start); | |
549 *field = c; | |
550 if (c != '\0') continue; | |
551 } | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
552 if (the_list == ((line_list) NULL)) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
553 return; |
18 | 554 field = the_list->string; |
555 the_list = the_list->continuation; | |
556 } | |
557 } | |
558 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
559 /* 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
|
560 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
|
561 |
18 | 562 int |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
563 args_size (header the_header) |
18 | 564 { |
565 register header old = the_header; | |
566 register line_list rem; | |
567 register int size = 0; | |
568 do | |
569 { | |
570 char *field; | |
571 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
|
572 if ((strcmp (keyword, "TO") == 0) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
573 || (strcmp (keyword, "CC") == 0) |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
574 || (strcmp (keyword, "BCC") == 0)) |
18 | 575 { |
576 size += 1 + strlen (field); | |
577 for (rem = the_header->text->continuation; | |
578 rem != NIL; | |
579 rem = rem->continuation) | |
580 size += 1 + strlen (rem->string); | |
581 } | |
582 the_header = the_header->next; | |
583 } while (the_header != old); | |
584 return size; | |
585 } | |
586 | |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
587 /* Scan the header described by the lists THE_HEADER, |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
588 and put all recipient names into the buffer WHERE. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
589 Precede each recipient name with a space. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
590 |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
591 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
|
592 |
21389
48690fd8d40a
(_XOPEN_SOURCE): Define for declaration of cuserid.
Andreas Schwab <schwab@suse.de>
parents:
18841
diff
changeset
|
593 void |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
594 parse_header (header the_header, register char *where) |
18 | 595 { |
596 register header old = the_header; | |
597 do | |
598 { | |
599 char *field; | |
600 register char *keyword = get_keyword (the_header->text->string, &field); | |
601 if (strcmp (keyword, "TO") == 0) | |
602 where = add_field (the_header->text->continuation, field, where); | |
603 else if (strcmp (keyword, "CC") == 0) | |
604 where = add_field (the_header->text->continuation, field, where); | |
605 else if (strcmp (keyword, "BCC") == 0) | |
606 { | |
607 where = add_field (the_header->text->continuation, field, where); | |
608 the_header->previous->next = the_header->next; | |
609 the_header->next->previous = the_header->previous; | |
610 } | |
611 else if (strcmp (keyword, "FCC") == 0) | |
612 setup_files (the_header->text->continuation, field); | |
613 the_header = the_header->next; | |
614 } while (the_header != old); | |
615 *where = '\0'; | |
616 return; | |
617 } | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
618 |
10265
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
619 /* 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
|
620 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
|
621 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
|
622 one for each line in that field. |
c53a70ec8d85
(xmalloc, xrealloc): Add casts.
Richard M. Stallman <rms@gnu.org>
parents:
9621
diff
changeset
|
623 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
|
624 |
18 | 625 header |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
626 read_header (void) |
18 | 627 { |
628 register header the_header = ((header) NULL); | |
629 register line_list *next_line = ((line_list *) NULL); | |
630 | |
631 init_linebuffer (&lb); | |
632 | |
633 do | |
634 { | |
635 long length; | |
636 register char *line; | |
637 | |
638 readline (&lb, stdin); | |
639 line = lb.buffer; | |
640 length = strlen (line); | |
641 if (length == 0) break; | |
642 | |
643 if (has_keyword (line)) | |
644 { | |
645 register header old = the_header; | |
646 the_header = new_header (); | |
647 if (old == ((header) NULL)) | |
648 { | |
649 the_header->next = the_header; | |
650 the_header->previous = the_header; | |
651 } | |
652 else | |
653 { | |
654 the_header->previous = old; | |
655 the_header->next = old->next; | |
656 old->next = the_header; | |
657 } | |
658 next_line = &(the_header->text); | |
659 } | |
660 | |
661 if (next_line == ((line_list *) NULL)) | |
662 { | |
663 /* 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
|
664 exit (EXIT_FAILURE); |
18 | 665 } |
666 *next_line = new_list (); | |
667 (*next_line)->string = alloc_string (length); | |
668 strcpy (((*next_line)->string), line); | |
669 next_line = &((*next_line)->continuation); | |
670 *next_line = NIL; | |
671 | |
672 } while (true); | |
673 | |
70278
8e7233f487a3
(read_header): Give fatal error if input has no header.
Richard M. Stallman <rms@gnu.org>
parents:
69790
diff
changeset
|
674 if (! the_header) |
8e7233f487a3
(read_header): Give fatal error if input has no header.
Richard M. Stallman <rms@gnu.org>
parents:
69790
diff
changeset
|
675 fatal ("input message has no header"); |
18 | 676 return the_header->next; |
677 } | |
678 | |
679 void | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
680 write_header (header the_header) |
18 | 681 { |
682 register header old = the_header; | |
683 do | |
684 { | |
685 register line_list the_list; | |
686 for (the_list = the_header->text; | |
687 the_list != NIL; | |
688 the_list = the_list->continuation) | |
689 put_line (the_list->string); | |
690 the_header = the_header->next; | |
691 } while (the_header != old); | |
692 put_line (""); | |
693 return; | |
694 } | |
695 | |
15683 | 696 int |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
697 main (int argc, char **argv) |
18 | 698 { |
699 char *command_line; | |
700 header the_header; | |
701 long name_length; | |
702 char *mail_program_name; | |
703 char buf[BUFLEN + 1]; | |
704 register int size; | |
705 FILE *the_pipe; | |
706 | |
109111
52b76722152a
Convert function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
707 extern char *getenv (const char *); |
18 | 708 |
709 mail_program_name = getenv ("FAKEMAILER"); | |
710 if (!(mail_program_name && *mail_program_name)) | |
91725 | 711 mail_program_name = MAIL_PROGRAM_NAME; |
18 | 712 name_length = strlen (mail_program_name); |
713 | |
714 my_name = MY_NAME; | |
715 the_streams = ((stream_list) NULL); | |
716 the_date = ((char *) NULL); | |
717 the_user = ((char *) NULL); | |
718 | |
719 the_header = read_header (); | |
720 command_line = alloc_string (name_length + args_size (the_header)); | |
721 strcpy (command_line, mail_program_name); | |
722 parse_header (the_header, &command_line[name_length]); | |
42181
358035cb58d9
Conditionally include config.h.
Pavel Janík <Pavel@Janik.cz>
parents:
42134
diff
changeset
|
723 |
18 | 724 the_pipe = popen (command_line, "w"); |
725 if (the_pipe == ((FILE *) NULL)) | |
726 fatal ("cannot open pipe to real mailer"); | |
727 | |
728 add_a_stream (the_pipe, pclose); | |
729 | |
730 write_header (the_header); | |
731 | |
732 /* Dump the message itself */ | |
733 | |
734 while (!feof (stdin)) | |
735 { | |
736 size = fread (buf, 1, BUFLEN, stdin); | |
737 buf[size] = '\0'; | |
738 put_string (buf); | |
739 } | |
740 | |
741 exit (close_the_streams ()); | |
742 } | |
743 | |
5447
6f0905b05218
(main) [MSDOS]: Dummy stub just to make the file compile.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
744 #endif /* not MSDOS */ |
18 | 745 #endif /* not BSD 4.2 (or newer) */ |
52401 | 746 |
747 /* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783 | |
748 (do not change this comment) */ | |
55442
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
749 |
a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
750 /* fakemail.c ends here */ |