d76fc1
diff --git a/imap/http_dav.c b/imap/http_dav.c
d76fc1
index d5f7c114a2..abc6da42ca 100644
d76fc1
--- a/imap/http_dav.c
d76fc1
+++ b/imap/http_dav.c
d76fc1
@@ -6108,7 +6108,7 @@ EXPORTED int meth_propfind(struct transaction_t *txn, void *params)
d76fc1
     xmlDocPtr indoc = NULL, outdoc = NULL;
d76fc1
     xmlNodePtr root, cur = NULL, props = NULL;
d76fc1
     xmlNsPtr ns[NUM_NAMESPACE];
d76fc1
-    struct hash_table ns_table = { 0, NULL, NULL };
d76fc1
+    struct hash_table ns_table = HASH_TABLE_INITIALIZER;
d76fc1
     struct propfind_ctx fctx;
d76fc1
 
d76fc1
     memset(&fctx, 0, sizeof(struct propfind_ctx));
d76fc1
@@ -8083,7 +8083,7 @@ int meth_report(struct transaction_t *txn, void *params)
d76fc1
     xmlNodePtr inroot = NULL, outroot = NULL, cur, prop = NULL, props = NULL;
d76fc1
     const struct report_type_t *report = NULL;
d76fc1
     xmlNsPtr ns[NUM_NAMESPACE];
d76fc1
-    struct hash_table ns_table = { 0, NULL, NULL };
d76fc1
+    struct hash_table ns_table = HASH_TABLE_INITIALIZER;
d76fc1
     struct propfind_ctx fctx;
d76fc1
 
d76fc1
     memset(&fctx, 0, sizeof(struct propfind_ctx));
