]> diplodocus.org Git - nmh/blob - uip/send.c
Fix a bunch of tests for the mhbuild changes; still more to do.
[nmh] / uip / send.c
1
2 /*
3 * send.c -- send a composed message
4 *
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
8 */
9
10 #include <h/mh.h>
11 #include <fcntl.h>
12
13
14 #ifndef CYRUS_SASL
15 # define SASLminc(a) (a)
16 #else /* CYRUS_SASL */
17 # define SASLminc(a) 0
18 #endif /* CYRUS_SASL */
19
20 #ifndef TLS_SUPPORT
21 # define TLSminc(a) (a)
22 #else /* TLS_SUPPORT */
23 # define TLSminc(a) 0
24 #endif /* TLS_SUPPORT */
25
26 #define SEND_SWITCHES \
27 X("alias aliasfile", 0, ALIASW) \
28 X("debug", -5, DEBUGSW) \
29 X("draft", 0, DRAFTSW) \
30 X("draftfolder +folder", 6, DFOLDSW) \
31 X("draftmessage msg", 6, DMSGSW) \
32 X("nodraftfolder", 0, NDFLDSW) \
33 X("filter filterfile", 0, FILTSW) \
34 X("nofilter", 0, NFILTSW) \
35 X("format", 0, FRMTSW) \
36 X("noformat", 0, NFRMTSW) \
37 X("forward", 0, FORWSW) \
38 X("noforward", 0, NFORWSW) \
39 X("mime", 0, MIMESW) \
40 X("nomime", 0, NMIMESW) \
41 X("msgid", 0, MSGDSW) \
42 X("nomsgid", 0, NMSGDSW) \
43 X("push", 0, PUSHSW) \
44 X("nopush", 0, NPUSHSW) \
45 X("split seconds", 0, SPLITSW) \
46 X("unique", -6, UNIQSW) \
47 X("nounique", -8, NUNIQSW) \
48 X("verbose", 0, VERBSW) \
49 X("noverbose", 0, NVERBSW) \
50 X("watch", 0, WATCSW) \
51 X("nowatch", 0, NWATCSW) \
52 X("width columns", 0, WIDTHSW) \
53 X("version", 0, VERSIONSW) \
54 X("help", 0, HELPSW) \
55 X("dashstuffing", -12, BITSTUFFSW) \
56 X("nodashstuffing", -14, NBITSTUFFSW) \
57 X("client host", -6, CLIESW) \
58 X("server host", 6, SERVSW) \
59 X("snoop", 5, SNOOPSW) \
60 X("sasl", SASLminc(4), SASLSW) \
61 X("nosasl", SASLminc(-6), NOSASLSW) \
62 X("saslmaxssf", SASLminc(-10), SASLMXSSFSW) \
63 X("saslmech mechanism", SASLminc(-5), SASLMECHSW) \
64 X("user username", SASLminc(-4), USERSW) \
65 X("attach", 6, ATTACHSW) \
66 X("noattach", 0, NOATTACHSW) \
67 X("attachformat", 7, ATTACHFORMATSW) \
68 X("port server-port-name/number", 4, PORTSW) \
69 X("tls", TLSminc(-3), TLSSW) \
70 X("initialtls", TLSminc(-10), INITTLSSW) \
71 X("notls", TLSminc(-5), NTLSSW) \
72 X("mts smtp|sendmail/smtp|sendmail/pipe", 2, MTSSW) \
73 X("messageid localname|random", 2, MESSAGEIDSW) \
74
75 #define X(sw, minchars, id) id,
76 DEFINE_SWITCH_ENUM(SEND);
77 #undef X
78
79 #define X(sw, minchars, id) { sw, minchars, id },
80 DEFINE_SWITCH_ARRAY(SEND, switches);
81 #undef X
82
83 #define USE_SWITCHES \
84 X("no", 0, NOSW) \
85 X("yes", 0, YESW) \
86 X("list", 0, LISTDSW) \
87
88 #define X(sw, minchars, id) id,
89 DEFINE_SWITCH_ENUM(USE);
90 #undef X
91
92 #define X(sw, minchars, id) { sw, minchars, id },
93 DEFINE_SWITCH_ARRAY(USE, anyl);
94 #undef X
95
96 extern int debugsw; /* from sendsbr.c */
97 extern int forwsw;
98 extern int inplace;
99 extern int pushsw;
100 extern int splitsw;
101 extern int unique;
102 extern int verbsw;
103
104 extern char *altmsg; /* .. */
105 extern char *annotext;
106 extern char *distfile;
107
108
109 int
110 main (int argc, char **argv)
111 {
112 int msgp = 0, distsw = 0, vecp;
113 int isdf = 0, mime = 0;
114 int msgnum, status;
115 char *cp, *dfolder = NULL, *maildir = NULL;
116 char buf[BUFSIZ], **ap, **argp, **arguments, *program;
117 char *msgs[MAXARGS], **vec;
118 struct msgs *mp;
119 struct stat st;
120
121 #ifdef LOCALE
122 setlocale(LC_ALL, "");
123 #endif
124 invo_name = r1bindex (argv[0], '/');
125
126 /* read user profile/context */
127 context_read();
128
129 arguments = getarguments (invo_name, argc, argv, 1);
130 argp = arguments;
131
132 vec = argsplit(postproc, &program, &vecp);
133
134 vec[vecp++] = "-library";
135 vec[vecp++] = getcpy (m_maildir (""));
136
137 if ((cp = context_find ("fileproc"))) {
138 vec[vecp++] = "-fileproc";
139 vec[vecp++] = cp;
140 }
141
142 if ((cp = context_find ("mhlproc"))) {
143 vec[vecp++] = "-mhlproc";
144 vec[vecp++] = cp;
145 }
146
147 if ((cp = context_find ("credentials"))) {
148 /* post doesn't read context so need to pass credentials. */
149 vec[vecp++] = "-credentials";
150 vec[vecp++] = cp;
151 }
152
153 while ((cp = *argp++)) {
154 if (*cp == '-') {
155 switch (smatch (++cp, switches)) {
156 case AMBIGSW:
157 ambigsw (cp, switches);
158 done (1);
159 case UNKWNSW:
160 adios (NULL, "-%s unknown\n", cp);
161
162 case HELPSW:
163 snprintf (buf, sizeof(buf), "%s [file] [switches]", invo_name);
164 print_help (buf, switches, 1);
165 done (0);
166 case VERSIONSW:
167 print_version(invo_name);
168 done (0);
169
170 case DRAFTSW:
171 msgs[msgp++] = draft;
172 continue;
173
174 case DFOLDSW:
175 if (dfolder)
176 adios (NULL, "only one draft folder at a time!");
177 if (!(cp = *argp++) || *cp == '-')
178 adios (NULL, "missing argument to %s", argp[-2]);
179 dfolder = path (*cp == '+' || *cp == '@' ? cp + 1 : cp,
180 *cp != '@' ? TFOLDER : TSUBCWF);
181 continue;
182 case DMSGSW:
183 if (!(cp = *argp++) || *cp == '-')
184 adios (NULL, "missing argument to %s", argp[-2]);
185 msgs[msgp++] = cp;
186 continue;
187 case NDFLDSW:
188 dfolder = NULL;
189 isdf = NOTOK;
190 continue;
191
192 case PUSHSW:
193 pushsw++;
194 continue;
195 case NPUSHSW:
196 pushsw = 0;
197 continue;
198
199 case SPLITSW:
200 if (!(cp = *argp++) || sscanf (cp, "%d", &splitsw) != 1)
201 adios (NULL, "missing argument to %s", argp[-2]);
202 continue;
203
204 case UNIQSW:
205 unique++;
206 continue;
207 case NUNIQSW:
208 unique = 0;
209 continue;
210
211 case FORWSW:
212 forwsw++;
213 continue;
214 case NFORWSW:
215 forwsw = 0;
216 continue;
217
218 case VERBSW:
219 verbsw++;
220 vec[vecp++] = --cp;
221 continue;
222 case NVERBSW:
223 verbsw = 0;
224 vec[vecp++] = --cp;
225 continue;
226
227 case MIMESW:
228 mime++;
229 vec[vecp++] = --cp;
230 continue;
231 case NMIMESW:
232 mime = 0;
233 vec[vecp++] = --cp;
234 continue;
235
236 case DEBUGSW:
237 debugsw++; /* fall */
238 case NFILTSW:
239 case FRMTSW:
240 case NFRMTSW:
241 case BITSTUFFSW:
242 case NBITSTUFFSW:
243 case MSGDSW:
244 case NMSGDSW:
245 case WATCSW:
246 case NWATCSW:
247 case SNOOPSW:
248 case SASLSW:
249 case NOSASLSW:
250 case TLSSW:
251 case INITTLSSW:
252 case NTLSSW:
253 vec[vecp++] = --cp;
254 continue;
255
256 case ALIASW:
257 case FILTSW:
258 case WIDTHSW:
259 case CLIESW:
260 case SERVSW:
261 case SASLMECHSW:
262 case SASLMXSSFSW:
263 case USERSW:
264 case PORTSW:
265 case MTSSW:
266 case MESSAGEIDSW:
267 vec[vecp++] = --cp;
268 if (!(cp = *argp++) || *cp == '-')
269 adios (NULL, "missing argument to %s", argp[-2]);
270 vec[vecp++] = cp;
271 continue;
272
273 case ATTACHSW:
274 advise(NULL, "The -attach switch is deprecated");
275 continue;
276 case NOATTACHSW:
277 advise(NULL, "The -noattach switch is deprecated");
278 continue;
279
280 case ATTACHFORMATSW:
281 advise(NULL, "The -attachformat switch is deprecated");
282 continue;
283 }
284 } else {
285 msgs[msgp++] = cp;
286 }
287 }
288
289 /*
290 * check for "Aliasfile:" profile entry
291 */
292 if ((cp = context_find ("Aliasfile"))) {
293 char *dp = NULL;
294
295 for (ap = brkstring(dp = getcpy(cp), " ", "\n"); ap && *ap; ap++) {
296 vec[vecp++] = "-alias";
297 vec[vecp++] = *ap;
298 }
299 }
300
301 if (dfolder == NULL) {
302 if (msgp == 0) {
303 msgs[msgp++] = getcpy (m_draft (NULL, NULL, 1, &isdf));
304 if (stat (msgs[0], &st) == NOTOK)
305 adios (msgs[0], "unable to stat draft file");
306 cp = concat ("Use \"", msgs[0], "\"? ", NULL);
307 for (status = LISTDSW; status != YESW;) {
308 if (!(argp = getans (cp, anyl)))
309 done (1);
310 switch (status = smatch (*argp, anyl)) {
311 case NOSW:
312 done (0);
313 case YESW:
314 break;
315 case LISTDSW:
316 showfile (++argp, msgs[0]);
317 break;
318 default:
319 advise (NULL, "say what?");
320 break;
321 }
322 }
323 } else {
324 for (msgnum = 0; msgnum < msgp; msgnum++)
325 msgs[msgnum] = getcpy (m_maildir (msgs[msgnum]));
326 }
327 } else {
328 if (!context_find ("path"))
329 free (path ("./", TFOLDER));
330
331 if (!msgp)
332 msgs[msgp++] = "cur";
333 maildir = m_maildir (dfolder);
334
335 if (chdir (maildir) == NOTOK)
336 adios (maildir, "unable to change directory to");
337
338 /* read folder and create message structure */
339 if (!(mp = folder_read (dfolder, 1)))
340 adios (NULL, "unable to read folder %s", dfolder);
341
342 /* check for empty folder */
343 if (mp->nummsg == 0)
344 adios (NULL, "no messages in %s", dfolder);
345
346 /* parse all the message ranges/sequences and set SELECTED */
347 for (msgnum = 0; msgnum < msgp; msgnum++)
348 if (!m_convert (mp, msgs[msgnum]))
349 done (1);
350 seq_setprev (mp); /* set the previous-sequence */
351
352 for (msgp = 0, msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
353 if (is_selected (mp, msgnum)) {
354 msgs[msgp++] = getcpy (m_name (msgnum));
355 unset_exists (mp, msgnum);
356 }
357 }
358
359 mp->msgflags |= SEQMOD;
360 seq_save (mp);
361 }
362
363 #ifdef WHATNOW
364 go_to_it:
365 #endif /* WHATNOW */
366
367 if ((cp = getenv ("SIGNATURE")) == NULL || *cp == 0)
368 if ((cp = context_find ("signature")) && *cp)
369 m_putenv ("SIGNATURE", cp);
370
371 for (msgnum = 0; msgnum < msgp; msgnum++)
372 if (stat (msgs[msgnum], &st) == NOTOK)
373 adios (msgs[msgnum], "unable to stat draft file");
374
375 if ((annotext = getenv ("mhannotate")) == NULL || *annotext == 0)
376 annotext = NULL;
377 if (annotext && ((cp = getenv ("mhinplace")) != NULL && *cp != 0))
378 inplace = atoi (cp);
379 if ((altmsg = getenv ("mhaltmsg")) == NULL || *altmsg == 0)
380 altmsg = NULL; /* used by dist interface - see below */
381
382 if ((cp = getenv ("mhdist"))
383 && *cp
384 && (distsw = atoi (cp))
385 && altmsg) {
386 vec[vecp++] = "-dist";
387 distfile = getcpy (m_mktemp2 (altmsg, invo_name, NULL, NULL));
388 unlink(distfile);
389 if (link (altmsg, distfile) == NOTOK) {
390 /* Cygwin with FAT32 filesystem produces EPERM. */
391 if (errno != EXDEV && errno != EPERM
392 #ifdef EISREMOTE
393 && errno != EISREMOTE
394 #endif /* EISREMOTE */
395 )
396 adios (distfile, "unable to link %s to", altmsg);
397 free (distfile);
398 distfile = getcpy (m_mktemp2(NULL, invo_name, NULL, NULL));
399 {
400 int in, out;
401 struct stat st;
402
403 if ((in = open (altmsg, O_RDONLY)) == NOTOK)
404 adios (altmsg, "unable to open");
405 fstat(in, &st);
406 if ((out = creat (distfile, (int) st.st_mode & 0777)) == NOTOK)
407 adios (distfile, "unable to write");
408 cpydata (in, out, altmsg, distfile);
409 close (in);
410 close (out);
411 }
412 }
413 } else {
414 distfile = NULL;
415 }
416
417 if (altmsg == NULL || stat (altmsg, &st) == NOTOK) {
418 st.st_mtime = 0;
419 st.st_dev = 0;
420 st.st_ino = 0;
421 }
422 if (pushsw)
423 push ();
424
425 status = 0;
426 closefds (3);
427
428 for (msgnum = 0; msgnum < msgp; msgnum++) {
429 switch (sendsbr (vec, vecp, program, msgs[msgnum], &st, 1)) {
430 case DONE:
431 done (++status);
432 case NOTOK:
433 status++; /* fall */
434 case OK:
435 break;
436 }
437 }
438
439 context_save (); /* save the context file */
440 done (status);
441 return 1;
442 }