mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-30 13:48:06 +00:00
snapshot-20011105
This commit is contained in:
committed by
Viktor Dukhovni
parent
9cc882833d
commit
595d12203d
@@ -5571,6 +5571,11 @@ Apologies for any names omitted.
|
||||
Portability: updated Mac OS X documentation and install
|
||||
scripts by Gerben Wierda.
|
||||
|
||||
20011105
|
||||
|
||||
Bugfix: missing terminator in new attribute-based function
|
||||
call caused signal 11. File: src/cleanup/cleanup.c.
|
||||
|
||||
Open problems:
|
||||
|
||||
Medium: need in-process caching for map lookups. LDAP
|
||||
|
@@ -195,7 +195,8 @@ static void cleanup_service(VSTREAM *src, char *unused_service, char **argv)
|
||||
ATTR_TYPE_STR, MAIL_ATTR_QUEUEID, state->queue_id,
|
||||
ATTR_TYPE_END);
|
||||
if (attr_scan(src, ATTR_FLAG_STRICT,
|
||||
ATTR_TYPE_NUM, MAIL_ATTR_FLAGS, &flags) != 1) {
|
||||
ATTR_TYPE_NUM, MAIL_ATTR_FLAGS, &flags,
|
||||
ATTR_TYPE_END) != 1) {
|
||||
state->errs |= CLEANUP_STAT_BAD;
|
||||
flags = 0;
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
* Version of this program.
|
||||
*/
|
||||
#define VAR_MAIL_VERSION "mail_version"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20011104"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20011105"
|
||||
extern char *var_mail_version;
|
||||
|
||||
/* LICENSE
|
||||
|
Reference in New Issue
Block a user