diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-11-27 15:48:49 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-11-27 15:48:49 +0000 |
commit | 6b072f9c01a55f1cfef7e69c949dd217deba96b6 (patch) | |
tree | 8a0f175cfe06e2f68984fc258abd62a77fbc1162 /mail/postfix | |
parent | 698436c4771c2ce8731b0df1fd7c0c7fd788d951 (diff) | |
download | ports-6b072f9c01a55f1cfef7e69c949dd217deba96b6.tar.gz ports-6b072f9c01a55f1cfef7e69c949dd217deba96b6.zip |
Add header/body_check warnings command
Bump PORTREVISION
Submitted by: osa@freebsd.org.ru
Notes
Notes:
svn path=/head/; revision=50651
Diffstat (limited to 'mail/postfix')
-rw-r--r-- | mail/postfix/Makefile | 1 | ||||
-rw-r--r-- | mail/postfix/files/patch-src::cleanup_message.c | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 0191ec4ee57b..9a23d6b607b9 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 20010228.8 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/%SUBDIR%/ \ diff --git a/mail/postfix/files/patch-src::cleanup_message.c b/mail/postfix/files/patch-src::cleanup_message.c new file mode 100644 index 000000000000..9136591841bf --- /dev/null +++ b/mail/postfix/files/patch-src::cleanup_message.c @@ -0,0 +1,24 @@ +--- ./src/cleanup/cleanup_message.c.orig Tue Nov 27 16:55:39 2001 ++++ ./src/cleanup/cleanup_message.c Tue Nov 27 16:58:43 2001 +@@ -269,6 +269,10 @@ + state->errs |= CLEANUP_STAT_CONT; + } else if (strcasecmp(value, "IGNORE") == 0) { + return; ++ } else if (strcasecmp(value, "WARN") == 0) { ++ msg_info("%s: warning: header %.200s; from=<%s> to=<%s>", ++ state->queue_id, header, state->sender, ++ state->recip ? state->recip : "unknown"); + } + } + } +@@ -498,6 +502,10 @@ + state->errs |= CLEANUP_STAT_CONT; + } else if (strcasecmp(value, "IGNORE") == 0) { + return; ++ } else if (strcasecmp(value, "WARN") == 0) { ++ msg_info("%s: warning: body %.200s; from=<%s> to=<%s>", ++ state->queue_id, buf, state->sender, ++ state->recip ? state->recip : "unknown"); + } + } + } |