2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-29 13:18:12 +00:00

postfix-2.1.1

This commit is contained in:
Wietse Venema 2004-05-03 00:00:00 -05:00 committed by Viktor Dukhovni
parent e97db974f4
commit f77f70552b
7 changed files with 17 additions and 2804 deletions

View File

@ -9351,3 +9351,8 @@ Apologies for any names omitted.
overshoot limit (default: smtpd_recipient_overshoot_limit
= 1000). Solution in cooperation with Victor Duchovni.
Files: smtpd/smtpd.c, smtpd/smtpd_state.c, smtpd/smtpd.h.
20040503
Bugfix: missing "sasl enabled" guard in the SMTPD policy
client. File: smtpd/smtpd_check.c.

View File

@ -434,7 +434,7 @@ SMTPD(8) SMTPD(8)
Postfix SMTP server starts to increment the error
counter with each junk command.
<b>smtpd_recipient_overshoot_limit (1000)</b>
<b><a href="postconf.5.html#smtpd_recipient_overshoot_limit">smtpd_recipient_overshoot_limit</a> (1000)</b>
The number of recipients that a remote SMTP client
can send in excess of the limit specified with
$<a href="postconf.5.html#smtpd_recipient_limit">smtpd_recipient_limit</a>, before the Postfix SMTP

File diff suppressed because it is too large Load Diff

View File

@ -340,6 +340,7 @@ exec sed '
s;[[:<:]]smtpd_junk_command_limit[[:>:]];<a href="postconf.5.html#smtpd_junk_command_limit">&</a>;g
s;[[:<:]]smtpd_noop_commands[[:>:]];<a href="postconf.5.html#smtpd_noop_commands">&</a>;g
s;[[:<:]]smtpd_null_access_lookup_key[[:>:]];<a href="postconf.5.html#smtpd_null_access_lookup_key">&</a>;g
s;[[:<:]]smtpd_recipient_overshoot_limit[[:>:]];<a href="postconf.5.html#smtpd_recipient_overshoot_limit">&</a>;g
s;[[:<:]]smtpd_policy_service_max_idle[[:>:]];<a href="postconf.5.html#smtpd_policy_service_max_idle">&</a>;g
s;[[:<:]]smtpd_policy_service_max_ttl[[:>:]];<a href="postconf.5.html#smtpd_policy_service_max_ttl">&</a>;g
s;[[:<:]]smtpd_policy_service_timeout[[:>:]];<a href="postconf.5.html#smtpd_policy_service_timeout">&</a>;g

View File

@ -216,7 +216,7 @@ TCP sockets instead: </p>
<blockquote>
<pre>
1 /etc/postfix/master.cf:
2 127.0.0.1:9998 unix - n n - - spawn
2 127.0.0.1:9998 inet n n n - - spawn
3 user=nobody argv=/some/where/policy-server
4
5 /etc/postfix/main.cf:
@ -340,7 +340,7 @@ client/server configuration</a>" section above. </p>
<blockquote>
<pre>
1 /etc/postfix/master.cf:
2 127.0.0.1:9998 unix - n n - - spawn
2 127.0.0.1:9998 inet n n n - - spawn
3 user=nobody argv=/usr/bin/perl /usr/libexec/postfix/greylist.pl
4
5 /etc/postfix/main.cf:

View File

@ -20,8 +20,8 @@
* Patches change the patchlevel and the release date. Snapshots change the
* release date only.
*/
#define MAIL_RELEASE_DATE "20040422"
#define MAIL_VERSION_NUMBER "2.1.0"
#define MAIL_RELEASE_DATE "20040503"
#define MAIL_VERSION_NUMBER "2.1.1"
#define VAR_MAIL_VERSION "mail_version"
#ifdef SNAPSHOT

View File

@ -2870,11 +2870,14 @@ static int check_policy_service(SMTPD_STATE *state, const char *server,
(unsigned long) state->msg_size,
#ifdef USE_SASL_AUTH
ATTR_TYPE_STR, MAIL_ATTR_SASL_METHOD,
state->sasl_method ? state->sasl_method : "",
var_smtpd_sasl_enable && state->sasl_method ?
state->sasl_method : "",
ATTR_TYPE_STR, MAIL_ATTR_SASL_USERNAME,
state->sasl_username ? state->sasl_username : "",
var_smtpd_sasl_enable && state->sasl_username ?
state->sasl_username : "",
ATTR_TYPE_STR, MAIL_ATTR_SASL_SENDER,
state->sasl_sender ? state->sasl_sender : "",
var_smtpd_sasl_enable && state->sasl_sender ?
state->sasl_sender : "",
#endif
ATTR_TYPE_END,
ATTR_FLAG_MISSING, /* Reply attributes. */