X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fcomp.c;h=29ca1b77d0dad824ad6cad078031dc66b3281362;hb=21280aed16e7a74b4c578c328ef76e2a4649985c;hp=812f59643c536b93c722aca090d4075be943ad31;hpb=5ea646bd6534ab3b4d228c1c20998fdfa69ecfcf;p=mmh diff --git a/uip/comp.c b/uip/comp.c index 812f596..29ca1b7 100644 --- a/uip/comp.c +++ b/uip/comp.c @@ -49,6 +49,8 @@ static struct swit switches[] = { { "fcc mailbox", 0 }, #define WIDTHSW 17 { "width colums", 0 }, +#define SUBJECTSW 18 + { "subject text", 0 }, { NULL, 0 } }; @@ -77,22 +79,17 @@ static struct swit aqrul[] = { { NULL, 0 } }; -/* - * Add an item to a comma seperated list - */ - -static char *addlist(char *, char *); - int main (int argc, char **argv) { int use = NOUSE, nedit = 0, nwhat = 0; - int i, in = NOTOK, isdf = 0, out, dat[5], format_len; + int i, in = NOTOK, isdf = 0, out, dat[5], format_len = 0; int outputlinelen = OUTPUTLINELEN; char *cp, *cwd, *maildir, *dfolder = NULL; char *ed = NULL, *file = NULL, *form = NULL; char *folder = NULL, *msg = NULL, buf[BUFSIZ]; char *to = NULL, *from = NULL, *cc = NULL, *fcc = NULL, *dp; + char *subject = NULL; char drft[BUFSIZ], **argp, **arguments; struct msgs *mp = NULL; struct format *fmt; @@ -122,10 +119,10 @@ main (int argc, char **argv) snprintf (buf, sizeof(buf), "%s [+folder] [msg] [switches]", invo_name); print_help (buf, switches, 1); - done (1); + done (0); case VERSIONSW: print_version(invo_name); - done (1); + done (0); case EDITRSW: if (!(ed = *argp++) || *ed == '-') @@ -219,6 +216,12 @@ main (int argc, char **argv) if ((outputlinelen = atoi(cp)) < 10) adios (NULL, "impossible width %d", outputlinelen); continue; + + case SUBJECTSW: + if (!(cp = *argp++) || *cp == '-') + adios (NULL, "missing argument to %s", argp[-2]); + subject = cp; + continue; } } if (*cp == '+' || *cp == '@') { @@ -317,6 +320,11 @@ main (int argc, char **argv) if (cptr) cptr->c_text = fcc; } + if (subject) { + FINDCOMP(cptr, "subject"); + if (cptr) + cptr->c_text = subject; + } } try_it_again: @@ -398,20 +406,7 @@ edit_it: if (nwhat) done (0); - what_now (ed, nedit, use, drft, NULL, 0, NULLMP, NULL, 0, cwd); + what_now (ed, nedit, use, drft, NULL, 0, NULLMP, NULL, 0, cwd, 0); done (1); return 1; } - -/* - * Append an item to a comma separated list - */ - -static char * -addlist (char *list, char *item) -{ - if (list) - list = add (", ", list); - - return add (item, list); -}