--- hypermail-2b30/archive/msg2archive.c Thu Sep 21 19:43:28 2000 +++ hypermail-2b28/archive/msg2archive.c Tue Dec 7 03:06:07 1999 @@ -39,6 +39,7 @@ char *mailboxdir = MAILBOXDIR; /* path to mailbox directory */ char *label = LABEL; /* list's title/lable */ char *about_link = ABOUT_LINK; /* list's about link */ +char *further_options=FURTHER_OPTIONS; /* any further hypermail options */ int year; /* 4 digit year */ int verbose; @@ -217,10 +218,12 @@ */ if (configfile == NULL) - sprintf(cmdstr, "%s -u -i -d %s/%d/%s -l \"%s\" -b %s", - hypermail, archive, year, month, label, about_link); + sprintf(cmdstr, "%s -u -i -d %s/%d/%s -l \"%s\" -b %s %s", + hypermail, archive, year, month, label, about_link, + further_options); else - sprintf(cmdstr, "%s -u -i -c %s", hypermail, configfile); + sprintf(cmdstr, "%s -u -i -c %s %s", hypermail, configfile, + further_options); if (verbose) fprintf(stderr, "Piping message to [%s]\n", cmdstr);