From 49e676c661379cbb6235fc63fcc21aec3cf369d8 Mon Sep 17 00:00:00 2001
From: Wietse Venema
This feature is available in Postix 2.10 and later.
+This feature is available in Postfix 2.10 and later.
diff --git a/postfix/man/man5/postconf.5 b/postfix/man/man5/postconf.5 index 6d47fd547..a93f67192 100644 --- a/postfix/man/man5/postconf.5 +++ b/postfix/man/man5/postconf.5 @@ -11732,7 +11732,7 @@ Continue long lines by starting the next line with whitespace. The same restrictions are available as documented under smtpd_recipient_restrictions. .PP -This feature is available in Postix 2.10 and later. +This feature is available in Postfix 2.10 and later. .SH smtpd_restriction_classes (default: empty) User\-defined aliases for groups of access restrictions. The aliases can be specified in smtpd_recipient_restrictions etc., and on the diff --git a/postfix/proto/postconf.proto b/postfix/proto/postconf.proto index a4419c03a..348ca6831 100644 --- a/postfix/proto/postconf.proto +++ b/postfix/proto/postconf.proto @@ -6447,7 +6447,7 @@ The same restrictions are available as documented under smtpd_recipient_restrictions. -This feature is available in Postix 2.10 and later.
+This feature is available in Postfix 2.10 and later.
%CLASS sasl-auth SASL Authentication diff --git a/postfix/proto/stop b/postfix/proto/stop index 238698457..72cecf446 100644 --- a/postfix/proto/stop +++ b/postfix/proto/stop @@ -1182,7 +1182,6 @@ Nexthop OP OTIFY OpenSSL's -Postix Pt SECG SSLEAY diff --git a/postfix/proto/stop.double-history b/postfix/proto/stop.double-history index 0c2442677..bfa589c3d 100644 --- a/postfix/proto/stop.double-history +++ b/postfix/proto/stop.double-history @@ -58,3 +58,4 @@ proto proto aliases proto virtual proto ADDRESS_REWRITING_README html pipelining before the server greeting File smtpd smtpd c before the server greeting File smtpd smtpd c global mail_params h smtpd smtpd c proto postconf proto + Typo fix by Trent W Buck Files proto postconf proto proto stop diff --git a/postfix/src/global/mail_params.c b/postfix/src/global/mail_params.c index 1763fd383..2a7f84c2c 100644 --- a/postfix/src/global/mail_params.c +++ b/postfix/src/global/mail_params.c @@ -518,9 +518,11 @@ static void check_mail_owner(void) */ if ((pwd = getpwuid(var_owner_uid)) != 0 && strcmp(pwd->pw_name, var_mail_owner) != 0) - msg_fatal("file %s/%s: parameter %s: user %s has same user ID as %s", + msg_fatal("file %s/%s: parameter %s: user %s has the same" + " user ID %ld as user %s", var_config_dir, MAIN_CONF_FILE, - VAR_MAIL_OWNER, var_mail_owner, pwd->pw_name); + VAR_MAIL_OWNER, var_mail_owner, + (long) var_owner_uid, pwd->pw_name); } /* check_sgid_group - lookup setgid group attributes and validate */ @@ -545,9 +547,11 @@ static void check_sgid_group(void) */ if ((grp = getgrgid(var_sgid_gid)) != 0 && strcmp(grp->gr_name, var_sgid_group) != 0) - msg_fatal("file %s/%s: parameter %s: group %s has same group ID as %s", + msg_fatal("file %s/%s: parameter %s: group %s has the same" + " group ID %ld as group %s", var_config_dir, MAIN_CONF_FILE, - VAR_SGID_GROUP, var_sgid_group, grp->gr_name); + VAR_SGID_GROUP, var_sgid_group, + (long) var_sgid_gid, grp->gr_name); } /* check_overlap - disallow UID or GID sharing */ diff --git a/postfix/src/global/mail_version.h b/postfix/src/global/mail_version.h index 0e47acfaa..25c36229f 100644 --- a/postfix/src/global/mail_version.h +++ b/postfix/src/global/mail_version.h @@ -20,7 +20,7 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20230605" +#define MAIL_RELEASE_DATE "20230723" #define MAIL_VERSION_NUMBER "3.9" #ifdef SNAPSHOT -- 2.47.3