Displaying 4 results from an estimated 4 matches for "hash_table_destroy".
2010 Feb 28
4
Dovecot 2.0.beta3: Child killed with signal 11
Hi,
I'm seeing these after the latest Mercurial updates:
==> /var/log/dovecot.info <==
Feb 28 16:07:00 spectre dovecot: master: service(lmtp): child 17322 killed with signal 11 (core dumps disabled)
Regards
Thomas
2008 Dec 17
6
Apple patches 6-8
....
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 wrong hash_create was called which cau...
2012 Sep 19
5
Dovecot deliver Segmentation fault when arrive the first message
Hi,
I have found this strange problem. I'm working with Debian 6, dovecot
2.1.9 and vpopmail-auth.
LDA is configured and works fine but the problem is when the first
message arrive "dovecot-lda" return a "Segmentation fault", the message
is written to the user's Mailbox but the message remains, also, in the
queue of qmail (deferral: Segmentation_fault/) and at the
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...{
+ hash_table_remove(keys, (void *) mailbox);
+ modified = TRUE;
+ }
+ break;
+ }
+
+ if (out_key)
+ hex_to_binary(hex, out_key);
+
+ /* write the keys */
+ if (modified) {
+ lseek(fd, 0, SEEK_SET);
+ ftruncate(fd, 0);
+ urlauth_keys_write(fd, keys);
+ }
+
+ /* clean up */
+ close(fd);
+ hash_table_destroy(&keys);
+ pool_unref(&pool);
+
+ return TRUE;
+}
+
+void urlauth_keys_init(void)
+{
+ random_init();
+}
+
+void urlauth_keys_deinit(void)
+{
+ random_deinit();
+}
+
+// get the access key for a mailbox
+bool urlauth_keys_get(struct mail_storage *storage, const char *mailbox,
+ buffer...