X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fscansbr.c;h=c566de2313b020300f617880b71ae6eb6197b901;hb=ac0b9fcce4167e2959ebc5b8d6efb8511acec66d;hp=56583f154765d782b7ba92843e6c8e345461f4a6;hpb=8589851acf19172bce7d6ecb44e3a4215beff3e5;p=mmh diff --git a/uip/scansbr.c b/uip/scansbr.c index 56583f1..c566de2 100644 --- a/uip/scansbr.c +++ b/uip/scansbr.c @@ -74,8 +74,6 @@ scan(FILE *inb, int innum, int outnum, char *fmtstr, int width, int curflg, char *scnmsg = NULL; FILE *scnout = NULL; char name[NAMESZ]; - char returnpath[BUFSIZ]; - char deliverydate[BUFSIZ]; int incing = (outnum != SCN_MBOX && outnum != SCN_FOLD); int scanfolder = (outnum == SCN_FOLD); long fpos; @@ -150,17 +148,6 @@ scan(FILE *inb, int innum, int outnum, char *fmtstr, int width, int curflg, return SCNNUM; if (!(scnout = fopen(scnmsg, "w"))) adios(scnmsg, "unable to write"); - /* - ** Add the Return-Path and Delivery-Date - ** header fields to message. - */ - if (get_returnpath(returnpath, sizeof(returnpath), - deliverydate, sizeof(deliverydate))) { - FPUTS("Return-Path: "); - FPUTS(returnpath); - FPUTS("Delivery-Date: "); - FPUTS(deliverydate); - } } /* scan - main loop */