Remove the rcvstoreproc/rcvpackproc vars.
authormarkus schnalke <meillo@marmaro.de>
Thu, 22 Mar 2012 11:08:47 +0000 (12:08 +0100)
committermarkus schnalke <meillo@marmaro.de>
Thu, 22 Mar 2012 11:08:47 +0000 (12:08 +0100)
config/config.c
h/mh.h
uip/slocal.c

index b8a7c80..fa0b0fc 100644 (file)
@@ -152,18 +152,6 @@ char *defaulteditor = "vi";
 char *postproc = NMHBINDIR"/spost";
 
 /*
 char *postproc = NMHBINDIR"/spost";
 
 /*
-** This is program is called by slocal to handle
-** the action `folder' or `+'.
-*/
-char *rcvstoreproc = NMHBINDIR"/rcvstore";
-
-/*
-** This is program is called by slocal to handle
-** the action `file', `mbox' or `>'.
-*/
-char *rcvpackproc = NMHBINDIR"/rcvpack";
-
-/*
 ** This program is called to remove a message by rmm or refile -nolink.
 ** It's usually empty, which means to rename the file to a backup name.
 */
 ** This program is called to remove a message by rmm or refile -nolink.
 ** It's usually empty, which means to rename the file to a backup name.
 */
diff --git a/h/mh.h b/h/mh.h
index ef4ca62..dd049d3 100644 (file)
--- a/h/mh.h
+++ b/h/mh.h
@@ -321,8 +321,6 @@ extern char *postproc;
 extern char *profile;
 extern char *psequence;
 extern char *rcvdistcomps;
 extern char *profile;
 extern char *psequence;
 extern char *rcvdistcomps;
-extern char *rcvpackproc;
-extern char *rcvstoreproc;
 extern char *replcomps;
 extern char *replgroupcomps;
 extern char *rmmproc;
 extern char *replcomps;
 extern char *replgroupcomps;
 extern char *rmmproc;
index 7f27226..f03d487 100644 (file)
@@ -1096,7 +1096,7 @@ usr_folder(int fd, char *string)
        vec[1] = folder;
        vec[2] = NULL;
 
        vec[1] = folder;
        vec[2] = NULL;
 
-       return usr_pipe(fd, "rcvstore", rcvstoreproc, vec, 1);
+       return usr_pipe(fd, "rcvstore", "rcvstore", vec, 1);
 }
 
 /*
 }
 
 /*