aboutsummaryrefslogtreecommitdiff
path: root/lib/message-file.c
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-12-31 18:20:31 -0400
committerDavid Bremner <david@tethera.net>2021-03-20 07:39:12 -0300
commite823d05ae6dc920d4fc9abf774c3d2575d891d7b (patch)
treea66d028308be1a14a3b6f5fcae9feaa12cc3aede /lib/message-file.c
parent986056bdbcfea642a2d08f7ee257f7aaaed433b9 (diff)
lib: support splitting mail from database location.
Introduce a new configuration value for the mail root, and use it to locate mail messages in preference to the database.path (which previously implied the mail messages were also in this location. Initially only a subset of the CLI is tested in a split configuration. Further changes will be needed for the remainder of the CLI to work in split configurations.
Diffstat (limited to 'lib/message-file.c')
-rw-r--r--lib/message-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/message-file.c b/lib/message-file.c
index 15b0bfad..9e9b387f 100644
--- a/lib/message-file.c
+++ b/lib/message-file.c
@@ -64,7 +64,7 @@ _notmuch_message_file_open_ctx (notmuch_database_t *notmuch,
if (unlikely (message == NULL))
return NULL;
- const char *prefix = notmuch_database_get_path (notmuch);
+ const char *prefix = notmuch_config_get (notmuch, NOTMUCH_CONFIG_MAIL_ROOT);
if (prefix == NULL)
goto FAIL;