mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-30 21:55:20 +00:00
snapshot-20001211
This commit is contained in:
committed by
Viktor Dukhovni
parent
5ad8f0f553
commit
290ad1af00
@@ -4608,3 +4608,9 @@ Apologies for any names omitted.
|
||||
Feature: support for MYSQL connections over UNIX-domain
|
||||
sockets by Piotr Klaban. Files: util/dict_mysql.c,
|
||||
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.
|
||||
|
@@ -15,7 +15,7 @@
|
||||
* Version of this program.
|
||||
*/
|
||||
#define VAR_MAIL_VERSION "mail_version"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20001210"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20001211"
|
||||
extern char *var_mail_version;
|
||||
|
||||
/* LICENSE
|
||||
|
@@ -741,7 +741,7 @@ int main(int argc, char **argv)
|
||||
msg_verbose++;
|
||||
break;
|
||||
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 (mode & SHOW_LOCKS) {
|
||||
else if (mode & SHOW_LOCKS) {
|
||||
show_locks();
|
||||
}
|
||||
|
||||
|
@@ -164,7 +164,8 @@ void smtpd_sasl_initialize(void)
|
||||
/*
|
||||
* 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 */
|
||||
|
Reference in New Issue
Block a user