2 ** mhmail.c -- simple mail program
4 ** This code is Copyright (c) 2002, by the authors of nmh. See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
10 #include <h/signals.h>
14 static struct swit switches[] = {
18 { "cc addrs ...", 0 },
22 { "subject text", 0 },
34 static char tmpfil[BUFSIZ];
39 static RETSIGTYPE intrser(int);
43 main(int argc, char **argv)
46 int status, i, iscc = 0, nvec;
47 int queued = 0, resent = 0, somebody;
48 char *cp, *tolist = NULL, *cclist = NULL, *subject = NULL;
49 char *from = NULL, *body = NULL, **argp, **arguments;
50 char *vec[5], buf[BUFSIZ];
55 setlocale(LC_ALL, "");
57 invo_name = mhbasename(argv[0]);
59 /* foil search of user profile/context */
60 if (context_foil(NULL) == -1)
63 /* If no arguments, just incorporate new mail */
65 execlp(incproc, mhbasename(incproc), NULL);
66 adios(incproc, "unable to exec");
69 arguments = getarguments(invo_name, argc, argv, 0);
72 while ((cp = *argp++)) {
74 switch (smatch(++cp, switches)) {
76 ambigsw(cp, switches);
79 adios(NULL, "-%s unknown", cp);
82 snprintf(buf, sizeof(buf),
83 "%s [addrs ... [switches]]",
85 print_help(buf, switches, 0);
88 print_version(invo_name);
92 if (!(from = *argp++) || *from == '-')
93 adios(NULL, "missing argument to %s",
98 if (!(body = *argp++) || *body == '-')
99 adios(NULL, "missing argument to %s",
108 if (!(subject = *argp++) || *subject == '-')
109 adios(NULL, "missing argument to %s",
123 cclist = cclist ? add(cp, add(", ", cclist)) :
126 tolist = tolist ? add(cp, add(", ", tolist)) :
131 adios(NULL, "usage: %s addrs ... [switches]", invo_name);
133 tfile = m_mktemp2(NULL, invo_name, NULL, &out);
135 adios("mhmail", "unable to create temporary file");
137 strncpy(tmpfil, tfile, sizeof(tmpfil));
139 SIGNAL2(SIGINT, intrser);
141 fprintf(out, "%sTo: %s\n", resent ? "Resent-" : "", tolist);
143 fprintf(out, "%sCc: %s\n", resent ? "Resent-" : "", cclist);
145 fprintf(out, "%sSubject: %s\n", resent ? "Resent-" : "", subject);
147 fprintf(out, "%sFrom: %s\n", resent ? "Resent-" : "", from);
152 fprintf(out, "%s", body);
153 if (*body && *(body + strlen(body) - 1) != '\n')
156 for (somebody = 0; (i = fread(buf, sizeof(*buf), sizeof(buf),
157 stdin)) > 0; somebody++)
158 if (fwrite(buf, sizeof(*buf), i, out) != i)
159 adios(tmpfil, "error writing");
168 vec[nvec++] = mhbasename(postproc);
169 vec[nvec++] = tmpfil;
171 vec[nvec++] = "-dist";
173 vec[nvec++] = "-queued";
176 for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
179 if (child_id == NOTOK) {
180 /* report failure and then send it */
181 adios(NULL, "unable to fork");
182 } else if (child_id) {
184 if ((status = pidXwait(child_id, postproc))) {
185 fprintf(stderr, "Letter saved in dead.letter\n");
186 execl("/bin/mv", "mv", tmpfil, "dead.letter", NULL);
187 execl("/usr/bin/mv", "mv", tmpfil, "dead.letter",
193 done(status ? 1 : 0);
196 execvp(postproc, vec);
197 fprintf(stderr, "unable to exec ");
202 return 0; /* dead code to satisfy the compiler */
209 #ifndef RELIABLE_SIGNALS
215 done(i != 0 ? 1 : 0);