⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 repl.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/* repl.c - reply to a message */#ifndef	lintstatic char ident[] = "@(#)$Id: repl.c,v 1.4 90/11/25 19:05:37 sharpe Exp $";#endif	lint#include "../h/mh.h"#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#ifdef X400#include <sys/file.h>#endif X400/*  */static struct swit switches[] = {#define	ANNOSW	0    "annotate", 0,#define	NANNOSW	1    "noannotate", 0,#define	CCSW	2    "cc type", 0,#define	NCCSW	3    "nocc type", 0,#define	DFOLDSW	4    "draftfolder +folder", 0,#define	DMSGSW	5    "draftmessage msg", 0,#define	NDFLDSW	6    "nodraftfolder", 0,#define	EDITRSW	7    "editor editor", 0,#define	NEDITSW	8    "noedit", 0,#define	FCCSW	9    "fcc folder", 0,#define	FILTSW	10    "filter filterfile", 0,#define	FORMSW	11    "form formfile", 0,#define	FRMTSW	12    "format", -5,#define	NFRMTSW	13    "noformat", -7,#define	INPLSW	14    "inplace", 0,#define	NINPLSW	15    "noinplace", 0,#define	QURYSW	16    "query", 0,#define	NQURYSW	17    "noquery", 0,#define	WHATSW	18    "whatnowproc program", 0,#define	NWHATSW	19    "nowhatnowproc", 0,#define	WIDTHSW	20    "width columns", 0,#define	HELPSW	21    "help", 4,#define	FILESW	22    "file file", -4,		/* interface from msh */#ifdef	MHE#define	BILDSW	23    "build", -5,		/* interface from mhe */#endif	MHE#ifdef X400#define TMPLTSW 24    "template", 0,#endif X400    NULL, NULL};static struct swit ccswitches[] = {#define	CTOSW	0    "to", 0,#define	CCCSW	1    "cc", 0,#define	CMESW	2    "me", 0,#define	CALSW	3    "all", 0,    NULL, NULL};/*  */static struct swit aqrnl[] = {#define	NOSW	0    "quit", 0,#define	YESW	1    "replace", 0,#define	LISTDSW	2    "list", 0,#define	REFILSW	3    "refile +folder", 0,#define NEWSW	4    "new", 0,    NULL, NULL};static struct swit aqrl[] = {    "quit", 0,    "replace", 0,    "list", 0,    "refile +folder", 0,    NULL, NULL};/*  */#ifndef	ATHENA#define	CCDFLT	1#else	ATHENA#define	CCDFLT	0#endif	ATHENAshort   ccto = CCDFLT;		/* global for replsbr */short   cccc = CCDFLT;short   ccme = CCDFLT;short   format = 1;short   outputlinelen = OUTPUTLINELEN;short   querysw = 0;char   *fcc = NULL;		/* global for replsbr */char   *filter = NULL;char   *form = NULL;/*  *//* ARGSUSED */main (argc, argv)int     argc;char   *argv[];{    int	    i,	    isdf = 0,	    anot = 0,	    inplace = 0,#ifdef	MHE	    buildsw = 0,#endif	MHE#ifdef X400            tmplt = 0,#endif X400	    nedit = 0,	    nwhat = 0;    char   *cp,	   *cwd,	   *dp,           *maildir,           *file = NULL,           *folder = NULL,           *msg = NULL,	   *dfolder = NULL,	   *dmsg = NULL,	   *ed = NULL,#ifdef X400           *ted = NULL,#endif X400	    drft[BUFSIZ],            buf[100],          **ap,          **argp,           *arguments[MAXARGS];    struct msgs *mp = NULL;    struct stat st;    FILE        *in;    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] [msg] [switches]",			invo_name);		    help (buf, switches);		    done (0);		case ANNOSW: 		    anot++;		    continue;		case NANNOSW: 		    anot = 0;		    continue;		case CCSW: 		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    docc (cp, 1);		    continue;		case NCCSW: 		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    docc (cp, 0);		    continue;		case EDITRSW: 		    if (!(ed = *argp++) || *ed == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    nedit = 0;		    continue;		case NEDITSW:		    nedit++;		    continue;		    		case WHATSW: 		    if (!(whatnowproc = *argp++) || *whatnowproc == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    nwhat = 0;		    continue;#ifdef	MHE		case BILDSW: 		    buildsw++;	/* fall... */#endif	MHE		case NWHATSW: 		    nwhat++;		    continue;		case FCCSW: 		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    dp = NULL;		    if (*cp == '@')			cp = dp = path (cp + 1, TSUBCWF);		    if (fcc)			fcc = add (", ", fcc);		    fcc = add (cp, fcc);		    if (dp)			free (dp);		    continue;		case FILESW: 		    if (file)			adios (NULLCP, "only one file at a time!");		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    file = path (cp, TFILE);		    continue;		case FILTSW:		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    filter = getcpy (libpath (cp));		    continue;		case FORMSW: 		    if (!(form = *argp++) || *form == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    continue;		case FRMTSW: 		    format++;		    continue;		case NFRMTSW: 		    format = 0;		    continue;		case INPLSW: 		    inplace++;		    continue;		case NINPLSW: 		    inplace = 0;		    continue;		case QURYSW: 		    querysw++;		    continue;		case NQURYSW: 		    querysw = 0;		    continue;		case WIDTHSW: 		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    if ((outputlinelen = atoi (cp)) < 10)			adios (NULLCP, "impossible width %d", outputlinelen);		    continue;		case DFOLDSW: 		    if (dfolder)			adios (NULLCP, "only one draft folder at a time!");		    if (!(cp = *argp++) || *cp == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    dfolder = path (*cp == '+' || *cp == '@' ? cp + 1 : cp,				    *cp != '@' ? TFOLDER : TSUBCWF);		    continue;		case DMSGSW:		    if (dmsg)			adios (NULLCP, "only one draft message at a time!");		    if (!(dmsg = *argp++) || *dmsg == '-')			adios (NULLCP, "missing argument to %s", argp[-2]);		    continue;		case NDFLDSW: 		    dfolder = NULL;		    isdf = NOTOK;		    continue;#ifdef X400                case TMPLTSW:		    cp = *(argp+1);                    if (cp && *(cp+1) != '-')                        ted = *argp++;                    ++tmplt;                    continue;#endif X400	    }	if (*cp == '+' || *cp == '@') {	    if (folder)		adios (NULLCP, "only one folder at a time!");	    else		folder = path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF);	}	else	    if (msg)		adios (NULLCP, "only one message at a time!");	    else		msg = cp;    }/*  */    cwd = getcpy (pwd ());    if (!m_find ("path"))	free (path ("./", TFOLDER));    if (file && (msg || folder))	adios (NULLCP, "can't mix files and folders/msgs");try_it_again: ;#ifndef MHE    (void) strcpy (drft, m_draft (dfolder, dmsg, NOUSE, &isdf));    if (stat (drft, &st) != NOTOK) {#else	MHE    (void) strcpy (drft, buildsw ? m_maildir ("reply")			  : m_draft (dfolder, NULLCP, NOUSE, &isdf));    if (!buildsw && stat (drft, &st) != NOTOK) {#endif	MHE	printf ("Draft \"%s\" exists (%ld bytes).", drft, st.st_size);	for (i = LISTDSW; i != YESW;) {	    if (!(argp = getans ("\nDisposition? ", isdf ? aqrnl : aqrl)))		done (1);	    switch (i = smatch (*argp, isdf ? aqrnl : aqrl)) {		case NOSW: 		    done (0);		case NEWSW: 		    dmsg = NULL;		    goto try_it_again;		case YESW: 		    break;		case LISTDSW: 		    (void) showfile (++argp, drft);		    break;		case REFILSW: 		    if (refile (++argp, drft) == 0)			i = YESW;		    break;		default: 		    advise (NULLCP, "say what?");		    break;	    }	}    }/*  */    if (file) {	anot = 0;	goto go_to_it;    }    if (!msg)	msg = "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);    if (!m_convert (mp, msg))	done (1);    m_setseq (mp);    if (mp -> numsel > 1)	adios (NULLCP, "only one message at a time!");    m_replace (pfolder, folder);    if (mp -> lowsel != mp -> curmsg)	m_setcur (mp, mp -> lowsel);    m_sync (mp);    m_update ();go_to_it: ;    msg = file ? file : getcpy (m_name (mp -> lowsel));    if ((in = fopen (msg, "r")) == NULL)	adios (msg, "unable to open");#ifdef X400    set_which_mts(in);#endif X400    replout (in, msg, drft);    (void) fclose (in);/* PJS: Invoking the template X400 ORname creation utility. */#ifdef X400    if (tmplt > 0) {    int	pid;    static char	*vecp[] = {	"template", "-editor","", "-draft","", (char *)NULL,    };/* If we have no template editor given on the command-line, try to find a * profile entry: if this fails, leave it to 'template' to decide. */	if (ted == (char *)NULL)	    ted = m_find("Template_Editor");/* PJS: Let 'template' decide the default editor...	if (ted == (char *)NULL)	    ted = getcpy("prompter");*/	if (ted != (char *)NULL)	    vecp[2] = ted;	if (drft != (char *)NULL)	    vecp[4] = drft;	pid = fork();	if (pid == 0) {	/* PJS: Child process: exec the template utility. */	    execv (vecp[0], vecp);	    execvp(vecp[0], vecp);	    fprintf(stderr,"Can't find template utility.\n");	    exit(1);	}	if (pid > 0)	/* PJS: Parent process: wait for template to finish. */	    wait((union wait *)0);    }#endif X400    if (nwhat)	done (0);    (void) m_whatnow (ed, nedit, NOUSE, drft, msg, 0, mp,	    anot ? "Replied" : NULLCP, inplace, cwd);    done (1);}/*  */docc (cp, ccflag)register char   *cp;int     ccflag;{    switch (smatch (cp, ccswitches)) {	case AMBIGSW: 	    ambigsw (cp, ccswitches);	    done (1);	case UNKWNSW: 	    adios (NULLCP, "-%scc %s unknown", ccflag ? "" : "no", cp);	case CTOSW: 	    ccto = ccflag;	    break;	case CCCSW: 	    cccc = ccflag;	    break;	case CMESW: 	    ccme = ccflag;	    break;	case CALSW: 	    ccto = cccc = ccme = ccflag;	    break;    }}#ifdef X400set_which_mts(msg_fp)FILE	*msg_fp;{    register int  state;    register char tmpbuf[BUFSIZ];    char          name[NAMESZ];    extern char   need_x400_me;    for (state = FLD;state == FLD || state == FLDPLUS;) {	state = m_getfld (state, name, tmpbuf, BUFSIZ, msg_fp);	switch (state) {	    case FLD: 	    case FLDPLUS: 		if (uleq(name, "X-mts"))		    if (uleq(trimcpy(tmpbuf), "x400"))			need_x400_me = 1;		while (state == FLDPLUS)		    state = m_getfld (state, name, tmpbuf, BUFSIZ, msg_fp);		break;	    case LENERR: 	    case FMTERR: 	    case BODY: 	    case FILEEOF:		break;	    default: 		adios (NULLCP, "m_getfld() returned %d", state);	}    }    rewind(msg_fp);}#endif X400

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -