head 2.6; access; symbols; locks; strict; comment @ * @; 2.6 date 92.12.15.00.20.22; author jromine; state Exp; branches; next 2.5; 2.5 date 92.11.04.00.38.29; author jromine; state Exp; branches; next 2.4; 2.4 date 92.01.31.22.07.02; author jromine; state Exp; branches; next 2.3; 2.3 date 90.04.05.15.35.14; author sources; state Exp; branches; next 2.2; 2.2 date 90.04.05.14.54.59; author sources; state Exp; branches; next 2.1; 2.1 date 90.02.06.13.15.50; author sources; state Exp; branches; next 2.0; 2.0 date 89.11.17.15.57.49; author sources; state Exp; branches; next 1.2; 1.2 date 88.06.30.08.28.24; author sources; state Exp; branches; next 1.1; 1.1 date 88.06.30.08.27.05; author sources; state Exp; branches; next ; desc @Original with no mods. @ 2.6 log @endif sugar @ text @/* anno.c - annotate messages */ #ifndef lint static char ident[] = "@@(#)$Id: anno.c,v 2.5 1992/11/04 00:38:29 jromine Exp jromine $"; #endif /* lint */ #include "../h/mh.h" #include #include #ifdef LOCALE #include #endif static make_comp(); /* */ static struct swit switches[] = { #define COMPSW 0 "component field", 0, #define INPLSW 1 "inplace", 0, #define NINPLSW 2 "noinplace", 0, #define DATESW 3 "date", 0, #define NDATESW 4 "nodate", 0, #define TEXTSW 5 "text body", 0, #define HELPSW 6 "help", 4, NULL, 0 }; /* */ /* ARGSUSED */ main (argc, argv) int argc; char **argv; { int inplace = 0, datesw = 1, msgp = 0, msgnum; char *cp, *maildir, *comp = NULL, *text = NULL, *folder = NULL, buf[100], **ap, **argp, *arguments[MAXARGS], *msgs[MAXARGS]; struct msgs *mp; #ifdef LOCALE setlocale(LC_ALL, ""); #endif invo_name = r1bindex (argv[0], '/'); if ((cp = m_find (invo_name)) != NULL) { ap = brkstring (cp = getcpy (cp), " ", "\n"); ap = copyip (ap, arguments); } else ap = arguments; (void) copyip (argv + 1, ap); argp = arguments; /* */ while (cp = *argp++) { if (*cp == '-') switch (smatch (++cp, switches)) { case AMBIGSW: ambigsw (cp, switches); done (1); case UNKWNSW: adios (NULLCP, "-%s unknown", cp); case HELPSW: (void) sprintf (buf, "%s [+folder] [msgs] [switches]", invo_name); help (buf, switches); done (1); case COMPSW: if (comp) adios (NULLCP, "only one component at a time!"); if (!(comp = *argp++) || *comp == '-') adios (NULLCP, "missing argument to %s", argp[-2]); continue; case DATESW: datesw++; continue; case NDATESW: datesw = 0; continue; case INPLSW: inplace++; continue; case NINPLSW: inplace = 0; continue; case TEXTSW: if (text) adios (NULLCP, "only one body at a time!"); if (!(text = *argp++) || *text == '-') adios (NULLCP, "missing argument to %s", argp[-2]); continue; } if (*cp == '+' || *cp == '@@') { if (folder) adios (NULLCP, "only one folder at a time!"); else folder = path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF); } else msgs[msgp++] = cp; } #ifdef UCI if (strcmp(invo_name, "fanno") == 0) /* ugh! */ datesw = 0; #endif /* UCI */ /* */ if (!m_find ("path")) free (path ("./", TFOLDER)); if (!msgp) msgs[msgp++] = "cur"; if (!folder) folder = m_getfolder (); maildir = m_maildir (folder); if (chdir (maildir) == NOTOK) adios (maildir, "unable to change directory to"); if (!(mp = m_gmsg (folder))) adios (NULLCP, "unable to read folder %s", folder); if (mp -> hghmsg == 0) adios (NULLCP, "no messages in %s", folder); for (msgnum = 0; msgnum < msgp; msgnum++) if (!m_convert (mp, msgs[msgnum])) done (1); make_comp (&comp); for (msgnum = mp -> lowsel; msgnum <= mp -> hghsel; msgnum++) if (mp -> msgstats[msgnum] & SELECTED) (void) annotate (m_name (msgnum), comp, text, inplace, datesw); m_replace (pfolder, folder); if (mp -> lowsel != mp -> curmsg) m_setcur (mp, mp -> lowsel); m_sync (mp); m_update (); done (0); } /* */ static make_comp (ap) register char **ap; { register char *cp; char buffer[BUFSIZ]; if (*ap == NULL) { printf ("Enter component name: "); (void) fflush (stdout); if (fgets (buffer, sizeof buffer, stdin) == NULL) done (1); *ap = trimcpy (buffer); } if ((cp = *ap + strlen (*ap) - 1) > *ap && *cp == ':') *cp = 0; if (strlen (*ap) == 0) adios (NULLCP, "null component name"); if (**ap == '-') adios (NULLCP, "invalid component name %s", *ap); if (strlen (*ap) >= NAMESZ) adios (NULLCP, "too large component name %s", *ap); for (cp = *ap; *cp; cp++) if (!isalnum (*cp) && *cp != '-') adios (NULLCP, "invalid component name %s", *ap); } @ 2.5 log @putenv -> m_putenv @ text @d3 2 a4 2 static char ident[] = "@@(#)$Id: anno.c,v 2.4 1992/01/31 22:07:02 jromine Exp jromine $"; #endif lint d132 1 a132 1 #endif UCI @ 2.4 log @kerberos @ text @d3 1 a3 1 static char ident[] = "@@(#)$Id: anno.c,v 2.3 1990/04/05 15:35:14 sources Exp jromine $"; d9 3 d63 3 @ 2.3 log @add ID @ text @d3 1 a3 1 static char ident[] = "@@(#)$Id:$"; d33 1 a33 1 NULL, NULL d182 1 a182 1 *cp = NULL; @ 2.2 log @add ID @ text @d3 1 a3 1 static char ident[] = "@@(#)$Id:"; @ 2.1 log @ANSI Compilance @ text @d2 3 @ 2.0 log @changes for SUN40 shared libraries and NNTP under bbc @ text @d7 1 @ 1.2 log @Added the code for fanno. Gary @ text @d18 6 a23 1 #define TEXTSW 3 d26 1 a26 1 #define HELPSW 4 a31 4 #ifdef UCI extern int fanno; #endif UCI d41 1 d89 7 d120 2 a121 1 if (strcmp(invo_name,"fanno") == 0) fanno = 1; d149 1 a149 1 (void) annotate (m_name (msgnum), comp, text, inplace); @ 1.1 log @Initial revision @ text @d27 4 d110 3 @