]>
diplodocus.org Git - nmh/blob - uip/mhmail.c
3 * mhmail.c -- simple mail program
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
11 #include <h/signals.h>
15 static struct swit switches
[] = {
19 { "cc addrs ...", 0 },
23 { "subject text", 0 },
35 static char tmpfil
[BUFSIZ
];
40 static RETSIGTYPE
intrser (int);
44 main (int argc
, char **argv
)
47 int status
, i
, iscc
= 0, nvec
;
48 int queued
= 0, resent
= 0, somebody
;
49 char *cp
, *tolist
= NULL
, *cclist
= NULL
, *subject
= NULL
;
50 char *from
= NULL
, *body
= NULL
, **argp
, **arguments
;
51 char *vec
[5], buf
[BUFSIZ
];
56 setlocale(LC_ALL
, "");
58 invo_name
= r1bindex (argv
[0], '/');
60 /* foil search of user profile/context */
61 if (context_foil (NULL
) == -1)
64 /* If no arguments, just incorporate new mail */
66 execlp (incproc
, r1bindex (incproc
, '/'), NULL
);
67 adios (incproc
, "unable to exec");
70 arguments
= getarguments (invo_name
, argc
, argv
, 0);
73 while ((cp
= *argp
++)) {
75 switch (smatch (++cp
, switches
)) {
77 ambigsw (cp
, switches
);
80 adios (NULL
, "-%s unknown", cp
);
83 snprintf (buf
, sizeof(buf
), "%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", argp
[-2]);
97 if (!(body
= *argp
++) || *body
== '-')
98 adios (NULL
, "missing argument to %s", argp
[-2]);
106 if (!(subject
= *argp
++) || *subject
== '-')
107 adios (NULL
, "missing argument to %s", argp
[-2]);
120 cclist
= cclist
? add (cp
, add (", ", cclist
)) : getcpy (cp
);
122 tolist
= tolist
? add (cp
, add (", ", tolist
)) : getcpy (cp
);
126 adios (NULL
, "usage: %s addrs ... [switches]", invo_name
);
128 tfile
= m_mktemp2(NULL
, invo_name
, NULL
, &out
);
129 if (tfile
== NULL
) adios("mhmail", "unable to create temporary file");
131 strncpy (tmpfil
, tfile
, sizeof(tmpfil
));
133 SIGNAL2 (SIGINT
, intrser
);
135 fprintf (out
, "%sTo: %s\n", resent
? "Resent-" : "", tolist
);
137 fprintf (out
, "%scc: %s\n", resent
? "Resent-" : "", cclist
);
139 fprintf (out
, "%sSubject: %s\n", resent
? "Resent-" : "", subject
);
141 fprintf (out
, "%sFrom: %s\n", resent
? "Resent-" : "", from
);
146 fprintf (out
, "%s", body
);
147 if (*body
&& *(body
+ strlen (body
) - 1) != '\n')
151 (i
= fread (buf
, sizeof(*buf
), sizeof(buf
), stdin
)) > 0;
153 if (fwrite (buf
, sizeof(*buf
), i
, out
) != i
)
154 adios (tmpfil
, "error writing");
163 vec
[nvec
++] = r1bindex (postproc
, '/');
164 vec
[nvec
++] = tmpfil
;
166 vec
[nvec
++] = "-dist";
168 vec
[nvec
++] = "-queued";
171 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
174 if (child_id
== NOTOK
) {
175 /* report failure and then send it */
176 adios (NULL
, "unable to fork");
177 } else if (child_id
) {
179 if ((status
= pidXwait(child_id
, postproc
))) {
180 fprintf (stderr
, "Letter saved in dead.letter\n");
181 execl ("/bin/mv", "mv", tmpfil
, "dead.letter", NULL
);
182 execl ("/usr/bin/mv", "mv", tmpfil
, "dead.letter", NULL
);
187 done (status
? 1 : 0);
190 execvp (postproc
, vec
);
191 fprintf (stderr
, "unable to exec ");
196 return 0; /* dead code to satisfy the compiler */
203 #ifndef RELIABLE_SIGNALS
209 done (i
!= 0 ? 1 : 0);