X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fsend.c;h=c8b77f7a547caf74aa26a48eec2caf99442ae674;hb=fecd5d34f65597a4dfa16aeabea7d74b191532c3;hp=ec81aaa2eb58d2f822c68b2ffc52759f26bf55ca;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/uip/send.c b/uip/send.c index ec81aaa..c8b77f7 100644 --- a/uip/send.c +++ b/uip/send.c @@ -2,8 +2,6 @@ /* * send.c -- send a composed message * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -15,12 +13,6 @@ #include -#ifndef CYRUS_SASL -# define SASLminc(a) (a) -#else /* CYRUS_SASL */ -# define SASLminc(a) 0 -#endif /* CYRUS_SASL */ - static struct swit switches[] = { #define ALIASW 0 { "alias aliasfile", 0 }, @@ -93,15 +85,15 @@ static struct swit switches[] = { #define CLIESW 34 { "client host", -6 }, #define SERVSW 35 - { "server host", -6 }, + { "server host", 6 }, #define SNOOPSW 36 - { "snoop", -5 }, -#define SASLSW 37 - { "sasl", SASLminc(-4) }, -#define SASLMECHSW 38 - { "saslmech", SASLminc(-5) }, -#define USERSW 39 - { "user", SASLminc(-4) }, + { "snoop", 5 }, +#define ATTACHSW 40 + { "attach", 6 }, +#define ATTACHFORMATSW 41 + { "attachformat", 7 }, +#define PORTSW 42 + { "port server-port-name/number" , 4 }, { NULL, 0 } }; @@ -127,7 +119,6 @@ extern char *altmsg; /* .. */ extern char *annotext; extern char *distfile; -extern int errno; int main (int argc, char **argv) @@ -140,6 +131,8 @@ main (int argc, char **argv) char *msgs[MAXARGS], *vec[MAXARGS]; struct msgs *mp; struct stat st; + char *attach = (char *)0; /* header field name for attachments */ + int attachformat = 0; /* mhbuild format specifier for attachments */ #ifdef UCI FILE *fp; #endif /* UCI */ @@ -257,7 +250,6 @@ main (int argc, char **argv) case SENDSW: case SOMLSW: case SNOOPSW: - case SASLSW: vec[vecp++] = --cp; continue; @@ -266,13 +258,32 @@ main (int argc, char **argv) case WIDTHSW: case CLIESW: case SERVSW: - case SASLMECHSW: - case USERSW: + case PORTSW: vec[vecp++] = --cp; if (!(cp = *argp++) || *cp == '-') adios (NULL, "missing argument to %s", argp[-2]); vec[vecp++] = cp; continue; + + case ATTACHSW: + if (!(attach = *argp++) || *attach == '-') + adios (NULL, "missing argument to %s", argp[-2]); + continue; + + case ATTACHFORMATSW: + if (! *argp || **argp == '-') + adios (NULL, "missing argument to %s", argp[-1]); + else { + attachformat = atoi (*argp); + if (attachformat < 0 || + attachformat > ATTACHFORMATS - 1) { + advise (NULL, "unsupported attachformat %d", + attachformat); + continue; + } + } + ++argp; + continue; } } else { msgs[msgp++] = cp; @@ -395,7 +406,7 @@ go_to_it: && (distsw = atoi (cp)) && altmsg) { vec[vecp++] = "-dist"; - distfile = getcpy (m_scratch (altmsg, invo_name)); + distfile = getcpy (m_mktemp2 (altmsg, invo_name, NULL, NULL)); if (link (altmsg, distfile) == NOTOK) { if (errno != EXDEV #ifdef EISREMOTE @@ -404,7 +415,7 @@ go_to_it: ) adios (distfile, "unable to link %s to", altmsg); free (distfile); - distfile = getcpy (m_tmpfil (invo_name)); + distfile = getcpy (m_mktemp2(NULL, invo_name, NULL, NULL)); { int in, out; struct stat st; @@ -436,7 +447,8 @@ go_to_it: closefds (3); for (msgnum = 0; msgnum < msgp; msgnum++) { - switch (sendsbr (vec, vecp, msgs[msgnum], &st, 1)) { + switch (sendsbr (vec, vecp, msgs[msgnum], &st, 1, attach, + attachformat)) { case DONE: done (++status); case NOTOK: @@ -447,5 +459,6 @@ go_to_it: } context_save (); /* save the context file */ - return done (status); + done (status); + return 1; }