Mercurial > emacs
annotate lib-src/movemail.c @ 14186:ee40177f6c68
Update FSF's address in the preamble.
| author | Erik Naggum <erik@naggum.no> |
|---|---|
| date | Mon, 15 Jan 1996 09:18:04 +0000 |
| parents | 621a575db6f7 |
| children | 2925c3f0d038 |
| rev | line source |
|---|---|
| 23 | 1 /* movemail foo bar -- move file foo to file bar, |
| 2 locking file foo the way /bin/mail respects. | |
|
5524
f14a0fe979d9
(get_errmsg, pfatal_with_name, pfatal_and_delete): Call strerror instead of
Roland McGrath <roland@gnu.org>
parents:
5446
diff
changeset
|
3 Copyright (C) 1986, 1992, 1993, 1994 Free Software Foundation, Inc. |
| 23 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 38 | 7 GNU Emacs is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | |
|
5524
f14a0fe979d9
(get_errmsg, pfatal_with_name, pfatal_and_delete): Call strerror instead of
Roland McGrath <roland@gnu.org>
parents:
5446
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
| 38 | 10 any later version. |
| 23 | 11 |
| 38 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
| 23 | 21 |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
22 /* Important notice: defining MAIL_USE_FLOCK or MAIL_USE_LOCKF *will |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
23 cause loss of mail* if you do it on a system that does not normally |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
24 use flock as its way of interlocking access to inbox files. The |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
25 setting of MAIL_USE_FLOCK and MAIL_USE_LOCKF *must agree* with the |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
26 system's own conventions. It is not a choice that is up to you. |
|
510
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
27 |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
28 So, if your system uses lock files rather than flock, then the only way |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
29 you can get proper operation is to enable movemail to write lockfiles there. |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
30 This means you must either give that directory access modes |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
31 that permit everyone to write lockfiles in it, or you must make movemail |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
32 a setuid or setgid program. */ |
|
4eaef1578a15
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
447
diff
changeset
|
33 |
| 23 | 34 /* |
| 35 * Modified January, 1986 by Michael R. Gretzinger (Project Athena) | |
| 36 * | |
| 37 * Added POP (Post Office Protocol) service. When compiled -DPOP | |
| 38 * movemail will accept input filename arguments of the form | |
| 39 * "po:username". This will cause movemail to open a connection to | |
| 40 * a pop server running on $MAILHOST (environment variable). Movemail | |
| 41 * must be setuid to root in order to work with POP. | |
| 42 * | |
| 43 * New module: popmail.c | |
| 44 * Modified routines: | |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
45 * main - added code within #ifdef MAIL_USE_POP; added setuid (getuid ()) |
| 23 | 46 * after POP code. |
| 47 * New routines in movemail.c: | |
| 48 * get_errmsg - return pointer to system error message | |
| 49 * | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
50 * Modified August, 1993 by Jonathan Kamens (OpenVision Technologies) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
51 * |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
52 * Move all of the POP code into a separate file, "pop.c". |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
53 * Use strerror instead of get_errmsg. |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
54 * |
| 23 | 55 */ |
| 56 | |
|
8449
805f9284065b
Include config.h first thing.
Richard M. Stallman <rms@gnu.org>
parents:
6862
diff
changeset
|
57 #define NO_SHORTNAMES /* Tell config not to load remap.h */ |
|
805f9284065b
Include config.h first thing.
Richard M. Stallman <rms@gnu.org>
parents:
6862
diff
changeset
|
58 #include <../src/config.h> |
| 23 | 59 #include <sys/types.h> |
| 60 #include <sys/stat.h> | |
| 61 #include <sys/file.h> | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
62 #include <stdio.h> |
| 23 | 63 #include <errno.h> |
| 5435 | 64 #include <../src/syswait.h> |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
65 #ifdef MAIL_USE_POP |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
66 #include "pop.h" |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
67 #endif |
| 23 | 68 |
|
5446
726a3dc867a6
(malloc): Don't declare it.
Richard M. Stallman <rms@gnu.org>
parents:
5435
diff
changeset
|
69 #ifdef MSDOS |
|
726a3dc867a6
(malloc): Don't declare it.
Richard M. Stallman <rms@gnu.org>
parents:
5435
diff
changeset
|
70 #undef access |
|
726a3dc867a6
(malloc): Don't declare it.
Richard M. Stallman <rms@gnu.org>
parents:
5435
diff
changeset
|
71 #endif /* MSDOS */ |
|
726a3dc867a6
(malloc): Don't declare it.
Richard M. Stallman <rms@gnu.org>
parents:
5435
diff
changeset
|
72 |
| 23 | 73 #ifdef USG |
| 74 #include <fcntl.h> | |
| 75 #include <unistd.h> | |
| 27 | 76 #ifndef F_OK |
| 77 #define F_OK 0 | |
| 78 #define X_OK 1 | |
| 79 #define W_OK 2 | |
| 80 #define R_OK 4 | |
| 81 #endif | |
| 23 | 82 #endif /* USG */ |
| 83 | |
|
6862
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6813
diff
changeset
|
84 #ifdef HAVE_UNISTD_H |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6813
diff
changeset
|
85 #include <unistd.h> |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6813
diff
changeset
|
86 #endif |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6813
diff
changeset
|
87 |
| 23 | 88 #ifdef XENIX |
| 89 #include <sys/locking.h> | |
| 90 #endif | |
| 91 | |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
92 #ifdef MAIL_USE_LOCKF |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
93 #define MAIL_USE_SYSTEM_LOCK |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
94 #endif |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
95 |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
96 #ifdef MAIL_USE_FLOCK |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
97 #define MAIL_USE_SYSTEM_LOCK |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
98 #endif |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
99 |
| 25 | 100 #ifdef MAIL_USE_MMDF |
| 101 extern int lk_open (), lk_close (); | |
| 102 #endif | |
| 103 | |
| 23 | 104 /* Cancel substitutions made by config.h for Emacs. */ |
| 105 #undef open | |
| 106 #undef read | |
| 107 #undef write | |
| 108 #undef close | |
| 109 | |
| 571 | 110 #ifndef errno |
| 23 | 111 extern int errno; |
| 571 | 112 #endif |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
113 char *strerror (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
114 |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
115 void fatal (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
116 void error (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
117 void pfatal_with_name (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
118 void pfatal_and_delete (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
119 char *concat (); |
|
11675
496576df5d46
(xmalloc): Declare it to return long *.
Richard M. Stallman <rms@gnu.org>
parents:
10399
diff
changeset
|
120 long *xmalloc (); |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
121 int popmail (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
122 int pop_retr (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
123 int mbx_write (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
124 int mbx_delimit_begin (); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
125 int mbx_delimit_end (); |
| 23 | 126 |
| 127 /* Nonzero means this is name of a lock file to delete on fatal error. */ | |
| 128 char *delete_lockname; | |
| 129 | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
130 int |
| 23 | 131 main (argc, argv) |
| 132 int argc; | |
| 133 char **argv; | |
| 134 { | |
| 135 char *inname, *outname; | |
| 136 int indesc, outdesc; | |
| 137 int nread; | |
| 5435 | 138 WAITTYPE status; |
| 23 | 139 |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
140 #ifndef MAIL_USE_SYSTEM_LOCK |
| 23 | 141 struct stat st; |
| 142 long now; | |
| 143 int tem; | |
| 144 char *lockname, *p; | |
|
601
3db1540d4b97
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
580
diff
changeset
|
145 char *tempname; |
| 23 | 146 int desc; |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
147 #endif /* not MAIL_USE_SYSTEM_LOCK */ |
| 23 | 148 |
| 149 delete_lockname = 0; | |
| 150 | |
| 151 if (argc < 3) | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
152 { |
|
12389
e2d27fbff935
(main): Add newline in usage message.
Richard M. Stallman <rms@gnu.org>
parents:
11746
diff
changeset
|
153 fprintf (stderr, "Usage: movemail inbox destfile\n"); |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
154 exit(1); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
155 } |
| 23 | 156 |
| 157 inname = argv[1]; | |
| 158 outname = argv[2]; | |
| 159 | |
| 25 | 160 #ifdef MAIL_USE_MMDF |
| 161 mmdf_init (argv[0]); | |
| 162 #endif | |
| 163 | |
|
12793
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
164 if (*outname == 0) |
|
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
165 fatal ("Destination file name is empty", 0); |
|
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
166 |
| 120 | 167 /* Check access to output file. */ |
| 23 | 168 if (access (outname, F_OK) == 0 && access (outname, W_OK) != 0) |
| 169 pfatal_with_name (outname); | |
| 170 | |
| 14036 | 171 /* Also check that outname's directory is writable to the real uid. */ |
| 23 | 172 { |
|
5446
726a3dc867a6
(malloc): Don't declare it.
Richard M. Stallman <rms@gnu.org>
parents:
5435
diff
changeset
|
173 char *buf = (char *) xmalloc (strlen (outname) + 1); |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
174 char *p; |
| 23 | 175 strcpy (buf, outname); |
| 176 p = buf + strlen (buf); | |
| 177 while (p > buf && p[-1] != '/') | |
| 178 *--p = 0; | |
| 179 if (p == buf) | |
| 180 *p++ = '.'; | |
| 181 if (access (buf, W_OK) != 0) | |
| 182 pfatal_with_name (buf); | |
| 183 free (buf); | |
| 184 } | |
| 185 | |
| 186 #ifdef MAIL_USE_POP | |
|
3309
f00054d40753
* movemail.c [MAIL_USE_POP] (main): Don't use non-portable
Jim Blandy <jimb@redhat.com>
parents:
733
diff
changeset
|
187 if (!strncmp (inname, "po:", 3)) |
| 23 | 188 { |
|
12442
981986d7d82f
(main) [MAIL_USE_POP]: When a user specifies a
Richard M. Stallman <rms@gnu.org>
parents:
12389
diff
changeset
|
189 int status; |
| 23 | 190 |
|
12442
981986d7d82f
(main) [MAIL_USE_POP]: When a user specifies a
Richard M. Stallman <rms@gnu.org>
parents:
12389
diff
changeset
|
191 status = popmail (inname + 3, outname); |
| 23 | 192 exit (status); |
| 193 } | |
| 194 | |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
195 setuid (getuid ()); |
| 23 | 196 #endif /* MAIL_USE_POP */ |
| 197 | |
| 120 | 198 /* Check access to input file. */ |
| 199 if (access (inname, R_OK | W_OK) != 0) | |
| 200 pfatal_with_name (inname); | |
| 201 | |
| 25 | 202 #ifndef MAIL_USE_MMDF |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
203 #ifndef MAIL_USE_SYSTEM_LOCK |
| 12572 | 204 /* Use a lock file named after our first argument with .lock appended: |
| 23 | 205 If it exists, the mail file is locked. */ |
|
351
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
206 /* Note: this locking mechanism is *required* by the mailer |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
207 (on systems which use it) to prevent loss of mail. |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
208 |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
209 On systems that use a lock file, extracting the mail without locking |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
210 WILL occasionally cause loss of mail due to timing errors! |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
211 |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
212 So, if creation of the lock file fails |
| 12572 | 213 due to access permission on the mail spool directory, |
|
351
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
214 you simply MUST change the permission |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
215 and/or make movemail a setgid program |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
216 so it can create lock files properly. |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
217 |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
218 You might also wish to verify that your system is one |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
219 which uses lock files for this purpose. Some systems use other methods. |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
220 |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
221 If your system uses the `flock' system call for mail locking, |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
222 define MAIL_USE_SYSTEM_LOCK in config.h or the s-*.h file |
|
351
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
223 and recompile movemail. If the s- file for your system |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
224 should define MAIL_USE_SYSTEM_LOCK but does not, send a bug report |
|
351
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
225 to bug-gnu-emacs@prep.ai.mit.edu so we can fix it. */ |
|
5729b1cc3942
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
127
diff
changeset
|
226 |
| 23 | 227 lockname = concat (inname, ".lock", ""); |
|
5318
60fa1ee0c98c
(main): When making tempname, cast result of xmalloc.
Richard M. Stallman <rms@gnu.org>
parents:
4985
diff
changeset
|
228 tempname = (char *) xmalloc (strlen (inname) + strlen ("EXXXXXX") + 1); |
|
60fa1ee0c98c
(main): When making tempname, cast result of xmalloc.
Richard M. Stallman <rms@gnu.org>
parents:
4985
diff
changeset
|
229 strcpy (tempname, inname); |
| 23 | 230 p = tempname + strlen (tempname); |
| 231 while (p != tempname && p[-1] != '/') | |
| 232 p--; | |
| 233 *p = 0; | |
| 234 strcpy (p, "EXXXXXX"); | |
| 235 mktemp (tempname); | |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
236 unlink (tempname); |
| 23 | 237 |
| 238 while (1) | |
| 239 { | |
| 240 /* Create the lock file, but not under the lock file name. */ | |
| 241 /* Give up if cannot do that. */ | |
| 5435 | 242 desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666); |
| 23 | 243 if (desc < 0) |
|
12777
96819e0ab508
(main): Mention lock file name in error message.
Richard M. Stallman <rms@gnu.org>
parents:
12572
diff
changeset
|
244 { |
|
12793
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
245 char *message = (char *) xmalloc (strlen (tempname) + 50); |
|
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
246 sprintf (message, "%s--see source file lib-src/movemail.c", |
|
0464324deda7
(main): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12777
diff
changeset
|
247 tempname); |
|
12777
96819e0ab508
(main): Mention lock file name in error message.
Richard M. Stallman <rms@gnu.org>
parents:
12572
diff
changeset
|
248 pfatal_with_name (message); |
|
96819e0ab508
(main): Mention lock file name in error message.
Richard M. Stallman <rms@gnu.org>
parents:
12572
diff
changeset
|
249 } |
| 23 | 250 close (desc); |
| 251 | |
| 252 tem = link (tempname, lockname); | |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
253 unlink (tempname); |
| 23 | 254 if (tem >= 0) |
| 255 break; | |
| 256 sleep (1); | |
| 257 | |
|
11746
e93b5c05c949
(main): Increase lock timeout to five minutes.
Richard M. Stallman <rms@gnu.org>
parents:
11675
diff
changeset
|
258 /* If lock file is five minutes old, unlock it. |
|
e93b5c05c949
(main): Increase lock timeout to five minutes.
Richard M. Stallman <rms@gnu.org>
parents:
11675
diff
changeset
|
259 Five minutes should be good enough to cope with crashes |
|
e93b5c05c949
(main): Increase lock timeout to five minutes.
Richard M. Stallman <rms@gnu.org>
parents:
11675
diff
changeset
|
260 and wedgitude, and long enough to avoid being fooled |
|
e93b5c05c949
(main): Increase lock timeout to five minutes.
Richard M. Stallman <rms@gnu.org>
parents:
11675
diff
changeset
|
261 by time differences between machines. */ |
| 23 | 262 if (stat (lockname, &st) >= 0) |
| 263 { | |
| 264 now = time (0); | |
|
11746
e93b5c05c949
(main): Increase lock timeout to five minutes.
Richard M. Stallman <rms@gnu.org>
parents:
11675
diff
changeset
|
265 if (st.st_ctime < now - 300) |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
266 unlink (lockname); |
| 23 | 267 } |
| 268 } | |
| 269 | |
| 270 delete_lockname = lockname; | |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
271 #endif /* not MAIL_USE_SYSTEM_LOCK */ |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
272 #endif /* not MAIL_USE_MMDF */ |
| 23 | 273 |
| 5435 | 274 if (fork () == 0) |
| 275 { | |
|
6813
76f93e487956
(main): Use setuid, not seteuid.
Karl Heuer <kwzh@gnu.org>
parents:
6690
diff
changeset
|
276 setuid (getuid ()); |
| 5435 | 277 |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
278 #ifndef MAIL_USE_MMDF |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
279 #ifdef MAIL_USE_SYSTEM_LOCK |
| 5435 | 280 indesc = open (inname, O_RDWR); |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
281 #else /* if not MAIL_USE_SYSTEM_LOCK */ |
| 5435 | 282 indesc = open (inname, O_RDONLY); |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
283 #endif /* not MAIL_USE_SYSTEM_LOCK */ |
| 5435 | 284 #else /* MAIL_USE_MMDF */ |
| 285 indesc = lk_open (inname, O_RDONLY, 0, 0, 10); | |
| 25 | 286 #endif /* MAIL_USE_MMDF */ |
| 287 | |
| 5435 | 288 if (indesc < 0) |
| 289 pfatal_with_name (inname); | |
| 23 | 290 |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
291 #if defined (BSD) || defined (XENIX) |
| 5435 | 292 /* In case movemail is setuid to root, make sure the user can |
| 293 read the output file. */ | |
| 294 /* This is desirable for all systems | |
| 295 but I don't want to assume all have the umask system call */ | |
| 296 umask (umask (0) & 0333); | |
| 23 | 297 #endif /* BSD or Xenix */ |
| 5435 | 298 outdesc = open (outname, O_WRONLY | O_CREAT | O_EXCL, 0666); |
| 299 if (outdesc < 0) | |
| 300 pfatal_with_name (outname); | |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
301 #ifdef MAIL_USE_SYSTEM_LOCK |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
302 #ifdef MAIL_USE_LOCKF |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
303 if (lockf (indesc, F_LOCK, 0) < 0) pfatal_with_name (inname); |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
304 #else /* not MAIL_USE_LOCKF */ |
| 23 | 305 #ifdef XENIX |
| 5435 | 306 if (locking (indesc, LK_RLCK, 0L) < 0) pfatal_with_name (inname); |
| 23 | 307 #else |
| 5435 | 308 if (flock (indesc, LOCK_EX) < 0) pfatal_with_name (inname); |
| 23 | 309 #endif |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
310 #endif /* not MAIL_USE_LOCKF */ |
|
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
311 #endif /* MAIL_USE_SYSTEM_LOCK */ |
| 23 | 312 |
| 5435 | 313 { |
| 314 char buf[1024]; | |
| 604 | 315 |
| 5435 | 316 while (1) |
| 604 | 317 { |
| 5435 | 318 nread = read (indesc, buf, sizeof buf); |
| 319 if (nread != write (outdesc, buf, nread)) | |
| 320 { | |
| 321 int saved_errno = errno; | |
| 322 unlink (outname); | |
| 323 errno = saved_errno; | |
| 324 pfatal_with_name (outname); | |
| 325 } | |
| 326 if (nread < sizeof buf) | |
| 327 break; | |
| 604 | 328 } |
| 329 } | |
| 23 | 330 |
| 331 #ifdef BSD | |
| 5435 | 332 if (fsync (outdesc) < 0) |
| 333 pfatal_and_delete (outname); | |
| 23 | 334 #endif |
| 335 | |
| 5435 | 336 /* Check to make sure no errors before we zap the inbox. */ |
| 337 if (close (outdesc) != 0) | |
| 338 pfatal_and_delete (outname); | |
| 23 | 339 |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
340 #ifdef MAIL_USE_SYSTEM_LOCK |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
341 #if defined (STRIDE) || defined (XENIX) |
| 5435 | 342 /* Stride, xenix have file locking, but no ftruncate. This mess will do. */ |
| 343 close (open (inname, O_CREAT | O_TRUNC | O_RDWR, 0666)); | |
| 23 | 344 #else |
| 5435 | 345 ftruncate (indesc, 0L); |
| 23 | 346 #endif /* STRIDE or XENIX */ |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
347 #endif /* MAIL_USE_SYSTEM_LOCK */ |
| 25 | 348 |
| 349 #ifdef MAIL_USE_MMDF | |
| 5435 | 350 lk_close (indesc, 0, 0, 0); |
| 25 | 351 #else |
| 5435 | 352 close (indesc); |
| 25 | 353 #endif |
| 23 | 354 |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
355 #ifndef MAIL_USE_SYSTEM_LOCK |
|
5532
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
356 /* Delete the input file; if we can't, at least get rid of its |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
357 contents. */ |
| 571 | 358 #ifdef MAIL_UNLINK_SPOOL |
| 5435 | 359 /* This is generally bad to do, because it destroys the permissions |
| 360 that were set on the file. Better to just empty the file. */ | |
| 361 if (unlink (inname) < 0 && errno != ENOENT) | |
| 571 | 362 #endif /* MAIL_UNLINK_SPOOL */ |
| 5435 | 363 creat (inname, 0600); |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
364 #endif /* not MAIL_USE_SYSTEM_LOCK */ |
| 5435 | 365 |
| 366 exit (0); | |
| 367 } | |
| 368 | |
| 369 wait (&status); | |
| 370 if (!WIFEXITED (status)) | |
| 371 exit (1); | |
| 372 else if (WRETCODE (status) != 0) | |
| 373 exit (WRETCODE (status)); | |
| 374 | |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
375 #if !defined (MAIL_USE_MMDF) && !defined (MAIL_USE_SYSTEM_LOCK) |
| 25 | 376 unlink (lockname); |
|
6690
a1a42eefcc61
(main): Fix up MAIL_USE_MMDF conditional where
Richard M. Stallman <rms@gnu.org>
parents:
5532
diff
changeset
|
377 #endif /* not MAIL_USE_MMDF and not MAIL_USE_SYSTEM_LOCK */ |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
378 return 0; |
| 23 | 379 } |
| 380 | |
| 381 /* Print error message and exit. */ | |
| 382 | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
383 void |
| 23 | 384 fatal (s1, s2) |
| 385 char *s1, *s2; | |
| 386 { | |
| 387 if (delete_lockname) | |
| 388 unlink (delete_lockname); | |
| 389 error (s1, s2); | |
| 390 exit (1); | |
| 391 } | |
| 392 | |
| 393 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ | |
| 394 | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
395 void |
| 120 | 396 error (s1, s2, s3) |
| 397 char *s1, *s2, *s3; | |
| 23 | 398 { |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
399 fprintf (stderr, "movemail: "); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
400 fprintf (stderr, s1, s2, s3); |
|
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
401 fprintf (stderr, "\n"); |
| 23 | 402 } |
| 403 | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
404 void |
| 23 | 405 pfatal_with_name (name) |
| 406 char *name; | |
| 407 { | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
408 char *s = concat ("", strerror (errno), " for %s"); |
| 23 | 409 fatal (s, name); |
| 410 } | |
| 411 | |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
412 void |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
413 pfatal_and_delete (name) |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
414 char *name; |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
415 { |
|
9490
4e70299f958d
Make functions that return nothing void, not implicitly int.
David J. MacKenzie <djm@gnu.org>
parents:
9157
diff
changeset
|
416 char *s = concat ("", strerror (errno), " for %s"); |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
417 unlink (name); |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
418 fatal (s, name); |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
419 } |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
420 |
| 23 | 421 /* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */ |
| 422 | |
| 423 char * | |
| 424 concat (s1, s2, s3) | |
| 425 char *s1, *s2, *s3; | |
| 426 { | |
| 427 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3); | |
| 428 char *result = (char *) xmalloc (len1 + len2 + len3 + 1); | |
| 429 | |
| 430 strcpy (result, s1); | |
| 431 strcpy (result + len1, s2); | |
| 432 strcpy (result + len1 + len2, s3); | |
| 433 *(result + len1 + len2 + len3) = 0; | |
| 434 | |
| 435 return result; | |
| 436 } | |
| 437 | |
| 438 /* Like malloc but get fatal error if memory is exhausted. */ | |
| 439 | |
|
11675
496576df5d46
(xmalloc): Declare it to return long *.
Richard M. Stallman <rms@gnu.org>
parents:
10399
diff
changeset
|
440 long * |
| 23 | 441 xmalloc (size) |
| 571 | 442 unsigned size; |
| 23 | 443 { |
|
11675
496576df5d46
(xmalloc): Declare it to return long *.
Richard M. Stallman <rms@gnu.org>
parents:
10399
diff
changeset
|
444 long *result = (long *) malloc (size); |
| 23 | 445 if (!result) |
| 446 fatal ("virtual memory exhausted", 0); | |
| 447 return result; | |
| 448 } | |
| 449 | |
| 450 /* This is the guts of the interface to the Post Office Protocol. */ | |
| 451 | |
| 452 #ifdef MAIL_USE_POP | |
| 453 | |
| 454 #include <sys/socket.h> | |
| 455 #include <netinet/in.h> | |
| 456 #include <netdb.h> | |
| 457 #include <stdio.h> | |
|
634
52d0ff659265
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
604
diff
changeset
|
458 #include <pwd.h> |
| 23 | 459 |
| 460 #ifdef USG | |
| 461 #include <fcntl.h> | |
| 462 /* Cancel substitutions made by config.h for Emacs. */ | |
| 463 #undef open | |
| 464 #undef read | |
| 465 #undef write | |
| 466 #undef close | |
| 467 #endif /* USG */ | |
| 468 | |
| 469 #define NOTOK (-1) | |
| 470 #define OK 0 | |
| 471 #define DONE 1 | |
| 472 | |
| 473 char *progname; | |
| 474 FILE *sfi; | |
| 475 FILE *sfo; | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
476 char ibuffer[BUFSIZ]; |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
477 char obuffer[BUFSIZ]; |
| 23 | 478 char Errmsg[80]; |
| 479 | |
| 120 | 480 popmail (user, outfile) |
| 481 char *user; | |
| 482 char *outfile; | |
| 23 | 483 { |
| 120 | 484 int nmsgs, nbytes; |
| 485 register int i; | |
| 486 int mbfi; | |
| 487 FILE *mbf; | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
488 char *getenv (); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
489 int mbx_write (); |
|
9630
5410efcb7b6e
PopServer renamed to popserver throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9612
diff
changeset
|
490 popserver server; |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
491 extern char *strerror (); |
| 23 | 492 |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
493 server = pop_open (0, user, 0, POP_NO_GETPASS); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
494 if (! server) |
| 120 | 495 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
496 error (pop_error); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
497 return (1); |
| 23 | 498 } |
| 499 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
500 if (pop_stat (server, &nmsgs, &nbytes)) |
| 120 | 501 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
502 error (pop_error); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
503 return (1); |
| 120 | 504 } |
| 23 | 505 |
| 120 | 506 if (!nmsgs) |
| 507 { | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
508 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
509 return (0); |
| 23 | 510 } |
| 511 | |
| 120 | 512 mbfi = open (outfile, O_WRONLY | O_CREAT | O_EXCL, 0666); |
| 513 if (mbfi < 0) | |
| 514 { | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
515 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
516 error ("Error in open: %s, %s", strerror (errno), outfile); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
517 return (1); |
| 120 | 518 } |
| 519 fchown (mbfi, getuid (), -1); | |
| 520 | |
| 521 if ((mbf = fdopen (mbfi, "w")) == NULL) | |
| 522 { | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
523 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
524 error ("Error in fdopen: %s", strerror (errno)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
525 close (mbfi); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
526 unlink (outfile); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
527 return (1); |
| 120 | 528 } |
| 529 | |
| 530 for (i = 1; i <= nmsgs; i++) | |
| 531 { | |
| 532 mbx_delimit_begin (mbf); | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
533 if (pop_retr (server, i, mbx_write, mbf) != OK) |
| 120 | 534 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
535 error (Errmsg); |
| 120 | 536 close (mbfi); |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
537 return (1); |
| 120 | 538 } |
| 539 mbx_delimit_end (mbf); | |
| 540 fflush (mbf); | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
541 if (ferror (mbf)) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
542 { |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
543 error ("Error in fflush: %s", strerror (errno)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
544 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
545 close (mbfi); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
546 return (1); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
547 } |
| 120 | 548 } |
| 549 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
550 /* On AFS, a call to write only modifies the file in the local |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
551 * workstation's AFS cache. The changes are not written to the server |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
552 * until a call to fsync or close is made. Users with AFS home |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
553 * directories have lost mail when over quota because these checks were |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
554 * not made in previous versions of movemail. */ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
555 |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
9490
diff
changeset
|
556 #ifdef BSD |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
557 if (fsync (mbfi) < 0) |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
558 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
559 error ("Error in fsync: %s", strerror (errno)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
560 return (1); |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
561 } |
|
9491
dd3b83e4ceb0
Eliminate some -Wall warnings.
David J. MacKenzie <djm@gnu.org>
parents:
9490
diff
changeset
|
562 #endif |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
563 |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
564 if (close (mbfi) == -1) |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
565 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
566 error ("Error in close: %s", strerror (errno)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
567 return (1); |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
568 } |
|
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
569 |
| 120 | 570 for (i = 1; i <= nmsgs; i++) |
| 571 { | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
572 if (pop_delete (server, i)) |
| 120 | 573 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
574 error (pop_error); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
575 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
576 return (1); |
| 23 | 577 } |
| 578 } | |
| 579 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
580 if (pop_quit (server)) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
581 { |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
582 error (pop_error); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
583 return (1); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
584 } |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
585 |
|
447
2e226dcdaf0f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
351
diff
changeset
|
586 return (0); |
| 23 | 587 } |
| 588 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
589 pop_retr (server, msgno, action, arg) |
|
9630
5410efcb7b6e
PopServer renamed to popserver throughout.
Richard M. Stallman <rms@gnu.org>
parents:
9612
diff
changeset
|
590 popserver server; |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
591 int (*action)(); |
| 23 | 592 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
593 extern char *strerror (); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
594 char *line; |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
595 int ret; |
| 23 | 596 |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
597 if (pop_retrieve_first (server, msgno, &line)) |
| 120 | 598 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
599 strncpy (Errmsg, pop_error, sizeof (Errmsg)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
600 Errmsg[sizeof (Errmsg)-1] = '\0'; |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
601 return (NOTOK); |
| 23 | 602 } |
| 603 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
604 while (! (ret = pop_retrieve_next (server, &line))) |
| 120 | 605 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
606 if (! line) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
607 break; |
| 23 | 608 |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
609 if ((*action)(line, arg) != OK) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
610 { |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
611 strcpy (Errmsg, strerror (errno)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
612 pop_close (server); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
613 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
614 } |
| 23 | 615 } |
| 616 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
617 if (ret) |
| 120 | 618 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
619 strncpy (Errmsg, pop_error, sizeof (Errmsg)); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
620 Errmsg[sizeof (Errmsg)-1] = '\0'; |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
621 return (NOTOK); |
| 23 | 622 } |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
623 |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
624 return (OK); |
| 23 | 625 } |
| 626 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
627 /* Do this as a macro instead of using strcmp to save on execution time. */ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
628 #define IS_FROM_LINE(a) ((a[0] == 'F') \ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
629 && (a[1] == 'r') \ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
630 && (a[2] == 'o') \ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
631 && (a[3] == 'm') \ |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
632 && (a[4] == ' ')) |
| 23 | 633 |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
634 int |
| 120 | 635 mbx_write (line, mbf) |
| 636 char *line; | |
| 637 FILE *mbf; | |
| 23 | 638 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
639 if (IS_FROM_LINE (line)) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
640 { |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
641 if (fputc ('>', mbf) == EOF) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
642 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
643 } |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
644 if (fputs (line, mbf) == EOF) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
645 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
646 if (fputc (0x0a, mbf) == EOF) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
647 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
648 return (OK); |
| 23 | 649 } |
| 650 | |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
651 int |
| 120 | 652 mbx_delimit_begin (mbf) |
| 653 FILE *mbf; | |
| 23 | 654 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
655 if (fputs ("\f\n0, unseen,,\n", mbf) == EOF) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
656 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
657 return (OK); |
| 23 | 658 } |
| 659 | |
| 120 | 660 mbx_delimit_end (mbf) |
| 661 FILE *mbf; | |
| 23 | 662 { |
|
9157
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
663 if (putc ('\037', mbf) == EOF) |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
664 return (NOTOK); |
|
29f4cce05fa5
Improve POP code, move most of it into a separate file.
Richard M. Stallman <rms@gnu.org>
parents:
8449
diff
changeset
|
665 return (OK); |
| 23 | 666 } |
| 667 | |
| 668 #endif /* MAIL_USE_POP */ | |
|
5532
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
669 |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
670 #ifndef HAVE_STRERROR |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
671 char * |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
672 strerror (errnum) |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
673 int errnum; |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
674 { |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
675 extern char *sys_errlist[]; |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
676 extern int sys_nerr; |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
677 |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
678 if (errnum >= 0 && errnum < sys_nerr) |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
679 return sys_errlist[errnum]; |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
680 return (char *) "Unknown error"; |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
681 } |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
682 |
|
9c86c71e879d
[! HAVE_STRERROR] (strerror): Define the function.
Roland McGrath <roland@gnu.org>
parents:
5524
diff
changeset
|
683 #endif /* ! HAVE_STRERROR */ |
