2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-09-02 23:25:31 +00:00

snapshot-20001211

This commit is contained in:
Wietse Venema
2000-12-11 00:00:00 -05:00
committed by Viktor Dukhovni
parent 5ad8f0f553
commit 290ad1af00
4 changed files with 11 additions and 4 deletions

View File

@@ -4608,3 +4608,9 @@ Apologies for any names omitted.
Feature: support for MYSQL connections over UNIX-domain Feature: support for MYSQL connections over UNIX-domain
sockets by Piotr Klaban. Files: util/dict_mysql.c, sockets by Piotr Klaban. Files: util/dict_mysql.c,
MYSQL_README. MYSQL_README.
20001211
Small dirt: postconf -m produced too much output due to a
missing "else", and the optional SASL code needed a fix
for the changed name_mask API.

View File

@@ -15,7 +15,7 @@
* Version of this program. * Version of this program.
*/ */
#define VAR_MAIL_VERSION "mail_version" #define VAR_MAIL_VERSION "mail_version"
#define DEF_MAIL_VERSION "Snapshot-20001210" #define DEF_MAIL_VERSION "Snapshot-20001211"
extern char *var_mail_version; extern char *var_mail_version;
/* LICENSE /* LICENSE

View File

@@ -741,7 +741,7 @@ int main(int argc, char **argv)
msg_verbose++; msg_verbose++;
break; break;
default: default:
msg_fatal("usage: %s [-c config_dir] [-d (defaults)] [-e (edit)] [-h (no names)] [-l (lock types)] [-m (map types) [-n (non-defaults)] [-v] [name...]", argv[0]); msg_fatal("usage: %s [-c config_dir] [-d (defaults)] [-e (edit)] [-h (no names)] [-l (lock types)] [-m (map types)] [-n (non-defaults)] [-v] [name...]", argv[0]);
} }
} }
@@ -763,7 +763,7 @@ int main(int argc, char **argv)
/* /*
* If showing locking methods, show them and exit * If showing locking methods, show them and exit
*/ */
if (mode & SHOW_LOCKS) { else if (mode & SHOW_LOCKS) {
show_locks(); show_locks();
} }

View File

@@ -164,7 +164,8 @@ void smtpd_sasl_initialize(void)
/* /*
* Configuration parameters. * Configuration parameters.
*/ */
smtpd_sasl_opts = name_mask(smtpd_sasl_mask, var_smtpd_sasl_opts); smtpd_sasl_opts = name_mask(VAR_SMTPD_SASL_OPTS, smtpd_sasl_mask,
var_smtpd_sasl_opts);
} }
/* smtpd_sasl_connect - per-connection initialization */ /* smtpd_sasl_connect - per-connection initialization */