Displaying 7 results from an estimated 7 matches for "hash_table_create".
2018 Sep 10
1
make check (pigeonhole)
...his run was 8388608.
==29930== 64 bytes in 1 blocks are possibly lost in loss record 35 of 77
==29930==??? at 0x4C2B9B5: calloc (vg_replace_malloc.c:711)
==29930==??? by 0x5277AB5: pool_system_malloc (mempool-system.c:75)
==29930==??? by 0x525D2FD: p_malloc (mempool.h:99)
==29930==??? by 0x525D2FD: hash_table_create (hash.c:70)
==29930==??? by 0x51F377C: settings_parser_init_list (settings-parser.c:215)
==29930==??? by 0x51ED102: master_service_settings_read
(master-service-settings.c:595)
==29930==??? by 0x51EE3A9: master_service_settings_cache_read
(master-service-settings-cache.c:387)
==29930==??? by 0x4E...
2018 Sep 10
0
make check (pigeonhole)
...==29930== 64 bytes in 1 blocks are possibly lost in loss record 35 of 77
> ==29930==??? at 0x4C2B9B5: calloc (vg_replace_malloc.c:711)
> ==29930==??? by 0x5277AB5: pool_system_malloc (mempool-system.c:75)
> ==29930==??? by 0x525D2FD: p_malloc (mempool.h:99)
> ==29930==??? by 0x525D2FD: hash_table_create (hash.c:70)
> ==29930==??? by 0x51F377C: settings_parser_init_list
> (settings-parser.c:215)
> ==29930==??? by 0x51ED102: master_service_settings_read
> (master-service-settings.c:595)
> ==29930==??? by 0x51EE3A9: master_service_settings_cache_read
> (master-service-settings-cach...
2018 Sep 09
3
make check (pigeonhole)
Hello list,
During the 'make check' (pigeonhole) portion of a building (rpmbuild) a
dovecot.spec file I'm getting the following error:
testsuite(root): Fatal: Couldn't drop privileges: User is missing UID
(see mail_uid setting)
I'm not sure how to resolve this, and any help would be appreciated to
help me finish the creating the rpm
--
Eric Broch
White Horse Technical
2008 Dec 17
6
Apple patches 6-8
...et-unspecified text was scrubbed...
Name: patch6.txt
URL: <http://dovecot.org/pipermail/dovecot/attachments/20081217/9ea4d051/attachment-0006.txt>
-------------- next part --------------
Patch #7. Replace all occurrences of "hash_create" and "hash_destroy"
with "hash_table_create" and "hash_table_destroy" respectively. The
symbols hash_create and hash_destroy conflict with symbols defined in
<strhash.h> and libc. This showed up when loading dovecot's quota
plugin (one of our future patches will add a hash table to it; stay
tuned). The wro...
2008 Dec 22
2
Apple patch 9
Patch #9 adds support for Open Directory and an encrypted SSL
keystore. Notes about this patch:
It adds --enable-apple and --with-od options to configure (after
running autoconf).
It depends on patch #7 (hash_table_create/destroy).
Automake wipes out this patch's changes to Makefile.in. The -
framework options should come from Makefile.am but the author didn't
do that.
It uses a tab-stops-every-4 indentation style.
It may compile and run only on Mac OS X 10.6, currently available via
Apple Developer Co...
2009 Jan 06
2
Apple patch 10
...n mail-
process.c and io_env_switch() in ioloop.c.
Notes about this patch:
- The base for this patch is dovecot-1.1.7 + Apple patch 9, not
because this patch needs Open Directory but simply because it adds one
line to the Apple attributions in COPYING.
- This patch depends on Apple patch 7 (hash_table_create/destroy).
- This patch introduces the following new config options for the pop3
and imap protocols:
- mail_process_per_connection = yes
- mail_max_connections = 20
The default value of mail_process_per_connection (yes) preserves the
current secure model. Changing it to no allows multiplexin...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
..._FILENAME, NULL);
+
+}
+
+// read the access keys into the hash table
+static struct hash_table *urlauth_keys_read(pool_t pool, int fd)
+{
+ struct hash_table *keys;
+ struct istream *is;
+ const char *line;
+
+ is = i_stream_create_fd(fd, 4096, FALSE);
+ if (is == NULL)
+ return NULL;
+
+ keys = hash_table_create(pool, pool, 16, strcase_hash,
+ (hash_cmp_callback_t *) strcasecmp);
+ if (keys == NULL) {
+ i_stream_destroy(&is);
+ return NULL;
+ }
+
+ i_stream_set_return_partial_line(is, TRUE);
+ while ((line = i_stream_read_next_line(is)) != NULL) {
+ const char *sep;
+
+ if (*line == '\0'...