* Support for hierarchical mailboxes in Patterns. * Full support for IMAP pipelining (streaming, parallelization) added. This is considerably faster especially with high-latency networks. * Faster and hopefully more reliable support for IMAP servers without the UIDPLUS extension (e.g., M$ Exchange). * More automatic handling of SSL certificates. * IPv6 support. * IMAP password query can be scripted. * Message arrival dates can be propagated. * Data safety in case of system crashes was improved. * MaxMessages was made vastly more useful.
15 lines
526 B
Text
15 lines
526 B
Text
$NetBSD: patch-ae,v 1.6 2014/04/24 14:48:44 schmonz Exp $
|
|
|
|
Avoid segfault when parsing configuration file under NetBSD.
|
|
|
|
--- src/config.c.orig 2013-12-13 17:54:37.000000000 +0000
|
|
+++ src/config.c
|
|
@@ -316,7 +316,7 @@ int
|
|
load_config( const char *where, int pseudo )
|
|
{
|
|
conffile_t cfile;
|
|
- store_conf_t *store, **storeapp = &stores;
|
|
+ store_conf_t *store = NULL, **storeapp = &stores;
|
|
channel_conf_t *channel, **channelapp = &channels;
|
|
group_conf_t *group, **groupapp = &groups;
|
|
string_list_t *chanlist, **chanlistapp;
|