]> git.marmaro.de Git - mmh/commitdiff
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 b8a7c806736b4ccb120f2e46765ef4c540968d5a..fa0b0fc44a291d62e99ad14f6cdc9209cc75b7c2 100644 (file)
@@ -151,18 +151,6 @@ char *defaulteditor = "vi";
 */
 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.
diff --git a/h/mh.h b/h/mh.h
index ef4ca62ec959b7041cfb81eeb8548a8ee92708d9..dd049d3216ccc28654f6ab91ab9e0ab3f39d1788 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 *rcvpackproc;
-extern char *rcvstoreproc;
 extern char *replcomps;
 extern char *replgroupcomps;
 extern char *rmmproc;
index 7f2722682321ef460f120feab1f1a7f117a8d692..f03d48717a1fa22b33afc2bf0cb1a91b5ba7c103 100644 (file)
@@ -1096,7 +1096,7 @@ usr_folder(int fd, char *string)
        vec[1] = folder;
        vec[2] = NULL;
 
-       return usr_pipe(fd, "rcvstore", rcvstoreproc, vec, 1);
+       return usr_pipe(fd, "rcvstore", "rcvstore", vec, 1);
 }
 
 /*