--- mail/exim/Makefile Fri Jun 13 15:20:56 2003 +++ mail/exim/Makefile Wed Jun 18 03:03:11 2003 @@ -145,7 +145,10 @@ # # Disable support for the LMTP (RFC 2033 "SMTP over command pipe") # transport. -#WITHOUT_LMTP +#WITHOUT_LMTP= yes +# +# Include the unsupported patches in ${PATCHDIR}/wishlist-*.patch +#WITH_WISHLIST= yes # You should not need to fiddle with anything below this point. @@ -153,6 +156,10 @@ RUN_DEPENDS= ${LOCALBASE}/sbin/eximon:${PORTSDIR}/mail/exim-monitor .endif +.if defined(WITH_WISHLIST) +EXTRA_PATCHES+= `${FIND} ${PATCHDIR} -name 'wishlist-*.patch'` +.endif + .include PORTDOC_FILES= Exim3.upgrade Exim4.upgrade OptionLists.txt README \ @@ -336,6 +343,14 @@ .if !defined(WITHOUT_LMTP) SEDLIST+= -e 's,^\# TRANSPORT_LMTP=,TRANSPORT_LMTP=,' +.endif + +pre-everything:: +.if empty(.MAKEFLAGS:M-s) && defined(WITH_WISHLIST) + @${ECHO} '' + @${ECHO} 'Included extra patches:' + @${FIND} ${PATCHDIR} -name 'wishlist-*.patch' -exec ${SED} -ne 's,^# , ,p' {} \; + @${ECHO} '' .endif post-patch: --- mail/exim/files/wishlist-suppress-received.patch Thu Jan 1 01:00:00 1970 +++ mail/exim/files/wishlist-suppress-received.patch Wed Jun 18 03:10:48 2003 @@ -0,0 +1,25 @@ +# +# (Exim 4 wish list #163) suppress the "Received:" header if received_header_text is empty +# +--- src/receive.c.orig Mon May 12 15:39:21 2003 ++++ src/receive.c Fri Jun 13 03:17:26 2003 +@@ -1915,9 +1915,17 @@ + /* The first element on the header chain is reserved for the Received + header, so all we have to do is fill in the text pointer. */ + +-header_list->text = string_sprintf("%s; %s\n", received, timestamp); ++if (received[0] == 0) ++ { ++ header_list->text = string_sprintf("Received: ; %s\n", timestamp); ++ header_list->type = htype_old; ++ } ++else ++ { ++ header_list->text = string_sprintf("%s; %s\n", received, timestamp); ++ header_list->type = htype_received; ++ } + header_list->slen = Ustrlen(header_list->text); +-header_list->type = htype_received; + + + /* If there is no From: header, generate one. If there is no sender address,