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.
* 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
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]);
}
}
/*
* If showing locking methods, show them and exit
*/
- if (mode & SHOW_LOCKS) {
+ else if (mode & SHOW_LOCKS) {
show_locks();
}
/*
* 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 */