Call send directly, not via sendproc. Removed its profile entry, too.
authormarkus schnalke <meillo@marmaro.de>
Thu, 22 Mar 2012 12:33:49 +0000 (13:33 +0100)
committermarkus schnalke <meillo@marmaro.de>
Thu, 22 Mar 2012 12:33:49 +0000 (13:33 +0100)
config/config.c
h/mh.h
man/mh-profile.man5
man/whatnow.man1
sbr/readconfig.c
uip/mhparam.c
uip/spost.c
uip/whatnow.c

index bfdc242..90c1410 100644 (file)
@@ -147,12 +147,6 @@ char *defaulteditor = "vi";
 char *rmmproc = NULL;
 
 /*
-** This program is usually called by the user's whatnowproc, but it
-** may also be called directly to send a message previously composed.
- */
-char *sendproc = NMHBINDIR"/send";
-
-/*
 ** This program is called after comp, et. al., have built a draft
 */
 char *whatnowproc = NMHBINDIR"/whatnow";
diff --git a/h/mh.h b/h/mh.h
index f18f62b..8f66669 100644 (file)
--- a/h/mh.h
+++ b/h/mh.h
@@ -322,7 +322,6 @@ extern char *replcomps;
 extern char *replgroupcomps;
 extern char *rmmproc;
 extern char *sendmail;
-extern char *sendproc;
 extern char *seq_all;
 extern char *seq_beyond;
 extern char *seq_cur;
index d47b78f..c652428 100644 (file)
@@ -435,14 +435,6 @@ and
 to delete a message from a folder.
 .RE
 .PP
-.BR sendproc :
-%bindir%/send
-.RS 5
-This is the program to use by
-.B whatnow
-to actually send the message
-.RE
-.PP
 .BR whatnowproc :
 %bindir%/whatnow
 .RS 5
index 70b921b..9274246 100644 (file)
@@ -160,7 +160,6 @@ information.
 ^~^from <lasteditor>
 ^fileproc:~^Program to refile the message
 ^listproc:~^Program to list the contents of a message
-^sendproc:~^Program to use to send the message
 .fi
 
 .SH "SEE ALSO"
index 9a05a2b..bcff1da 100644 (file)
@@ -26,7 +26,6 @@ static struct procstr procs[] = {
        { "listproc",      &listproc },
        { "rmmproc",       &rmmproc },
        { "sendmail",      &sendmail },
-       { "sendproc",      &sendproc },
        { "whatnowproc",   &whatnowproc },
        { NULL, NULL }
 };
index d456454..20a95e7 100644 (file)
@@ -45,7 +45,6 @@ static struct proc procs [] = {
        { "pager",         &defaultpager },
        { "rmmproc",       &rmmproc },
        { "sendmail",      &sendmail },
-       { "sendproc",      &sendproc },
        { "version",       &version_num },
        { "whatnowproc",   &whatnowproc },
        { "etcdir",        &mhetcdir },
index 046f340..43d3d10 100644 (file)
@@ -692,7 +692,7 @@ process_bccs(char *origmsg)
                fprintf(out, "------------\n");
                fclose(out);
 
-               snprintf(buf, sizeof buf, "%s%s %s", sendproc,
+               snprintf(buf, sizeof buf, "send%s %s",
                                pushflg ? " -push" : "", bccdraft);
                if (system(buf) != 0) {
                        admonish(invo_name, "Problems to send Bcc to %s",
index 3d97716..168384f 100644 (file)
@@ -790,9 +790,9 @@ sendfile(char **arg, char *file, int pushsw)
                vec[vecp++] = file;
                vec[vecp] = NULL;
 
-               execvp(sendproc, vec);
+               execvp("send", vec);
                fprintf(stderr, "unable to exec ");
-               perror(sendproc);
+               perror("send");
                _exit(-1);
 
        default: