]>
diplodocus.org Git - nmh/blob - uip/send.c
3 * send.c -- send a composed message
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.
17 # define SASLminc(a) (a)
18 #else /* CYRUS_SASL */
19 # define SASLminc(a) 0
20 #endif /* CYRUS_SASL */
23 # define TLSminc(a) (a)
24 #else /* TLS_SUPPORT */
26 #endif /* TLS_SUPPORT */
28 static struct swit switches
[] = {
30 { "alias aliasfile", 0 },
36 { "draftfolder +folder", 6 },
38 { "draftmessage msg", 6 },
40 { "nodraftfolder", 0 },
42 { "filter filterfile", 0 },
66 { "split seconds", 0 },
80 { "width columns", 0 },
86 { "dashstuffing", -12 },
87 #define NBITSTUFFSW 29
88 { "nodashstuffing", -14 },
98 { "client host", -6 },
100 { "server host", 6 },
104 { "sasl", SASLminc(4) },
105 #define SASLMECHSW 38
106 { "saslmech mechanism", SASLminc(-5) },
108 { "user username", SASLminc(-4) },
111 #define ATTACHFORMATSW 41
112 { "attachformat", 7 },
114 { "port server-port-name/number" , 4 },
116 { "tls", TLSminc(-3) },
120 static struct swit anyl
[] = {
130 extern int debugsw
; /* from sendsbr.c */
138 extern char *altmsg
; /* .. */
139 extern char *annotext
;
140 extern char *distfile
;
144 main (int argc
, char **argv
)
146 int msgp
= 0, distsw
= 0, vecp
= 1;
147 int isdf
= 0, mime
= 0;
149 char *cp
, *dfolder
= NULL
, *maildir
= NULL
;
150 char buf
[BUFSIZ
], **ap
, **argp
, **arguments
;
151 char *msgs
[MAXARGS
], *vec
[MAXARGS
];
154 char *attach
= (char *)0; /* header field name for attachments */
155 int attachformat
= 0; /* mhbuild format specifier for attachments */
158 setlocale(LC_ALL
, "");
160 invo_name
= r1bindex (argv
[0], '/');
162 /* read user profile/context */
165 arguments
= getarguments (invo_name
, argc
, argv
, 1);
168 vec
[vecp
++] = "-library";
169 vec
[vecp
++] = getcpy (m_maildir (""));
171 if ((cp
= context_find ("fileproc"))) {
172 vec
[vecp
++] = "-fileproc";
176 if ((cp
= context_find ("mhlproc"))) {
177 vec
[vecp
++] = "-mhlproc";
181 while ((cp
= *argp
++)) {
183 switch (smatch (++cp
, switches
)) {
185 ambigsw (cp
, switches
);
188 adios (NULL
, "-%s unknown\n", cp
);
191 snprintf (buf
, sizeof(buf
), "%s [file] [switches]", invo_name
);
192 print_help (buf
, switches
, 1);
195 print_version(invo_name
);
199 msgs
[msgp
++] = draft
;
204 adios (NULL
, "only one draft folder at a time!");
205 if (!(cp
= *argp
++) || *cp
== '-')
206 adios (NULL
, "missing argument to %s", argp
[-2]);
207 dfolder
= path (*cp
== '+' || *cp
== '@' ? cp
+ 1 : cp
,
208 *cp
!= '@' ? TFOLDER
: TSUBCWF
);
211 if (!(cp
= *argp
++) || *cp
== '-')
212 adios (NULL
, "missing argument to %s", argp
[-2]);
228 if (!(cp
= *argp
++) || sscanf (cp
, "%d", &splitsw
) != 1)
229 adios (NULL
, "missing argument to %s", argp
[-2]);
265 debugsw
++; /* fall */
294 if (!(cp
= *argp
++) || *cp
== '-')
295 adios (NULL
, "missing argument to %s", argp
[-2]);
300 if (!(attach
= *argp
++) || *attach
== '-')
301 adios (NULL
, "missing argument to %s", argp
[-2]);
305 if (! *argp
|| **argp
== '-')
306 adios (NULL
, "missing argument to %s", argp
[-1]);
308 attachformat
= atoi (*argp
);
309 if (attachformat
< 0 ||
310 attachformat
> ATTACHFORMATS
- 1) {
311 advise (NULL
, "unsupported attachformat %d",
325 * check for "Aliasfile:" profile entry
327 if ((cp
= context_find ("Aliasfile"))) {
330 for (ap
= brkstring(dp
= getcpy(cp
), " ", "\n"); ap
&& *ap
; ap
++) {
331 vec
[vecp
++] = "-alias";
336 if (dfolder
== NULL
) {
339 if ((cp
= getenv ("mhdraft")) && *cp
) {
344 msgs
[msgp
++] = getcpy (m_draft (NULL
, NULL
, 1, &isdf
));
345 if (stat (msgs
[0], &st
) == NOTOK
)
346 adios (msgs
[0], "unable to stat draft file");
347 cp
= concat ("Use \"", msgs
[0], "\"? ", NULL
);
348 for (status
= LISTDSW
; status
!= YESW
;) {
349 if (!(argp
= getans (cp
, anyl
)))
351 switch (status
= smatch (*argp
, anyl
)) {
357 showfile (++argp
, msgs
[0]);
360 advise (NULL
, "say what?");
365 for (msgnum
= 0; msgnum
< msgp
; msgnum
++)
366 msgs
[msgnum
] = getcpy (m_maildir (msgs
[msgnum
]));
369 if (!context_find ("path"))
370 free (path ("./", TFOLDER
));
373 msgs
[msgp
++] = "cur";
374 maildir
= m_maildir (dfolder
);
376 if (chdir (maildir
) == NOTOK
)
377 adios (maildir
, "unable to change directory to");
379 /* read folder and create message structure */
380 if (!(mp
= folder_read (dfolder
)))
381 adios (NULL
, "unable to read folder %s", dfolder
);
383 /* check for empty folder */
385 adios (NULL
, "no messages in %s", dfolder
);
387 /* parse all the message ranges/sequences and set SELECTED */
388 for (msgnum
= 0; msgnum
< msgp
; msgnum
++)
389 if (!m_convert (mp
, msgs
[msgnum
]))
391 seq_setprev (mp
); /* set the previous-sequence */
393 for (msgp
= 0, msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
394 if (is_selected (mp
, msgnum
)) {
395 msgs
[msgp
++] = getcpy (m_name (msgnum
));
396 unset_exists (mp
, msgnum
);
400 mp
->msgflags
|= SEQMOD
;
408 if ((cp
= getenv ("SIGNATURE")) == NULL
|| *cp
== 0)
409 if ((cp
= context_find ("signature")) && *cp
)
410 m_putenv ("SIGNATURE", cp
);
412 for (msgnum
= 0; msgnum
< msgp
; msgnum
++)
413 if (stat (msgs
[msgnum
], &st
) == NOTOK
)
414 adios (msgs
[msgnum
], "unable to stat draft file");
416 if ((annotext
= getenv ("mhannotate")) == NULL
|| *annotext
== 0)
418 if (annotext
&& ((cp
= getenv ("mhinplace")) != NULL
&& *cp
!= 0))
420 if ((altmsg
= getenv ("mhaltmsg")) == NULL
|| *altmsg
== 0)
421 altmsg
= NULL
; /* used by dist interface - see below */
423 if ((cp
= getenv ("mhdist"))
425 && (distsw
= atoi (cp
))
427 vec
[vecp
++] = "-dist";
428 distfile
= getcpy (m_mktemp2 (altmsg
, invo_name
, NULL
, NULL
));
429 if (link (altmsg
, distfile
) == NOTOK
) {
432 && errno
!= EISREMOTE
433 #endif /* EISREMOTE */
435 adios (distfile
, "unable to link %s to", altmsg
);
437 distfile
= getcpy (m_mktemp2(NULL
, invo_name
, NULL
, NULL
));
442 if ((in
= open (altmsg
, O_RDONLY
)) == NOTOK
)
443 adios (altmsg
, "unable to open");
445 if ((out
= creat (distfile
, (int) st
.st_mode
& 0777)) == NOTOK
)
446 adios (distfile
, "unable to write");
447 cpydata (in
, out
, altmsg
, distfile
);
456 if (altmsg
== NULL
|| stat (altmsg
, &st
) == NOTOK
) {
465 vec
[0] = r1bindex (postproc
, '/');
468 for (msgnum
= 0; msgnum
< msgp
; msgnum
++) {
469 switch (sendsbr (vec
, vecp
, msgs
[msgnum
], &st
, 1, attach
,
480 context_save (); /* save the context file */