d76fc1
diff --git a/imap/jmap_mail.c b/imap/jmap_mail.c
d76fc1
index 7f2d9cb563..84845d273b 100644
d76fc1
--- a/imap/jmap_mail.c
d76fc1
+++ b/imap/jmap_mail.c
d76fc1
@@ -4334,7 +4334,7 @@ static void _email_querychanges_collapsed(jmap_req_t *req,
d76fc1
     memset(&touched_ids, 0, sizeof(hash_table));
d76fc1
     construct_hash_table(&touched_ids, mdcount + 1, 0);
d76fc1
 
d76fc1
-    hashu64_table touched_cids = HASH_TABLE_INITIALIZER;
d76fc1
+    hashu64_table touched_cids = HASHU64_TABLE_INITIALIZER;
d76fc1
     memset(&touched_cids, 0, sizeof(hashu64_table));
d76fc1
     construct_hashu64_table(&touched_cids, mdcount + 1, 0);
d76fc1
 
d76fc1
diff --git a/lib/hash.c b/lib/hash.c
d76fc1
index 639b6997e6..593f1bf968 100644
d76fc1
--- a/lib/hash.c
d76fc1
+++ b/lib/hash.c
d76fc1
@@ -43,10 +43,11 @@ EXPORTED hash_table *construct_hash_table(hash_table *table, size_t size, int us
d76fc1
       assert(table);
d76fc1
       assert(size);
d76fc1
 
d76fc1
-      table->size  = size;
d76fc1
+      table->size = size;
d76fc1
+      table->seed = rand(); /* might be zero, that's okay */
d76fc1
 
d76fc1
       /* Allocate the table -- different for using memory pools and not */
d76fc1
-      if(use_mpool) {
d76fc1
+      if (use_mpool) {
d76fc1
           /* Allocate an initial memory pool for 32 byte keys + the hash table
d76fc1
            * + the buckets themselves */
d76fc1
           table->pool =
d76fc1
@@ -72,7 +73,7 @@ EXPORTED hash_table *construct_hash_table(hash_table *table, size_t size, int us
d76fc1
 
d76fc1
 EXPORTED void *hash_insert(const char *key, void *data, hash_table *table)
d76fc1
 {
d76fc1
-      unsigned val = strhash(key) % table->size;
d76fc1
+      unsigned val = strhash_seeded(table->seed, key) % table->size;
d76fc1
       bucket *ptr, *newptr;
d76fc1
       bucket **prev;
d76fc1
 
d76fc1
@@ -159,7 +160,7 @@ EXPORTED void *hash_lookup(const char *key, hash_table *table)
d76fc1
       if (!table->size)
d76fc1
           return NULL;
d76fc1
 
d76fc1
-      val = strhash(key) % table->size;
d76fc1
+      val = strhash_seeded(table->seed, key) % table->size;
d76fc1
 
d76fc1
       if (!(table->table)[val])
d76fc1
             return NULL;
d76fc1
@@ -183,7 +184,7 @@ EXPORTED void *hash_lookup(const char *key, hash_table *table)
d76fc1
  * since it will leak memory until you get rid of the entire hash table */
d76fc1
 EXPORTED void *hash_del(const char *key, hash_table *table)
d76fc1
 {
d76fc1
-      unsigned val = strhash(key) % table->size;
d76fc1
+      unsigned val = strhash_seeded(table->seed, key) % table->size;
d76fc1
       bucket *ptr, *last = NULL;
d76fc1
 
d76fc1
       if (!(table->table)[val])
d76fc1
diff --git a/lib/hash.h b/lib/hash.h
d76fc1
index e49037d614..e476de77da 100644
d76fc1
--- a/lib/hash.h
d76fc1
+++ b/lib/hash.h
d76fc1
@@ -3,10 +3,11 @@
d76fc1
 #define HASH__H
d76fc1
 
d76fc1
 #include <stddef.h>           /* For size_t     */
d76fc1
+#include <stdint.h>
d76fc1
 #include "mpool.h"
d76fc1
 #include "strarray.h"
d76fc1
 
d76fc1
-#define HASH_TABLE_INITIALIZER {0, NULL, NULL}
d76fc1
+#define HASH_TABLE_INITIALIZER {0, 0, NULL, NULL}
d76fc1
 
d76fc1
 /*
d76fc1
 ** A hash table consists of an array of these buckets.  Each bucket
d76fc1
@@ -32,6 +33,7 @@ typedef struct bucket {
d76fc1
 
d76fc1
 typedef struct hash_table {
d76fc1
     size_t size;
d76fc1
+    uint32_t seed;
d76fc1
     bucket **table;
d76fc1
     struct mpool *pool;
d76fc1
 } hash_table;
d76fc1
diff --git a/lib/strhash.c b/lib/strhash.c
d76fc1
index d7c1741d2a..1b3251db73 100644
d76fc1
--- a/lib/strhash.c
d76fc1
+++ b/lib/strhash.c
d76fc1
@@ -42,17 +42,32 @@
d76fc1
 
d76fc1
 #include "config.h"
d76fc1
 
d76fc1
-EXPORTED unsigned strhash(const char *string)
d76fc1
+#include "lib/strhash.h"
d76fc1
+
d76fc1
+/* The well-known djb2 algorithm (e.g. http://www.cse.yorku.ca/~oz/hash.html),
d76fc1
+ * with the addition of an optional seed to limit predictability.
d76fc1
+ *
d76fc1
+ * XXX return type 'unsigned' for back-compat to previous version, but
d76fc1
+ * XXX ought to be 'uint32_t'
d76fc1
+ */
d76fc1
+EXPORTED unsigned strhash_seeded_djb2(uint32_t seed, const char *string)
d76fc1
 {
d76fc1
-      unsigned ret_val = 0;
d76fc1
-      int i;
d76fc1
+    const unsigned char *ustr = (const unsigned char *) string;
d76fc1
+    unsigned hash = 5381;
d76fc1
+    int c;
d76fc1
 
d76fc1
-      while (*string)
d76fc1
-      {
d76fc1
-            i = (int) *string;
d76fc1
-            ret_val ^= i;
d76fc1
-            ret_val <<= 1;
d76fc1
-            string ++;
d76fc1
-      }
d76fc1
-      return ret_val;
d76fc1
+    if (seed) {
d76fc1
+        /* treat the bytes of the seed as a prefix to the string */
d76fc1
+        unsigned i;
d76fc1
+        for (i = 0; i < sizeof seed; i++) {
d76fc1
+            c = seed & 0xff;
d76fc1
+            hash = ((hash << 5) + hash) ^ c;
d76fc1
+            seed >>= 8;
d76fc1
+        }
d76fc1
+    }
d76fc1
+
d76fc1
+    while ((c = *ustr++))
d76fc1
+        hash = ((hash << 5) + hash) ^ c;
d76fc1
+
d76fc1
+    return hash;
d76fc1
 }
d76fc1
diff --git a/lib/strhash.h b/lib/strhash.h
d76fc1
index 34533fdffa..27339bb288 100644
d76fc1
--- a/lib/strhash.h
d76fc1
+++ b/lib/strhash.h
d76fc1
@@ -41,7 +41,11 @@
d76fc1
  */
d76fc1
 
d76fc1
 #ifndef _STRHASH_H_
d76fc1
+#include <stdint.h>
d76fc1
 
d76fc1
-unsigned strhash(const char *string);
d76fc1
+unsigned strhash_seeded_djb2(uint32_t seed, const char *string);
d76fc1
+
d76fc1
+#define strhash(in)             strhash_seeded_djb2((0),  (in))
d76fc1
+#define strhash_seeded(sd, in)  strhash_seeded_djb2((sd), (in))
d76fc1
 
d76fc1
 #endif /* _STRHASH_H_ */