]> git.cworth.org Git - notmuch/blobdiff - lib/indexopts.c
indexopts: change _try_decrypt to _decrypt_policy
[notmuch] / lib / indexopts.c
index 51b56dd7924d5aef5d7a524eabb0cf5d91411fdf..0f65b97c9d1edbf8536a77863b23eab2e0d5b39c 100644 (file)
 notmuch_indexopts_t *
 notmuch_database_get_default_indexopts (notmuch_database_t *db)
 {
-    return talloc_zero (db, notmuch_indexopts_t);
+    notmuch_indexopts_t *ret = talloc_zero (db, notmuch_indexopts_t);
+    if (!ret)
+       return ret;
+
+    char * decrypt;
+    notmuch_status_t err = notmuch_database_get_config (db, "index.decrypt", &decrypt);
+    if (err)
+       return ret;
+
+    if (decrypt &&
+       ((!(strcasecmp(decrypt, "true"))) ||
+        (!(strcasecmp(decrypt, "yes"))) ||
+        (!(strcasecmp(decrypt, "1")))))
+       notmuch_indexopts_set_decrypt_policy (ret, true);
+
+    free (decrypt);
+    return ret;
 }
 
 notmuch_status_t
-notmuch_indexopts_set_try_decrypt (notmuch_indexopts_t *indexopts,
-                                  notmuch_bool_t try_decrypt)
+notmuch_indexopts_set_decrypt_policy (notmuch_indexopts_t *indexopts,
+                                     notmuch_bool_t decrypt_policy)
 {
     if (!indexopts)
        return NOTMUCH_STATUS_NULL_POINTER;
-    indexopts->crypto.decrypt = try_decrypt;
+    indexopts->crypto.decrypt = decrypt_policy;
     return NOTMUCH_STATUS_SUCCESS;
 }
 
 notmuch_bool_t
-notmuch_indexopts_get_try_decrypt (const notmuch_indexopts_t *indexopts)
+notmuch_indexopts_get_decrypt_policy (const notmuch_indexopts_t *indexopts)
 {
     if (!indexopts)
        return false;