diff options
author | ats <ats@FreeBSD.org> | 1994-11-19 12:29:32 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1994-11-19 12:29:32 +0000 |
commit | 245e47172db936ca955ae6809621e81245ec8fab (patch) | |
tree | 46f2c3248f9f71a8ec53e37908f03eb5a502eb61 /mail/procmail | |
parent | 9b5778d00ea565b50dce0a2a7a7f006a19aff29c (diff) | |
download | FreeBSD-ports-245e47172db936ca955ae6809621e81245ec8fab.zip FreeBSD-ports-245e47172db936ca955ae6809621e81245ec8fab.tar.gz |
The pre beta version seems to no longer exist, use the procmail-3.10
instead. Add a new patch. formail.c has a variable named daemon that
clashes with the daemon function, change the variable to mdaemon instead.
Diffstat (limited to 'mail/procmail')
-rw-r--r-- | mail/procmail/Makefile | 4 | ||||
-rw-r--r-- | mail/procmail/files/patch-aa | 36 |
2 files changed, 38 insertions, 2 deletions
diff --git a/mail/procmail/Makefile b/mail/procmail/Makefile index bf23301..cb8bb38 100644 --- a/mail/procmail/Makefile +++ b/mail/procmail/Makefile @@ -3,10 +3,10 @@ # Date created: 24 September 1994 # Whom: adam # -# $Id: Makefile,v 1.6 1994/10/12 09:26:40 adam Exp $ +# $Id: Makefile,v 1.7 1994/11/09 03:36:12 jkh Exp $ # -DISTNAME= procmail-3.10pre5 +DISTNAME= procmail-3.10 MASTER_SITES= ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ IS_INTERACTIVE= yes diff --git a/mail/procmail/files/patch-aa b/mail/procmail/files/patch-aa index 8187251..72e54bf 100644 --- a/mail/procmail/files/patch-aa +++ b/mail/procmail/files/patch-aa @@ -29,3 +29,39 @@ else :; fi; \ done echo Housekeeping file >install.man +*** src/formail.c Mon Oct 31 18:30:09 1994 +--- src/formail.c Sat Nov 19 13:09:22 1994 +*************** +*** 35,41 **** + x_[]= "X-", /* general extension */ + old_[]= OLD_PREFIX, /* my extension */ + xloop[]= "X-Loop:", /* ditto ... */ +! daemon[]="<>",unknown[]=UNKNOWN,re[]=" Re:",fmusage[]=FM_USAGE; + + static const struct {const char*hedr;int lnr;}cdigest[]= + { +--- 35,41 ---- + x_[]= "X-", /* general extension */ + old_[]= OLD_PREFIX, /* my extension */ + xloop[]= "X-Loop:", /* ditto ... */ +! mdaemon[]="<>",unknown[]=UNKNOWN,re[]=" Re:",fmusage[]=FM_USAGE; + + static const struct {const char*hedr;int lnr;}cdigest[]= + { +*************** +*** 275,281 **** + goto pnewname; + } + else if(sest[i].head==returnpath) /* nill Return-Path: */ +! { saddr=(char*)daemon;nowm=maxindex(sest)+2; /* override */ + pnewname: lastm=nowm;saddr=strcpy(malloc(strlen(saddr)+1),saddr); + if(namep) + free(namep); +--- 275,281 ---- + goto pnewname; + } + else if(sest[i].head==returnpath) /* nill Return-Path: */ +! { saddr=(char*)mdaemon;nowm=maxindex(sest)+2; /* override */ + pnewname: lastm=nowm;saddr=strcpy(malloc(strlen(saddr)+1),saddr); + if(namep) + free(namep); |