diff options
author | dannyboy <dannyboy@FreeBSD.org> | 2000-12-23 23:08:21 +0800 |
---|---|---|
committer | dannyboy <dannyboy@FreeBSD.org> | 2000-12-23 23:08:21 +0800 |
commit | 0ef47460109ed7491bce941c4b404909546f0a89 (patch) | |
tree | 2aeed3e28b1e0a8d9d86d3c85d54f247fd87e64f /mail | |
parent | 8d9f4f47e80da344daadcc6766fdf15f4500dfbf (diff) | |
download | freebsd-ports-gnome-0ef47460109ed7491bce941c4b404909546f0a89.tar.gz freebsd-ports-gnome-0ef47460109ed7491bce941c4b404909546f0a89.tar.zst freebsd-ports-gnome-0ef47460109ed7491bce941c4b404909546f0a89.zip |
Unbreak use with rmail and bump PORTREVISION.
PR: 22598
Submitted by: MAINTAINER
Diffstat (limited to 'mail')
33 files changed, 660 insertions, 440 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix/files/patch-cb b/mail/postfix/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix/files/patch-cb +++ b/mail/postfix/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix/files/patch-eg b/mail/postfix/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix/files/patch-eg +++ b/mail/postfix/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix1/Makefile b/mail/postfix1/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix1/Makefile +++ b/mail/postfix1/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix1/files/patch-cb b/mail/postfix1/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix1/files/patch-cb +++ b/mail/postfix1/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix1/files/patch-eg b/mail/postfix1/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix1/files/patch-eg +++ b/mail/postfix1/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix20/Makefile b/mail/postfix20/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix20/Makefile +++ b/mail/postfix20/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix20/files/patch-cb b/mail/postfix20/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix20/files/patch-cb +++ b/mail/postfix20/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix20/files/patch-eg b/mail/postfix20/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix20/files/patch-eg +++ b/mail/postfix20/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix21/Makefile b/mail/postfix21/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix21/Makefile +++ b/mail/postfix21/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix21/files/patch-cb b/mail/postfix21/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix21/files/patch-cb +++ b/mail/postfix21/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix21/files/patch-eg b/mail/postfix21/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix21/files/patch-eg +++ b/mail/postfix21/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix22/Makefile b/mail/postfix22/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix22/Makefile +++ b/mail/postfix22/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix22/files/patch-cb b/mail/postfix22/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix22/files/patch-cb +++ b/mail/postfix22/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix22/files/patch-eg b/mail/postfix22/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix22/files/patch-eg +++ b/mail/postfix22/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix23/Makefile b/mail/postfix23/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix23/Makefile +++ b/mail/postfix23/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix23/files/patch-cb b/mail/postfix23/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix23/files/patch-cb +++ b/mail/postfix23/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix23/files/patch-eg b/mail/postfix23/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix23/files/patch-eg +++ b/mail/postfix23/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix24/Makefile b/mail/postfix24/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix24/Makefile +++ b/mail/postfix24/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix24/files/patch-cb b/mail/postfix24/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix24/files/patch-cb +++ b/mail/postfix24/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix24/files/patch-eg b/mail/postfix24/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix24/files/patch-eg +++ b/mail/postfix24/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix25/Makefile b/mail/postfix25/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix25/Makefile +++ b/mail/postfix25/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix25/files/patch-cb b/mail/postfix25/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix25/files/patch-cb +++ b/mail/postfix25/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix25/files/patch-eg b/mail/postfix25/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix25/files/patch-eg +++ b/mail/postfix25/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix26/Makefile b/mail/postfix26/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix26/Makefile +++ b/mail/postfix26/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix26/files/patch-cb b/mail/postfix26/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix26/files/patch-cb +++ b/mail/postfix26/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix26/files/patch-eg b/mail/postfix26/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix26/files/patch-eg +++ b/mail/postfix26/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix27/Makefile b/mail/postfix27/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix27/Makefile +++ b/mail/postfix27/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix27/files/patch-cb b/mail/postfix27/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix27/files/patch-cb +++ b/mail/postfix27/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix27/files/patch-eg b/mail/postfix27/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix27/files/patch-eg +++ b/mail/postfix27/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; diff --git a/mail/postfix28/Makefile b/mail/postfix28/Makefile index 90eece8b7c8f..ea932df52658 100644 --- a/mail/postfix28/Makefile +++ b/mail/postfix28/Makefile @@ -7,6 +7,7 @@ PORTNAME= postfix PORTVERSION= 19991231.13 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.tux.org/pub/net/postfix/official/ \ diff --git a/mail/postfix28/files/patch-cb b/mail/postfix28/files/patch-cb index 58559c7273d1..ef73429287d2 100644 --- a/mail/postfix28/files/patch-cb +++ b/mail/postfix28/files/patch-cb @@ -1,20 +1,25 @@ -*** ./man/man1/sendmail.1.orig Thu Mar 30 14:05:28 2000 ---- ./man/man1/sendmail.1 Thu Jun 1 22:39:16 2000 -*************** -*** 63,65 **** - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR ---- 63,65 ---- - The path name of the \fBsendmail.cf\fR file. Postfix configuration -! files are kept in \fB!!PREFIX!!/etc/postfix\fR. - .IP "\fB-F \fIfull_name\fR -*************** -*** 173,175 **** - /var/spool/postfix, mail queue -! /etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS ---- 173,175 ---- - /var/spool/postfix, mail queue -! !!PREFIX!!/etc/postfix, configuration files - .SH CONFIGURATION PARAMETERS +--- man/man1/sendmail.1.orig Thu Mar 30 17:46:10 2000 ++++ man/man1/sendmail.1 Wed Dec 20 18:37:45 2000 +@@ -61,10 +61,12 @@ + \fBjust-send-eight\fR. + .IP "\fB-C \fIconfig_file\fR (ignored :-)" + The path name of the \fBsendmail.cf\fR file. Postfix configuration +-files are kept in \fB/etc/postfix\fR. ++files are kept in \fB!!PREFIX!!/etc/postfix\fR. + .IP "\fB-F \fIfull_name\fR + Set the sender full name. This is used only with messages that + have no \fBFrom:\fR message header. ++.IP "\fB-G\fR (ignored)" ++Gateway (relay) submission, as opposed to initial user submission. + .IP \fB-I\fR + Initialize alias database. See the \fBnewaliases\fR + command above. +@@ -171,7 +173,7 @@ + .na + .nf + /var/spool/postfix, mail queue +-/etc/postfix, configuration files ++!!PREFIX!!/etc/postfix, configuration files + .SH CONFIGURATION PARAMETERS + .na + .nf diff --git a/mail/postfix28/files/patch-eg b/mail/postfix28/files/patch-eg index cdf9e3097053..28950509870c 100644 --- a/mail/postfix28/files/patch-eg +++ b/mail/postfix28/files/patch-eg @@ -1,20 +1,34 @@ -*** ./sendmail/sendmail.c.orig Tue Mar 14 10:42:06 2000 ---- ./sendmail/sendmail.c Thu Jun 1 22:47:24 2000 -*************** -*** 57,59 **** - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR ---- 57,59 ---- - /* The path name of the \fBsendmail.cf\fR file. Postfix configuration -! /* files are kept in \fB!!PREFIX!!/etc/postfix\fR. - /* .IP "\fB-F \fIfull_name\fR -*************** -*** 159,161 **** - /* /var/spool/postfix, mail queue -! /* /etc/postfix, configuration files - /* CONFIGURATION PARAMETERS ---- 159,161 ---- - /* /var/spool/postfix, mail queue -! /* !!PREFIX!!/etc/postfix, configuration files - /* CONFIGURATION PARAMETERS +--- sendmail/sendmail.c.orig Sun Mar 26 22:51:33 2000 ++++ sendmail/sendmail.c Wed Dec 20 18:17:31 2000 +@@ -55,10 +55,12 @@ + /* \fBjust-send-eight\fR. + /* .IP "\fB-C \fIconfig_file\fR (ignored :-)" + /* The path name of the \fBsendmail.cf\fR file. Postfix configuration +-/* files are kept in \fB/etc/postfix\fR. ++/* files are kept in \fB!!PREFIX!!/etc/postfix\fR. + /* .IP "\fB-F \fIfull_name\fR + /* Set the sender full name. This is used only with messages that + /* have no \fBFrom:\fR message header. ++/* .IP "\fB-G \fR (ignored)" ++/* Gateway (relay) submission, as opposed to initial user submission. + /* .IP \fB-I\fR + /* Initialize alias database. See the \fBnewaliases\fR + /* command above. +@@ -157,7 +159,7 @@ + /* \fBdebugger_command\fR configuration parameter. + /* FILES + /* /var/spool/postfix, mail queue +-/* /etc/postfix, configuration files ++/* !!PREFIX!!/etc/postfix, configuration files + /* CONFIGURATION PARAMETERS + /* .ad + /* .fi +@@ -710,6 +712,8 @@ + break; + case 'F': /* full name */ + full_name = optarg; ++ break; ++ case 'G': /* gateway submission */ + break; + case 'I': /* newaliases */ + mode = SM_MODE_NEWALIAS; |