]> git.cworth.org Git - notmuch/blob - lib/notmuch.h
lib: publish API for notmuch_database_reopen
[notmuch] / lib / notmuch.h
1 /* notmuch - Not much of an email library, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see https://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 /**
22  * @defgroup notmuch The notmuch API
23  *
24  * Not much of an email library, (just index and search)
25  *
26  * @{
27  */
28
29 #ifndef NOTMUCH_H
30 #define NOTMUCH_H
31
32 #ifndef __DOXYGEN__
33
34 #ifdef  __cplusplus
35 # define NOTMUCH_BEGIN_DECLS  extern "C" {
36 # define NOTMUCH_END_DECLS    }
37 #else
38 # define NOTMUCH_BEGIN_DECLS
39 # define NOTMUCH_END_DECLS
40 #endif
41
42 NOTMUCH_BEGIN_DECLS
43
44 #include <time.h>
45
46 #pragma GCC visibility push(default)
47
48 #ifndef FALSE
49 #define FALSE 0
50 #endif
51
52 #ifndef TRUE
53 #define TRUE 1
54 #endif
55
56 /*
57  * The library version number.  This must agree with the soname
58  * version in Makefile.local.
59  */
60 #define LIBNOTMUCH_MAJOR_VERSION        5
61 #define LIBNOTMUCH_MINOR_VERSION        3
62 #define LIBNOTMUCH_MICRO_VERSION        0
63
64
65 #if defined (__clang_major__) && __clang_major__ >= 3 \
66     || defined (__GNUC__) && __GNUC__ >= 5 \
67     || defined (__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ >= 5
68 #define NOTMUCH_DEPRECATED(major, minor) \
69     __attribute__ ((deprecated ("function deprecated as of libnotmuch " #major "." #minor)))
70 #else
71 #define NOTMUCH_DEPRECATED(major, minor) __attribute__ ((deprecated))
72 #endif
73
74
75 #endif /* __DOXYGEN__ */
76
77 /**
78  * Check the version of the notmuch library being compiled against.
79  *
80  * Return true if the library being compiled against is of the
81  * specified version or above. For example:
82  *
83  * @code
84  * #if LIBNOTMUCH_CHECK_VERSION(3, 1, 0)
85  *     (code requiring libnotmuch 3.1.0 or above)
86  * #endif
87  * @endcode
88  *
89  * LIBNOTMUCH_CHECK_VERSION has been defined since version 3.1.0; to
90  * check for versions prior to that, use:
91  *
92  * @code
93  * #if !defined(NOTMUCH_CHECK_VERSION)
94  *     (code requiring libnotmuch prior to 3.1.0)
95  * #endif
96  * @endcode
97  */
98 #define LIBNOTMUCH_CHECK_VERSION(major, minor, micro)                   \
99     (LIBNOTMUCH_MAJOR_VERSION > (major) ||                                      \
100      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION > (minor)) || \
101      (LIBNOTMUCH_MAJOR_VERSION == (major) && LIBNOTMUCH_MINOR_VERSION == (minor) && \
102       LIBNOTMUCH_MICRO_VERSION >= (micro)))
103
104 /**
105  * Notmuch boolean type.
106  */
107 typedef int notmuch_bool_t;
108
109 /**
110  * Status codes used for the return values of most functions.
111  *
112  * A zero value (NOTMUCH_STATUS_SUCCESS) indicates that the function
113  * completed without error. Any other value indicates an error.
114  */
115 typedef enum _notmuch_status {
116     /**
117      * No error occurred.
118      */
119     NOTMUCH_STATUS_SUCCESS = 0,
120     /**
121      * Out of memory.
122      */
123     NOTMUCH_STATUS_OUT_OF_MEMORY,
124     /**
125      * An attempt was made to write to a database opened in read-only
126      * mode.
127      */
128     NOTMUCH_STATUS_READ_ONLY_DATABASE,
129     /**
130      * A Xapian exception occurred.
131      *
132      * @todo We don't really want to expose this lame XAPIAN_EXCEPTION
133      * value. Instead we should map to things like DATABASE_LOCKED or
134      * whatever.
135      */
136     NOTMUCH_STATUS_XAPIAN_EXCEPTION,
137     /**
138      * An error occurred trying to read or write to a file (this could
139      * be file not found, permission denied, etc.)
140      */
141     NOTMUCH_STATUS_FILE_ERROR,
142     /**
143      * A file was presented that doesn't appear to be an email
144      * message.
145      */
146     NOTMUCH_STATUS_FILE_NOT_EMAIL,
147     /**
148      * A file contains a message ID that is identical to a message
149      * already in the database.
150      */
151     NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID,
152     /**
153      * The user erroneously passed a NULL pointer to a notmuch
154      * function.
155      */
156     NOTMUCH_STATUS_NULL_POINTER,
157     /**
158      * A tag value is too long (exceeds NOTMUCH_TAG_MAX).
159      */
160     NOTMUCH_STATUS_TAG_TOO_LONG,
161     /**
162      * The notmuch_message_thaw function has been called more times
163      * than notmuch_message_freeze.
164      */
165     NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW,
166     /**
167      * notmuch_database_end_atomic has been called more times than
168      * notmuch_database_begin_atomic.
169      */
170     NOTMUCH_STATUS_UNBALANCED_ATOMIC,
171     /**
172      * The operation is not supported.
173      */
174     NOTMUCH_STATUS_UNSUPPORTED_OPERATION,
175     /**
176      * The operation requires a database upgrade.
177      */
178     NOTMUCH_STATUS_UPGRADE_REQUIRED,
179     /**
180      * There is a problem with the proposed path, e.g. a relative path
181      * passed to a function expecting an absolute path.
182      */
183     NOTMUCH_STATUS_PATH_ERROR,
184     /**
185      * The requested operation was ignored. Depending on the function,
186      * this may not be an actual error.
187      */
188     NOTMUCH_STATUS_IGNORED,
189     /**
190      * One of the arguments violates the preconditions for the
191      * function, in a way not covered by a more specific argument.
192      */
193     NOTMUCH_STATUS_ILLEGAL_ARGUMENT,
194     /**
195      * A MIME object claimed to have cryptographic protection which
196      * notmuch tried to handle, but the protocol was not specified in
197      * an intelligible way.
198      */
199     NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL,
200     /**
201      * Notmuch attempted to do crypto processing, but could not
202      * initialize the engine needed to do so.
203      */
204     NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION,
205     /**
206      * A MIME object claimed to have cryptographic protection, and
207      * notmuch attempted to process it, but the specific protocol was
208      * something that notmuch doesn't know how to handle.
209      */
210     NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL,
211     /**
212      * Unable to load a config file
213      */
214     NOTMUCH_STATUS_NO_CONFIG,
215     /**
216      * Database exists, so not (re)-created
217      */
218     NOTMUCH_STATUS_DATABASE_EXISTS,
219     /**
220      * Not an actual status value. Just a way to find out how many
221      * valid status values there are.
222      */
223     NOTMUCH_STATUS_LAST_STATUS
224 } notmuch_status_t;
225
226 /**
227  * Get a string representation of a notmuch_status_t value.
228  *
229  * The result is read-only.
230  */
231 const char *
232 notmuch_status_to_string (notmuch_status_t status);
233
234 /* Various opaque data types. For each notmuch_<foo>_t see the various
235  * notmuch_<foo> functions below. */
236 #ifndef __DOXYGEN__
237 typedef struct _notmuch_database notmuch_database_t;
238 typedef struct _notmuch_query notmuch_query_t;
239 typedef struct _notmuch_threads notmuch_threads_t;
240 typedef struct _notmuch_thread notmuch_thread_t;
241 typedef struct _notmuch_messages notmuch_messages_t;
242 typedef struct _notmuch_message notmuch_message_t;
243 typedef struct _notmuch_tags notmuch_tags_t;
244 typedef struct _notmuch_directory notmuch_directory_t;
245 typedef struct _notmuch_filenames notmuch_filenames_t;
246 typedef struct _notmuch_config_list notmuch_config_list_t;
247 typedef struct _notmuch_config_values notmuch_config_values_t;
248 typedef struct _notmuch_indexopts notmuch_indexopts_t;
249 #endif /* __DOXYGEN__ */
250
251 /**
252  * Create a new, empty notmuch database located at 'path'.
253  *
254  * The path should be a top-level directory to a collection of
255  * plain-text email messages (one message per file). This call will
256  * create a new ".notmuch" directory within 'path' where notmuch will
257  * store its data.
258  *
259  * After a successful call to notmuch_database_create, the returned
260  * database will be open so the caller should call
261  * notmuch_database_destroy when finished with it.
262  *
263  * The database will not yet have any data in it
264  * (notmuch_database_create itself is a very cheap function). Messages
265  * contained within 'path' can be added to the database by calling
266  * notmuch_database_index_file.
267  *
268  * In case of any failure, this function returns an error status and
269  * sets *database to NULL (after printing an error message on stderr).
270  *
271  * Return value:
272  *
273  * NOTMUCH_STATUS_SUCCESS: Successfully created the database.
274  *
275  * NOTMUCH_STATUS_NULL_POINTER: The given 'path' argument is NULL.
276  *
277  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
278  *
279  * NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to create the
280  *      database file (such as permission denied, or file not found,
281  *      etc.), or the database already exists.
282  *
283  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
284  */
285 notmuch_status_t
286 notmuch_database_create (const char *path, notmuch_database_t **database);
287
288 /**
289  * Like notmuch_database_create, except optionally return an error
290  * message. This message is allocated by malloc and should be freed by
291  * the caller.
292  */
293 notmuch_status_t
294 notmuch_database_create_verbose (const char *path,
295                                  notmuch_database_t **database,
296                                  char **error_message);
297
298 /**
299  * Database open mode for notmuch_database_open.
300  */
301 typedef enum {
302     /**
303      * Open database for reading only.
304      */
305     NOTMUCH_DATABASE_MODE_READ_ONLY = 0,
306     /**
307      * Open database for reading and writing.
308      */
309     NOTMUCH_DATABASE_MODE_READ_WRITE
310 } notmuch_database_mode_t;
311
312 /**
313  * Deprecated alias for notmuch_database_open_with_config with
314  * config_path=error_message=NULL
315  * @deprecated Deprecated as of libnotmuch 5.4 (notmuch 0.32)
316  */
317 /* NOTMUCH_DEPRECATED(5, 4) */
318 notmuch_status_t
319 notmuch_database_open (const char *path,
320                        notmuch_database_mode_t mode,
321                        notmuch_database_t **database);
322 /**
323  * Deprecated alias for notmuch_database_open_with_config with
324  * config_path=NULL
325  *
326  * @deprecated Deprecated as of libnotmuch 5.4 (notmuch 0.32)
327  *
328  */
329 /* NOTMUCH_DEPRECATED(5, 4) */
330 notmuch_status_t
331 notmuch_database_open_verbose (const char *path,
332                                notmuch_database_mode_t mode,
333                                notmuch_database_t **database,
334                                char **error_message);
335
336 /**
337  * Open an existing notmuch database located at 'database_path', using
338  * configuration in 'config_path'.
339  *
340  * @param[in]   database_path
341  * @parblock
342  * Path to existing database.
343  *
344  * A notmuch database is a Xapian database containing appropriate
345  * metadata.
346  *
347  * The database should have been created at some time in the past,
348  * (not necessarily by this process), by calling
349  * notmuch_database_create.
350  *
351  * If 'database_path' is NULL, use the location specified
352  *
353  * - in the environment variable NOTMUCH_DATABASE, if non-empty
354  *
355  * - in a configuration file, located as described under 'config_path'
356  *
357  * - by $XDG_DATA_HOME/notmuch/$PROFILE where XDG_DATA_HOME defaults
358  *   to "$HOME/.local/share" and PROFILE as as discussed in
359  *   'profile'
360  *
361  * If 'database_path' is non-NULL, but does not appear to be a Xapian
362  * database, check for a directory '.notmuch/xapian' below
363  * 'database_path' (this is the behavior of
364  * notmuch_database_open_verbose pre-0.32).
365  *
366  * @endparblock
367  * @param[in]   mode
368  * @parblock
369  * Mode to open database. Use one of #NOTMUCH_DATABASE_MODE_READ_WRITE
370  * or #NOTMUCH_DATABASE_MODE_READ_ONLY
371  *
372  * @endparblock
373  * @param[in]  config_path
374  * @parblock
375  * Path to config file.
376  *
377  * Config file is key-value, with mandatory sections. See
378  * <em>notmuch-config(5)</em> for more information. The key-value pair
379  * overrides the corresponding configuration data stored in the
380  * database (see <em>notmuch_database_get_config</em>)
381  *
382  * If <em>config_path</em> is NULL use the path specified
383  *
384  * - in environment variable <em>NOTMUCH_CONFIG</em>, if non-empty
385  *
386  * - by  <em>XDG_CONFIG_HOME</em>/notmuch/ where
387  *   XDG_CONFIG_HOME defaults to "$HOME/.config".
388  *
389  * - by $HOME/.notmuch-config
390  *
391  * If <em>config_path</em> is "" (empty string) then do not
392  * open any configuration file.
393  * @endparblock
394  * @param[in] profile:
395  * @parblock
396  * Name of profile (configuration/database variant).
397  *
398  * If non-NULL, append to the directory / file path determined for
399  * <em>config_path</em> and <em>database_path</em>.
400  *
401  * If NULL then use
402  * - environment variable NOTMUCH_PROFILE if defined,
403  * - otherwise "default" for directories and "" (empty string) for paths.
404  *
405  * @endparblock
406  * @param[out] database
407  * @parblock
408  * Pointer to database object. May not be NULL.
409  *
410  * The caller should call notmuch_database_destroy when finished with
411  * this database.
412  *
413  * In case of any failure, this function returns an error status and
414  * sets *database to NULL.
415  *
416  * @endparblock
417  * @param[out] error_message
418  * If non-NULL, store error message from opening the database.
419  * Any such message is allocated by \a malloc(3) and should be freed
420  * by the caller.
421  *
422  * @retval NOTMUCH_STATUS_SUCCESS: Successfully opened the database.
423  *
424  * @retval NOTMUCH_STATUS_NULL_POINTER: The given \a database
425  * argument is NULL.
426  *
427  * @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
428  *
429  * @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
430  *      database or config file (such as permission denied, or file not found,
431  *      etc.), or the database version is unknown.
432  *
433  * @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
434  *
435  * @since libnotmuch 5.4 (notmuch 0.32)
436  */
437
438 notmuch_status_t
439 notmuch_database_open_with_config (const char *database_path,
440                                    notmuch_database_mode_t mode,
441                                    const char *config_path,
442                                    const char *profile,
443                                    notmuch_database_t **database,
444                                    char **error_message);
445 /**
446  * Create a new notmuch database located at 'database_path', using
447  * configuration in 'config_path'.
448  *
449  * For description of arguments, @see notmuch_database_open_with_config
450  *
451  * @retval NOTMUCH_STATUS_SUCCESS: Successfully created the database.
452  *
453  * @retval NOTMUCH_STATUS_DATABASE_EXISTS: Database already exists, not created
454  *
455  * @retval NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
456  *
457  * @retval NOTMUCH_STATUS_FILE_ERROR: An error occurred trying to open the
458  *      database or config file (such as permission denied, or file not found,
459  *      etc.)
460  *
461  * @retval NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred.
462  *
463  * @since libnotmuch 5.4 (notmuch 0.32)
464  */
465
466 notmuch_status_t
467 notmuch_database_create_with_config (const char *database_path,
468                                      const char *config_path,
469                                      const char *profile,
470                                      notmuch_database_t **database,
471                                      char **error_message);
472
473 /**
474  * Retrieve last status string for given database.
475  *
476  */
477 const char *
478 notmuch_database_status_string (const notmuch_database_t *notmuch);
479
480 /**
481  * Commit changes and close the given notmuch database.
482  *
483  * After notmuch_database_close has been called, calls to other
484  * functions on objects derived from this database may either behave
485  * as if the database had not been closed (e.g., if the required data
486  * has been cached) or may fail with a
487  * NOTMUCH_STATUS_XAPIAN_EXCEPTION. The only further operation
488  * permitted on the database itself is to call
489  * notmuch_database_destroy.
490  *
491  * notmuch_database_close can be called multiple times.  Later calls
492  * have no effect.
493  *
494  * For writable databases, notmuch_database_close commits all changes
495  * to disk before closing the database.  If the caller is currently in
496  * an atomic section (there was a notmuch_database_begin_atomic
497  * without a matching notmuch_database_end_atomic), this will discard
498  * changes made in that atomic section (but still commit changes made
499  * prior to entering the atomic section).
500  *
501  * Return value:
502  *
503  * NOTMUCH_STATUS_SUCCESS: Successfully closed the database.
504  *
505  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred; the
506  *      database has been closed but there are no guarantees the
507  *      changes to the database, if any, have been flushed to disk.
508  */
509 notmuch_status_t
510 notmuch_database_close (notmuch_database_t *database);
511
512 /**
513  * A callback invoked by notmuch_database_compact to notify the user
514  * of the progress of the compaction process.
515  */
516 typedef void (*notmuch_compact_status_cb_t)(const char *message, void *closure);
517
518 /**
519  * Compact a notmuch database, backing up the original database to the
520  * given path.
521  *
522  * The database will be opened with NOTMUCH_DATABASE_MODE_READ_WRITE
523  * during the compaction process to ensure no writes are made.
524  *
525  * If the optional callback function 'status_cb' is non-NULL, it will
526  * be called with diagnostic and informational messages. The argument
527  * 'closure' is passed verbatim to any callback invoked.
528  */
529 notmuch_status_t
530 notmuch_database_compact (const char *path,
531                           const char *backup_path,
532                           notmuch_compact_status_cb_t status_cb,
533                           void *closure);
534
535 /**
536  * Like notmuch_database_compact, but take an open database as a
537  * parameter.
538  *
539  * @since libnnotmuch 5.4 (notmuch 0.32)
540  */
541 notmuch_status_t
542 notmuch_database_compact_db (notmuch_database_t *database,
543                              const char *backup_path,
544                              notmuch_compact_status_cb_t status_cb,
545                              void *closure);
546
547 /**
548  * Destroy the notmuch database, closing it if necessary and freeing
549  * all associated resources.
550  *
551  * Return value as in notmuch_database_close if the database was open;
552  * notmuch_database_destroy itself has no failure modes.
553  */
554 notmuch_status_t
555 notmuch_database_destroy (notmuch_database_t *database);
556
557 /**
558  * Return the database path of the given database.
559  *
560  * The return value is a string owned by notmuch so should not be
561  * modified nor freed by the caller.
562  */
563 const char *
564 notmuch_database_get_path (notmuch_database_t *database);
565
566 /**
567  * Return the database format version of the given database.
568  *
569  * @retval 0 on error
570  */
571 unsigned int
572 notmuch_database_get_version (notmuch_database_t *database);
573
574 /**
575  * Can the database be upgraded to a newer database version?
576  *
577  * If this function returns TRUE, then the caller may call
578  * notmuch_database_upgrade to upgrade the database.  If the caller
579  * does not upgrade an out-of-date database, then some functions may
580  * fail with NOTMUCH_STATUS_UPGRADE_REQUIRED.  This always returns
581  * FALSE for a read-only database because there's no way to upgrade a
582  * read-only database.
583  *
584  * Also returns FALSE if an error occurs accessing the database.
585  *
586  */
587 notmuch_bool_t
588 notmuch_database_needs_upgrade (notmuch_database_t *database);
589
590 /**
591  * Upgrade the current database to the latest supported version.
592  *
593  * This ensures that all current notmuch functionality will be
594  * available on the database.  After opening a database in read-write
595  * mode, it is recommended that clients check if an upgrade is needed
596  * (notmuch_database_needs_upgrade) and if so, upgrade with this
597  * function before making any modifications.  If
598  * notmuch_database_needs_upgrade returns FALSE, this will be a no-op.
599  *
600  * The optional progress_notify callback can be used by the caller to
601  * provide progress indication to the user. If non-NULL it will be
602  * called periodically with 'progress' as a floating-point value in
603  * the range of [0.0 .. 1.0] indicating the progress made so far in
604  * the upgrade process.  The argument 'closure' is passed verbatim to
605  * any callback invoked.
606  */
607 notmuch_status_t
608 notmuch_database_upgrade (notmuch_database_t *database,
609                           void (*progress_notify)(void *closure,
610                                                   double progress),
611                           void *closure);
612
613 /**
614  * Begin an atomic database operation.
615  *
616  * Any modifications performed between a successful begin and a
617  * notmuch_database_end_atomic will be applied to the database
618  * atomically.  Note that, unlike a typical database transaction, this
619  * only ensures atomicity, not durability; neither begin nor end
620  * necessarily flush modifications to disk.
621  *
622  * Atomic sections may be nested.  begin_atomic and end_atomic must
623  * always be called in pairs.
624  *
625  * Return value:
626  *
627  * NOTMUCH_STATUS_SUCCESS: Successfully entered atomic section.
628  *
629  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
630  *      atomic section not entered.
631  */
632 notmuch_status_t
633 notmuch_database_begin_atomic (notmuch_database_t *notmuch);
634
635 /**
636  * Indicate the end of an atomic database operation.
637  *
638  * Return value:
639  *
640  * NOTMUCH_STATUS_SUCCESS: Successfully completed atomic section.
641  *
642  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
643  *      atomic section not ended.
644  *
645  * NOTMUCH_STATUS_UNBALANCED_ATOMIC: The database is not currently in
646  *      an atomic section.
647  */
648 notmuch_status_t
649 notmuch_database_end_atomic (notmuch_database_t *notmuch);
650
651 /**
652  * Return the committed database revision and UUID.
653  *
654  * The database revision number increases monotonically with each
655  * commit to the database.  Hence, all messages and message changes
656  * committed to the database (that is, visible to readers) have a last
657  * modification revision <= the committed database revision.  Any
658  * messages committed in the future will be assigned a modification
659  * revision > the committed database revision.
660  *
661  * The UUID is a NUL-terminated opaque string that uniquely identifies
662  * this database.  Two revision numbers are only comparable if they
663  * have the same database UUID.
664  */
665 unsigned long
666 notmuch_database_get_revision (notmuch_database_t *notmuch,
667                                const char **uuid);
668
669 /**
670  * Retrieve a directory object from the database for 'path'.
671  *
672  * Here, 'path' should be a path relative to the path of 'database'
673  * (see notmuch_database_get_path), or else should be an absolute path
674  * with initial components that match the path of 'database'.
675  *
676  * If this directory object does not exist in the database, this
677  * returns NOTMUCH_STATUS_SUCCESS and sets *directory to NULL.
678  *
679  * Otherwise the returned directory object is owned by the database
680  * and as such, will only be valid until notmuch_database_destroy is
681  * called.
682  *
683  * Return value:
684  *
685  * NOTMUCH_STATUS_SUCCESS: Successfully retrieved directory.
686  *
687  * NOTMUCH_STATUS_NULL_POINTER: The given 'directory' argument is NULL.
688  *
689  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred;
690  *      directory not retrieved.
691  *
692  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
693  *      database to use this function.
694  */
695 notmuch_status_t
696 notmuch_database_get_directory (notmuch_database_t *database,
697                                 const char *path,
698                                 notmuch_directory_t **directory);
699
700 /**
701  * Add a message file to a database, indexing it for retrieval by
702  * future searches.  If a message already exists with the same message
703  * ID as the specified file, their indexes will be merged, and this
704  * new filename will also be associated with the existing message.
705  *
706  * Here, 'filename' should be a path relative to the path of
707  * 'database' (see notmuch_database_get_path), or else should be an
708  * absolute filename with initial components that match the path of
709  * 'database'.
710  *
711  * The file should be a single mail message (not a multi-message mbox)
712  * that is expected to remain at its current location, (since the
713  * notmuch database will reference the filename, and will not copy the
714  * entire contents of the file.
715  *
716  * If another message with the same message ID already exists in the
717  * database, rather than creating a new message, this adds the search
718  * terms from the identified file to the existing message's index, and
719  * adds 'filename' to the list of filenames known for the message.
720  *
721  * The 'indexopts' parameter can be NULL (meaning, use the indexing
722  * defaults from the database), or can be an explicit choice of
723  * indexing options that should govern the indexing of this specific
724  * 'filename'.
725  *
726  * If 'message' is not NULL, then, on successful return
727  * (NOTMUCH_STATUS_SUCCESS or NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID) '*message'
728  * will be initialized to a message object that can be used for things
729  * such as adding tags to the just-added message. The user should call
730  * notmuch_message_destroy when done with the message. On any failure
731  * '*message' will be set to NULL.
732  *
733  * Return value:
734  *
735  * NOTMUCH_STATUS_SUCCESS: Message successfully added to database.
736  *
737  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
738  *      message not added.
739  *
740  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: Message has the same message
741  *      ID as another message already in the database. The new
742  *      filename was successfully added to the message in the database
743  *      (if not already present) and the existing message is returned.
744  *
745  * NOTMUCH_STATUS_FILE_ERROR: an error occurred trying to open the
746  *      file, (such as permission denied, or file not found,
747  *      etc.). Nothing added to the database.
748  *
749  * NOTMUCH_STATUS_FILE_NOT_EMAIL: the contents of filename don't look
750  *      like an email message. Nothing added to the database.
751  *
752  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
753  *      mode so no message can be added.
754  *
755  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
756  *      database to use this function.
757  *
758  * @since libnotmuch 5.1 (notmuch 0.26)
759  */
760 notmuch_status_t
761 notmuch_database_index_file (notmuch_database_t *database,
762                              const char *filename,
763                              notmuch_indexopts_t *indexopts,
764                              notmuch_message_t **message);
765
766 /**
767  * Deprecated alias for notmuch_database_index_file called with
768  * NULL indexopts.
769  *
770  * @deprecated Deprecated as of libnotmuch 5.1 (notmuch 0.26). Please
771  * use notmuch_database_index_file instead.
772  *
773  */
774 NOTMUCH_DEPRECATED (5, 1)
775 notmuch_status_t
776 notmuch_database_add_message (notmuch_database_t *database,
777                               const char *filename,
778                               notmuch_message_t **message);
779
780 /**
781  * Remove a message filename from the given notmuch database. If the
782  * message has no more filenames, remove the message.
783  *
784  * If the same message (as determined by the message ID) is still
785  * available via other filenames, then the message will persist in the
786  * database for those filenames. When the last filename is removed for
787  * a particular message, the database content for that message will be
788  * entirely removed.
789  *
790  * Return value:
791  *
792  * NOTMUCH_STATUS_SUCCESS: The last filename was removed and the
793  *      message was removed from the database.
794  *
795  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred,
796  *      message not removed.
797  *
798  * NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: This filename was removed but
799  *      the message persists in the database with at least one other
800  *      filename.
801  *
802  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
803  *      mode so no message can be removed.
804  *
805  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
806  *      database to use this function.
807  */
808 notmuch_status_t
809 notmuch_database_remove_message (notmuch_database_t *database,
810                                  const char *filename);
811
812 /**
813  * Find a message with the given message_id.
814  *
815  * If a message with the given message_id is found then, on successful return
816  * (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to a message
817  * object.  The caller should call notmuch_message_destroy when done with the
818  * message.
819  *
820  * On any failure or when the message is not found, this function initializes
821  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
822  * caller is supposed to check '*message' for NULL to find out whether the
823  * message with the given message_id was found.
824  *
825  * Return value:
826  *
827  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'.
828  *
829  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
830  *
831  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating message object
832  *
833  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
834  */
835 notmuch_status_t
836 notmuch_database_find_message (notmuch_database_t *database,
837                                const char *message_id,
838                                notmuch_message_t **message);
839
840 /**
841  * Find a message with the given filename.
842  *
843  * If the database contains a message with the given filename then, on
844  * successful return (NOTMUCH_STATUS_SUCCESS) '*message' will be initialized to
845  * a message object. The caller should call notmuch_message_destroy when done
846  * with the message.
847  *
848  * On any failure or when the message is not found, this function initializes
849  * '*message' to NULL. This means, when NOTMUCH_STATUS_SUCCESS is returned, the
850  * caller is supposed to check '*message' for NULL to find out whether the
851  * message with the given filename is found.
852  *
853  * Return value:
854  *
855  * NOTMUCH_STATUS_SUCCESS: Successful return, check '*message'
856  *
857  * NOTMUCH_STATUS_NULL_POINTER: The given 'message' argument is NULL
858  *
859  * NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory, creating the message object
860  *
861  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred
862  *
863  * NOTMUCH_STATUS_UPGRADE_REQUIRED: The caller must upgrade the
864  *      database to use this function.
865  */
866 notmuch_status_t
867 notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
868                                            const char *filename,
869                                            notmuch_message_t **message);
870
871 /**
872  * Return a list of all tags found in the database.
873  *
874  * This function creates a list of all tags found in the database. The
875  * resulting list contains all tags from all messages found in the database.
876  *
877  * On error this function returns NULL.
878  */
879 notmuch_tags_t *
880 notmuch_database_get_all_tags (notmuch_database_t *db);
881
882 /**
883  * Reopen an open notmuch database.
884  *
885  */
886 notmuch_status_t
887 notmuch_database_reopen (notmuch_database_t *db, notmuch_database_mode_t mode);
888
889 /**
890  * Create a new query for 'database'.
891  *
892  * Here, 'database' should be an open database, (see
893  * notmuch_database_open and notmuch_database_create).
894  *
895  * For the query string, we'll document the syntax here more
896  * completely in the future, but it's likely to be a specialized
897  * version of the general Xapian query syntax:
898  *
899  * https://xapian.org/docs/queryparser.html
900  *
901  * As a special case, passing either a length-zero string, (that is ""),
902  * or a string consisting of a single asterisk (that is "*"), will
903  * result in a query that returns all messages in the database.
904  *
905  * See notmuch_query_set_sort for controlling the order of results.
906  * See notmuch_query_search_messages and notmuch_query_search_threads
907  * to actually execute the query.
908  *
909  * User should call notmuch_query_destroy when finished with this
910  * query.
911  *
912  * Will return NULL if insufficient memory is available.
913  */
914 notmuch_query_t *
915 notmuch_query_create (notmuch_database_t *database,
916                       const char *query_string);
917
918 /**
919  * Sort values for notmuch_query_set_sort.
920  */
921 typedef enum {
922     /**
923      * Oldest first.
924      */
925     NOTMUCH_SORT_OLDEST_FIRST,
926     /**
927      * Newest first.
928      */
929     NOTMUCH_SORT_NEWEST_FIRST,
930     /**
931      * Sort by message-id.
932      */
933     NOTMUCH_SORT_MESSAGE_ID,
934     /**
935      * Do not sort.
936      */
937     NOTMUCH_SORT_UNSORTED
938 } notmuch_sort_t;
939
940 /**
941  * Return the query_string of this query. See notmuch_query_create.
942  */
943 const char *
944 notmuch_query_get_query_string (const notmuch_query_t *query);
945
946 /**
947  * Return the notmuch database of this query. See notmuch_query_create.
948  */
949 notmuch_database_t *
950 notmuch_query_get_database (const notmuch_query_t *query);
951
952 /**
953  * Exclude values for notmuch_query_set_omit_excluded. The strange
954  * order is to maintain backward compatibility: the old FALSE/TRUE
955  * options correspond to the new
956  * NOTMUCH_EXCLUDE_FLAG/NOTMUCH_EXCLUDE_TRUE options.
957  */
958 typedef enum {
959     NOTMUCH_EXCLUDE_FLAG,
960     NOTMUCH_EXCLUDE_TRUE,
961     NOTMUCH_EXCLUDE_FALSE,
962     NOTMUCH_EXCLUDE_ALL
963 } notmuch_exclude_t;
964
965 /**
966  * Specify whether to omit excluded results or simply flag them.  By
967  * default, this is set to TRUE.
968  *
969  * If set to TRUE or ALL, notmuch_query_search_messages will omit excluded
970  * messages from the results, and notmuch_query_search_threads will omit
971  * threads that match only in excluded messages.  If set to TRUE,
972  * notmuch_query_search_threads will include all messages in threads that
973  * match in at least one non-excluded message.  Otherwise, if set to ALL,
974  * notmuch_query_search_threads will omit excluded messages from all threads.
975  *
976  * If set to FALSE or FLAG then both notmuch_query_search_messages and
977  * notmuch_query_search_threads will return all matching
978  * messages/threads regardless of exclude status. If set to FLAG then
979  * the exclude flag will be set for any excluded message that is
980  * returned by notmuch_query_search_messages, and the thread counts
981  * for threads returned by notmuch_query_search_threads will be the
982  * number of non-excluded messages/matches. Otherwise, if set to
983  * FALSE, then the exclude status is completely ignored.
984  *
985  * The performance difference when calling
986  * notmuch_query_search_messages should be relatively small (and both
987  * should be very fast).  However, in some cases,
988  * notmuch_query_search_threads is very much faster when omitting
989  * excluded messages as it does not need to construct the threads that
990  * only match in excluded messages.
991  */
992 void
993 notmuch_query_set_omit_excluded (notmuch_query_t *query,
994                                  notmuch_exclude_t omit_excluded);
995
996 /**
997  * Specify the sorting desired for this query.
998  */
999 void
1000 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
1001
1002 /**
1003  * Return the sort specified for this query. See
1004  * notmuch_query_set_sort.
1005  */
1006 notmuch_sort_t
1007 notmuch_query_get_sort (const notmuch_query_t *query);
1008
1009 /**
1010  * Add a tag that will be excluded from the query results by default.
1011  * This exclusion will be ignored if this tag appears explicitly in
1012  * the query.
1013  *
1014  * @returns
1015  *
1016  * NOTMUCH_STATUS_SUCCESS: excluded was added successfully.
1017  *
1018  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred.
1019  *      Most likely a problem lazily parsing the query string.
1020  *
1021  * NOTMUCH_STATUS_IGNORED: tag is explicitly present in the query, so
1022  *              not excluded.
1023  */
1024 notmuch_status_t
1025 notmuch_query_add_tag_exclude (notmuch_query_t *query, const char *tag);
1026
1027 /**
1028  * Execute a query for threads, returning a notmuch_threads_t object
1029  * which can be used to iterate over the results. The returned threads
1030  * object is owned by the query and as such, will only be valid until
1031  * notmuch_query_destroy.
1032  *
1033  * Typical usage might be:
1034  *
1035  *     notmuch_query_t *query;
1036  *     notmuch_threads_t *threads;
1037  *     notmuch_thread_t *thread;
1038  *     notmuch_status_t stat;
1039  *
1040  *     query = notmuch_query_create (database, query_string);
1041  *
1042  *     for (stat = notmuch_query_search_threads (query, &threads);
1043  *          stat == NOTMUCH_STATUS_SUCCESS &&
1044  *          notmuch_threads_valid (threads);
1045  *          notmuch_threads_move_to_next (threads))
1046  *     {
1047  *         thread = notmuch_threads_get (threads);
1048  *         ....
1049  *         notmuch_thread_destroy (thread);
1050  *     }
1051  *
1052  *     notmuch_query_destroy (query);
1053  *
1054  * Note: If you are finished with a thread before its containing
1055  * query, you can call notmuch_thread_destroy to clean up some memory
1056  * sooner (as in the above example). Otherwise, if your thread objects
1057  * are long-lived, then you don't need to call notmuch_thread_destroy
1058  * and all the memory will still be reclaimed when the query is
1059  * destroyed.
1060  *
1061  * Note that there's no explicit destructor needed for the
1062  * notmuch_threads_t object. (For consistency, we do provide a
1063  * notmuch_threads_destroy function, but there's no good reason
1064  * to call it if the query is about to be destroyed).
1065  *
1066  * @since libnotmuch 5.0 (notmuch 0.25)
1067  */
1068 notmuch_status_t
1069 notmuch_query_search_threads (notmuch_query_t *query,
1070                               notmuch_threads_t **out);
1071
1072 /**
1073  * Deprecated alias for notmuch_query_search_threads.
1074  *
1075  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please
1076  * use notmuch_query_search_threads instead.
1077  *
1078  */
1079 NOTMUCH_DEPRECATED (5, 0)
1080 notmuch_status_t
1081 notmuch_query_search_threads_st (notmuch_query_t *query, notmuch_threads_t **out);
1082
1083 /**
1084  * Execute a query for messages, returning a notmuch_messages_t object
1085  * which can be used to iterate over the results. The returned
1086  * messages object is owned by the query and as such, will only be
1087  * valid until notmuch_query_destroy.
1088  *
1089  * Typical usage might be:
1090  *
1091  *     notmuch_query_t *query;
1092  *     notmuch_messages_t *messages;
1093  *     notmuch_message_t *message;
1094  *
1095  *     query = notmuch_query_create (database, query_string);
1096  *
1097  *     for (messages = notmuch_query_search_messages (query);
1098  *          notmuch_messages_valid (messages);
1099  *          notmuch_messages_move_to_next (messages))
1100  *     {
1101  *         message = notmuch_messages_get (messages);
1102  *         ....
1103  *         notmuch_message_destroy (message);
1104  *     }
1105  *
1106  *     notmuch_query_destroy (query);
1107  *
1108  * Note: If you are finished with a message before its containing
1109  * query, you can call notmuch_message_destroy to clean up some memory
1110  * sooner (as in the above example). Otherwise, if your message
1111  * objects are long-lived, then you don't need to call
1112  * notmuch_message_destroy and all the memory will still be reclaimed
1113  * when the query is destroyed.
1114  *
1115  * Note that there's no explicit destructor needed for the
1116  * notmuch_messages_t object. (For consistency, we do provide a
1117  * notmuch_messages_destroy function, but there's no good
1118  * reason to call it if the query is about to be destroyed).
1119  *
1120  * If a Xapian exception occurs this function will return NULL.
1121  *
1122  * @since libnotmuch 5 (notmuch 0.25)
1123  */
1124 notmuch_status_t
1125 notmuch_query_search_messages (notmuch_query_t *query,
1126                                notmuch_messages_t **out);
1127 /**
1128  * Deprecated alias for notmuch_query_search_messages
1129  *
1130  * @deprecated Deprecated as of libnotmuch 5 (notmuch 0.25). Please use
1131  * notmuch_query_search_messages instead.
1132  *
1133  */
1134
1135 NOTMUCH_DEPRECATED (5, 0)
1136 notmuch_status_t
1137 notmuch_query_search_messages_st (notmuch_query_t *query,
1138                                   notmuch_messages_t **out);
1139
1140 /**
1141  * Destroy a notmuch_query_t along with any associated resources.
1142  *
1143  * This will in turn destroy any notmuch_threads_t and
1144  * notmuch_messages_t objects generated by this query, (and in
1145  * turn any notmuch_thread_t and notmuch_message_t objects generated
1146  * from those results, etc.), if such objects haven't already been
1147  * destroyed.
1148  */
1149 void
1150 notmuch_query_destroy (notmuch_query_t *query);
1151
1152 /**
1153  * Is the given 'threads' iterator pointing at a valid thread.
1154  *
1155  * When this function returns TRUE, notmuch_threads_get will return a
1156  * valid object. Whereas when this function returns FALSE,
1157  * notmuch_threads_get will return NULL.
1158  *
1159  * If passed a NULL pointer, this function returns FALSE
1160  *
1161  * See the documentation of notmuch_query_search_threads for example
1162  * code showing how to iterate over a notmuch_threads_t object.
1163  */
1164 notmuch_bool_t
1165 notmuch_threads_valid (notmuch_threads_t *threads);
1166
1167 /**
1168  * Get the current thread from 'threads' as a notmuch_thread_t.
1169  *
1170  * Note: The returned thread belongs to 'threads' and has a lifetime
1171  * identical to it (and the query to which it belongs).
1172  *
1173  * See the documentation of notmuch_query_search_threads for example
1174  * code showing how to iterate over a notmuch_threads_t object.
1175  *
1176  * If an out-of-memory situation occurs, this function will return
1177  * NULL.
1178  */
1179 notmuch_thread_t *
1180 notmuch_threads_get (notmuch_threads_t *threads);
1181
1182 /**
1183  * Move the 'threads' iterator to the next thread.
1184  *
1185  * If 'threads' is already pointing at the last thread then the
1186  * iterator will be moved to a point just beyond that last thread,
1187  * (where notmuch_threads_valid will return FALSE and
1188  * notmuch_threads_get will return NULL).
1189  *
1190  * See the documentation of notmuch_query_search_threads for example
1191  * code showing how to iterate over a notmuch_threads_t object.
1192  */
1193 void
1194 notmuch_threads_move_to_next (notmuch_threads_t *threads);
1195
1196 /**
1197  * Destroy a notmuch_threads_t object.
1198  *
1199  * It's not strictly necessary to call this function. All memory from
1200  * the notmuch_threads_t object will be reclaimed when the
1201  * containing query object is destroyed.
1202  */
1203 void
1204 notmuch_threads_destroy (notmuch_threads_t *threads);
1205
1206 /**
1207  * Return the number of messages matching a search.
1208  *
1209  * This function performs a search and returns the number of matching
1210  * messages.
1211  *
1212  * @returns
1213  *
1214  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1215  *
1216  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred. The
1217  *      value of *count is not defined.
1218  *
1219  * @since libnotmuch 5 (notmuch 0.25)
1220  */
1221 notmuch_status_t
1222 notmuch_query_count_messages (notmuch_query_t *query, unsigned int *count);
1223
1224 /**
1225  * Deprecated alias for notmuch_query_count_messages
1226  *
1227  *
1228  * @deprecated Deprecated since libnotmuch 5.0 (notmuch 0.25). Please
1229  * use notmuch_query_count_messages instead.
1230  */
1231 NOTMUCH_DEPRECATED (5, 0)
1232 notmuch_status_t
1233 notmuch_query_count_messages_st (notmuch_query_t *query, unsigned int *count);
1234
1235 /**
1236  * Return the number of threads matching a search.
1237  *
1238  * This function performs a search and returns the number of unique thread IDs
1239  * in the matching messages. This is the same as number of threads matching a
1240  * search.
1241  *
1242  * Note that this is a significantly heavier operation than
1243  * notmuch_query_count_messages{_st}().
1244  *
1245  * @returns
1246  *
1247  * NOTMUCH_STATUS_OUT_OF_MEMORY: Memory allocation failed. The value
1248  *      of *count is not defined
1249  *
1250  * NOTMUCH_STATUS_SUCCESS: query completed successfully.
1251  *
1252  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: a Xapian exception occurred. The
1253  *      value of *count is not defined.
1254  *
1255  * @since libnotmuch 5 (notmuch 0.25)
1256  */
1257 notmuch_status_t
1258 notmuch_query_count_threads (notmuch_query_t *query, unsigned *count);
1259
1260 /**
1261  * Deprecated alias for notmuch_query_count_threads
1262  *
1263  * @deprecated Deprecated as of libnotmuch 5.0 (notmuch 0.25). Please
1264  * use notmuch_query_count_threads_st instead.
1265  */
1266 NOTMUCH_DEPRECATED (5, 0)
1267 notmuch_status_t
1268 notmuch_query_count_threads_st (notmuch_query_t *query, unsigned *count);
1269
1270 /**
1271  * Get the thread ID of 'thread'.
1272  *
1273  * The returned string belongs to 'thread' and as such, should not be
1274  * modified by the caller and will only be valid for as long as the
1275  * thread is valid, (which is until notmuch_thread_destroy or until
1276  * the query from which it derived is destroyed).
1277  */
1278 const char *
1279 notmuch_thread_get_thread_id (notmuch_thread_t *thread);
1280
1281 /**
1282  * Get the total number of messages in 'thread'.
1283  *
1284  * This count consists of all messages in the database belonging to
1285  * this thread. Contrast with notmuch_thread_get_matched_messages() .
1286  */
1287 int
1288 notmuch_thread_get_total_messages (notmuch_thread_t *thread);
1289
1290 /**
1291  * Get the total number of files in 'thread'.
1292  *
1293  * This sums notmuch_message_count_files over all messages in the
1294  * thread
1295  * @returns Non-negative integer
1296  * @since libnotmuch 5.0 (notmuch 0.25)
1297  */
1298
1299 int
1300 notmuch_thread_get_total_files (notmuch_thread_t *thread);
1301
1302 /**
1303  * Get a notmuch_messages_t iterator for the top-level messages in
1304  * 'thread' in oldest-first order.
1305  *
1306  * This iterator will not necessarily iterate over all of the messages
1307  * in the thread. It will only iterate over the messages in the thread
1308  * which are not replies to other messages in the thread.
1309  *
1310  * The returned list will be destroyed when the thread is destroyed.
1311  */
1312 notmuch_messages_t *
1313 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread);
1314
1315 /**
1316  * Get a notmuch_thread_t iterator for all messages in 'thread' in
1317  * oldest-first order.
1318  *
1319  * The returned list will be destroyed when the thread is destroyed.
1320  */
1321 notmuch_messages_t *
1322 notmuch_thread_get_messages (notmuch_thread_t *thread);
1323
1324 /**
1325  * Get the number of messages in 'thread' that matched the search.
1326  *
1327  * This count includes only the messages in this thread that were
1328  * matched by the search from which the thread was created and were
1329  * not excluded by any exclude tags passed in with the query (see
1330  * notmuch_query_add_tag_exclude). Contrast with
1331  * notmuch_thread_get_total_messages() .
1332  */
1333 int
1334 notmuch_thread_get_matched_messages (notmuch_thread_t *thread);
1335
1336 /**
1337  * Get the authors of 'thread' as a UTF-8 string.
1338  *
1339  * The returned string is a comma-separated list of the names of the
1340  * authors of mail messages in the query results that belong to this
1341  * thread.
1342  *
1343  * The string contains authors of messages matching the query first, then
1344  * non-matched authors (with the two groups separated by '|'). Within
1345  * each group, authors are ordered by date.
1346  *
1347  * The returned string belongs to 'thread' and as such, should not be
1348  * modified by the caller and will only be valid for as long as the
1349  * thread is valid, (which is until notmuch_thread_destroy or until
1350  * the query from which it derived is destroyed).
1351  */
1352 const char *
1353 notmuch_thread_get_authors (notmuch_thread_t *thread);
1354
1355 /**
1356  * Get the subject of 'thread' as a UTF-8 string.
1357  *
1358  * The subject is taken from the first message (according to the query
1359  * order---see notmuch_query_set_sort) in the query results that
1360  * belongs to this thread.
1361  *
1362  * The returned string belongs to 'thread' and as such, should not be
1363  * modified by the caller and will only be valid for as long as the
1364  * thread is valid, (which is until notmuch_thread_destroy or until
1365  * the query from which it derived is destroyed).
1366  */
1367 const char *
1368 notmuch_thread_get_subject (notmuch_thread_t *thread);
1369
1370 /**
1371  * Get the date of the oldest message in 'thread' as a time_t value.
1372  */
1373 time_t
1374 notmuch_thread_get_oldest_date (notmuch_thread_t *thread);
1375
1376 /**
1377  * Get the date of the newest message in 'thread' as a time_t value.
1378  */
1379 time_t
1380 notmuch_thread_get_newest_date (notmuch_thread_t *thread);
1381
1382 /**
1383  * Get the tags for 'thread', returning a notmuch_tags_t object which
1384  * can be used to iterate over all tags.
1385  *
1386  * Note: In the Notmuch database, tags are stored on individual
1387  * messages, not on threads. So the tags returned here will be all
1388  * tags of the messages which matched the search and which belong to
1389  * this thread.
1390  *
1391  * The tags object is owned by the thread and as such, will only be
1392  * valid for as long as the thread is valid, (for example, until
1393  * notmuch_thread_destroy or until the query from which it derived is
1394  * destroyed).
1395  *
1396  * Typical usage might be:
1397  *
1398  *     notmuch_thread_t *thread;
1399  *     notmuch_tags_t *tags;
1400  *     const char *tag;
1401  *
1402  *     thread = notmuch_threads_get (threads);
1403  *
1404  *     for (tags = notmuch_thread_get_tags (thread);
1405  *          notmuch_tags_valid (tags);
1406  *          notmuch_tags_move_to_next (tags))
1407  *     {
1408  *         tag = notmuch_tags_get (tags);
1409  *         ....
1410  *     }
1411  *
1412  *     notmuch_thread_destroy (thread);
1413  *
1414  * Note that there's no explicit destructor needed for the
1415  * notmuch_tags_t object. (For consistency, we do provide a
1416  * notmuch_tags_destroy function, but there's no good reason to call
1417  * it if the message is about to be destroyed).
1418  */
1419 notmuch_tags_t *
1420 notmuch_thread_get_tags (notmuch_thread_t *thread);
1421
1422 /**
1423  * Destroy a notmuch_thread_t object.
1424  */
1425 void
1426 notmuch_thread_destroy (notmuch_thread_t *thread);
1427
1428 /**
1429  * Is the given 'messages' iterator pointing at a valid message.
1430  *
1431  * When this function returns TRUE, notmuch_messages_get will return a
1432  * valid object. Whereas when this function returns FALSE,
1433  * notmuch_messages_get will return NULL.
1434  *
1435  * See the documentation of notmuch_query_search_messages for example
1436  * code showing how to iterate over a notmuch_messages_t object.
1437  */
1438 notmuch_bool_t
1439 notmuch_messages_valid (notmuch_messages_t *messages);
1440
1441 /**
1442  * Get the current message from 'messages' as a notmuch_message_t.
1443  *
1444  * Note: The returned message belongs to 'messages' and has a lifetime
1445  * identical to it (and the query to which it belongs).
1446  *
1447  * See the documentation of notmuch_query_search_messages for example
1448  * code showing how to iterate over a notmuch_messages_t object.
1449  *
1450  * If an out-of-memory situation occurs, this function will return
1451  * NULL.
1452  */
1453 notmuch_message_t *
1454 notmuch_messages_get (notmuch_messages_t *messages);
1455
1456 /**
1457  * Move the 'messages' iterator to the next message.
1458  *
1459  * If 'messages' is already pointing at the last message then the
1460  * iterator will be moved to a point just beyond that last message,
1461  * (where notmuch_messages_valid will return FALSE and
1462  * notmuch_messages_get will return NULL).
1463  *
1464  * See the documentation of notmuch_query_search_messages for example
1465  * code showing how to iterate over a notmuch_messages_t object.
1466  */
1467 void
1468 notmuch_messages_move_to_next (notmuch_messages_t *messages);
1469
1470 /**
1471  * Destroy a notmuch_messages_t object.
1472  *
1473  * It's not strictly necessary to call this function. All memory from
1474  * the notmuch_messages_t object will be reclaimed when the containing
1475  * query object is destroyed.
1476  */
1477 void
1478 notmuch_messages_destroy (notmuch_messages_t *messages);
1479
1480 /**
1481  * Return a list of tags from all messages.
1482  *
1483  * The resulting list is guaranteed not to contain duplicated tags.
1484  *
1485  * WARNING: You can no longer iterate over messages after calling this
1486  * function, because the iterator will point at the end of the list.
1487  * We do not have a function to reset the iterator yet and the only
1488  * way how you can iterate over the list again is to recreate the
1489  * message list.
1490  *
1491  * The function returns NULL on error.
1492  */
1493 notmuch_tags_t *
1494 notmuch_messages_collect_tags (notmuch_messages_t *messages);
1495
1496 /**
1497  * Get the database associated with this message.
1498  *
1499  * @since libnotmuch 5.2 (notmuch 0.27)
1500  */
1501 notmuch_database_t *
1502 notmuch_message_get_database (const notmuch_message_t *message);
1503
1504 /**
1505  * Get the message ID of 'message'.
1506  *
1507  * The returned string belongs to 'message' and as such, should not be
1508  * modified by the caller and will only be valid for as long as the
1509  * message is valid, (which is until the query from which it derived
1510  * is destroyed).
1511  *
1512  * This function will return NULL if triggers an unhandled Xapian
1513  * exception.
1514  */
1515 const char *
1516 notmuch_message_get_message_id (notmuch_message_t *message);
1517
1518 /**
1519  * Get the thread ID of 'message'.
1520  *
1521  * The returned string belongs to 'message' and as such, should not be
1522  * modified by the caller and will only be valid for as long as the
1523  * message is valid, (for example, until the user calls
1524  * notmuch_message_destroy on 'message' or until a query from which it
1525  * derived is destroyed).
1526  *
1527  * This function will return NULL if triggers an unhandled Xapian
1528  * exception.
1529  */
1530 const char *
1531 notmuch_message_get_thread_id (notmuch_message_t *message);
1532
1533 /**
1534  * Get a notmuch_messages_t iterator for all of the replies to
1535  * 'message'.
1536  *
1537  * Note: This call only makes sense if 'message' was ultimately
1538  * obtained from a notmuch_thread_t object, (such as by coming
1539  * directly from the result of calling notmuch_thread_get_
1540  * toplevel_messages or by any number of subsequent
1541  * calls to notmuch_message_get_replies).
1542  *
1543  * If 'message' was obtained through some non-thread means, (such as
1544  * by a call to notmuch_query_search_messages), then this function
1545  * will return NULL.
1546  *
1547  * If there are no replies to 'message', this function will return
1548  * NULL. (Note that notmuch_messages_valid will accept that NULL
1549  * value as legitimate, and simply return FALSE for it.)
1550  *
1551  * This function also returns NULL if it triggers a Xapian exception.
1552  *
1553  * The returned list will be destroyed when the thread is
1554  * destroyed.
1555  */
1556 notmuch_messages_t *
1557 notmuch_message_get_replies (notmuch_message_t *message);
1558
1559 /**
1560  * Get the total number of files associated with a message.
1561  * @returns Non-negative integer for file count.
1562  * @returns Negative integer for error.
1563  * @since libnotmuch 5.0 (notmuch 0.25)
1564  */
1565 int
1566 notmuch_message_count_files (notmuch_message_t *message);
1567
1568 /**
1569  * Get a filename for the email corresponding to 'message'.
1570  *
1571  * The returned filename is an absolute filename, (the initial
1572  * component will match notmuch_database_get_path() ).
1573  *
1574  * The returned string belongs to the message so should not be
1575  * modified or freed by the caller (nor should it be referenced after
1576  * the message is destroyed).
1577  *
1578  * Note: If this message corresponds to multiple files in the mail
1579  * store, (that is, multiple files contain identical message IDs),
1580  * this function will arbitrarily return a single one of those
1581  * filenames. See notmuch_message_get_filenames for returning the
1582  * complete list of filenames.
1583  *
1584  * This function returns NULL if it triggers a Xapian exception.
1585  */
1586 const char *
1587 notmuch_message_get_filename (notmuch_message_t *message);
1588
1589 /**
1590  * Get all filenames for the email corresponding to 'message'.
1591  *
1592  * Returns a notmuch_filenames_t iterator listing all the filenames
1593  * associated with 'message'. These files may not have identical
1594  * content, but each will have the identical Message-ID.
1595  *
1596  * Each filename in the iterator is an absolute filename, (the initial
1597  * component will match notmuch_database_get_path() ).
1598  *
1599  * This function returns NULL if it triggers a Xapian exception.
1600  */
1601 notmuch_filenames_t *
1602 notmuch_message_get_filenames (notmuch_message_t *message);
1603
1604 /**
1605  * Re-index the e-mail corresponding to 'message' using the supplied index options
1606  *
1607  * Returns the status of the re-index operation.  (see the return
1608  * codes documented in notmuch_database_index_file)
1609  *
1610  * After reindexing, the user should discard the message object passed
1611  * in here by calling notmuch_message_destroy, since it refers to the
1612  * original message, not to the reindexed message.
1613  */
1614 notmuch_status_t
1615 notmuch_message_reindex (notmuch_message_t *message,
1616                          notmuch_indexopts_t *indexopts);
1617
1618 /**
1619  * Message flags.
1620  */
1621 typedef enum _notmuch_message_flag {
1622     NOTMUCH_MESSAGE_FLAG_MATCH,
1623     NOTMUCH_MESSAGE_FLAG_EXCLUDED,
1624
1625     /* This message is a "ghost message", meaning it has no filenames
1626      * or content, but we know it exists because it was referenced by
1627      * some other message.  A ghost message has only a message ID and
1628      * thread ID.
1629      */
1630     NOTMUCH_MESSAGE_FLAG_GHOST,
1631 } notmuch_message_flag_t;
1632
1633 /**
1634  * Get a value of a flag for the email corresponding to 'message'.
1635  *
1636  * returns FALSE in case of errors.
1637  *
1638  * @deprecated Deprecated as of libnotmuch 5.3 (notmuch 0.31). Please
1639  * use notmuch_message_get_flag_st instead.
1640  */
1641 NOTMUCH_DEPRECATED (5, 3)
1642 notmuch_bool_t
1643 notmuch_message_get_flag (notmuch_message_t *message,
1644                           notmuch_message_flag_t flag);
1645
1646 /**
1647  * Get a value of a flag for the email corresponding to 'message'.
1648  *
1649  * @param message a message object
1650  * @param flag flag to check
1651  * @param is_set pointer to boolean to store flag value.
1652  *
1653  * @retval #NOTMUCH_STATUS_SUCCESS
1654  * @retval #NOTMUCH_STATUS_NULL_POINTER is_set is NULL
1655  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION Accessing the database
1656  * triggered an exception.
1657  *
1658  * @since libnotmuch 5.3 (notmuch 0.31)
1659  */
1660 notmuch_status_t
1661 notmuch_message_get_flag_st (notmuch_message_t *message,
1662                              notmuch_message_flag_t flag,
1663                              notmuch_bool_t *is_set);
1664
1665 /**
1666  * Set a value of a flag for the email corresponding to 'message'.
1667  */
1668 void
1669 notmuch_message_set_flag (notmuch_message_t *message,
1670                           notmuch_message_flag_t flag, notmuch_bool_t value);
1671
1672 /**
1673  * Get the date of 'message' as a time_t value.
1674  *
1675  * For the original textual representation of the Date header from the
1676  * message call notmuch_message_get_header() with a header value of
1677  * "date".
1678  *
1679  * Returns 0 in case of error.
1680  */
1681 time_t
1682 notmuch_message_get_date (notmuch_message_t *message);
1683
1684 /**
1685  * Get the value of the specified header from 'message' as a UTF-8 string.
1686  *
1687  * Common headers are stored in the database when the message is
1688  * indexed and will be returned from the database.  Other headers will
1689  * be read from the actual message file.
1690  *
1691  * The header name is case insensitive.
1692  *
1693  * The returned string belongs to the message so should not be
1694  * modified or freed by the caller (nor should it be referenced after
1695  * the message is destroyed).
1696  *
1697  * Returns an empty string ("") if the message does not contain a
1698  * header line matching 'header'. Returns NULL if any error occurs.
1699  */
1700 const char *
1701 notmuch_message_get_header (notmuch_message_t *message, const char *header);
1702
1703 /**
1704  * Get the tags for 'message', returning a notmuch_tags_t object which
1705  * can be used to iterate over all tags.
1706  *
1707  * The tags object is owned by the message and as such, will only be
1708  * valid for as long as the message is valid, (which is until the
1709  * query from which it derived is destroyed).
1710  *
1711  * Typical usage might be:
1712  *
1713  *     notmuch_message_t *message;
1714  *     notmuch_tags_t *tags;
1715  *     const char *tag;
1716  *
1717  *     message = notmuch_database_find_message (database, message_id);
1718  *
1719  *     for (tags = notmuch_message_get_tags (message);
1720  *          notmuch_tags_valid (tags);
1721  *          notmuch_tags_move_to_next (tags))
1722  *     {
1723  *         tag = notmuch_tags_get (tags);
1724  *         ....
1725  *     }
1726  *
1727  *     notmuch_message_destroy (message);
1728  *
1729  * Note that there's no explicit destructor needed for the
1730  * notmuch_tags_t object. (For consistency, we do provide a
1731  * notmuch_tags_destroy function, but there's no good reason to call
1732  * it if the message is about to be destroyed).
1733  */
1734 notmuch_tags_t *
1735 notmuch_message_get_tags (notmuch_message_t *message);
1736
1737 /**
1738  * The longest possible tag value.
1739  */
1740 #define NOTMUCH_TAG_MAX 200
1741
1742 /**
1743  * Add a tag to the given message.
1744  *
1745  * Return value:
1746  *
1747  * NOTMUCH_STATUS_SUCCESS: Tag successfully added to message
1748  *
1749  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1750  *
1751  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1752  *      (exceeds NOTMUCH_TAG_MAX)
1753  *
1754  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1755  *      mode so message cannot be modified.
1756  */
1757 notmuch_status_t
1758 notmuch_message_add_tag (notmuch_message_t *message, const char *tag);
1759
1760 /**
1761  * Remove a tag from the given message.
1762  *
1763  * Return value:
1764  *
1765  * NOTMUCH_STATUS_SUCCESS: Tag successfully removed from message
1766  *
1767  * NOTMUCH_STATUS_NULL_POINTER: The 'tag' argument is NULL
1768  *
1769  * NOTMUCH_STATUS_TAG_TOO_LONG: The length of 'tag' is too long
1770  *      (exceeds NOTMUCH_TAG_MAX)
1771  *
1772  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1773  *      mode so message cannot be modified.
1774  */
1775 notmuch_status_t
1776 notmuch_message_remove_tag (notmuch_message_t *message, const char *tag);
1777
1778 /**
1779  * Remove all tags from the given message.
1780  *
1781  * See notmuch_message_freeze for an example showing how to safely
1782  * replace tag values.
1783  *
1784  * @retval #NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
1785  *      read-only mode so message cannot be modified.
1786  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION: an exception was thrown
1787  *      accessing the database.
1788  */
1789 notmuch_status_t
1790 notmuch_message_remove_all_tags (notmuch_message_t *message);
1791
1792 /**
1793  * Add/remove tags according to maildir flags in the message filename(s).
1794  *
1795  * This function examines the filenames of 'message' for maildir
1796  * flags, and adds or removes tags on 'message' as follows when these
1797  * flags are present:
1798  *
1799  *      Flag    Action if present
1800  *      ----    -----------------
1801  *      'D'     Adds the "draft" tag to the message
1802  *      'F'     Adds the "flagged" tag to the message
1803  *      'P'     Adds the "passed" tag to the message
1804  *      'R'     Adds the "replied" tag to the message
1805  *      'S'     Removes the "unread" tag from the message
1806  *
1807  * For each flag that is not present, the opposite action (add/remove)
1808  * is performed for the corresponding tags.
1809  *
1810  * Flags are identified as trailing components of the filename after a
1811  * sequence of ":2,".
1812  *
1813  * If there are multiple filenames associated with this message, the
1814  * flag is considered present if it appears in one or more
1815  * filenames. (That is, the flags from the multiple filenames are
1816  * combined with the logical OR operator.)
1817  *
1818  * A client can ensure that notmuch database tags remain synchronized
1819  * with maildir flags by calling this function after each call to
1820  * notmuch_database_index_file. See also
1821  * notmuch_message_tags_to_maildir_flags for synchronizing tag changes
1822  * back to maildir flags.
1823  */
1824 notmuch_status_t
1825 notmuch_message_maildir_flags_to_tags (notmuch_message_t *message);
1826
1827 /**
1828  * return TRUE if any filename of 'message' has maildir flag 'flag',
1829  * FALSE otherwise.
1830  *
1831  * Deprecated wrapper for notmuch_message_has_maildir_flag_st
1832  *
1833  * @returns FALSE in case of error
1834  * @deprecated libnotmuch 5.3 (notmuch 0.31)
1835  */
1836 NOTMUCH_DEPRECATED (5, 3)
1837 notmuch_bool_t
1838 notmuch_message_has_maildir_flag (notmuch_message_t *message, char flag);
1839
1840 /**
1841  * check message for maildir flag
1842  *
1843  * @param [in,out]      message message to check
1844  * @param [in] flag     flag to check for
1845  * @param [out] is_set  pointer to boolean
1846  *
1847  * @retval #NOTMUCH_STATUS_SUCCESS
1848  * @retval #NOTMUCH_STATUS_NULL_POINTER is_set is NULL
1849  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION Accessing the database
1850  * triggered an exception.
1851  */
1852 notmuch_status_t
1853 notmuch_message_has_maildir_flag_st (notmuch_message_t *message,
1854                                      char flag,
1855                                      notmuch_bool_t *is_set);
1856
1857 /**
1858  * Rename message filename(s) to encode tags as maildir flags.
1859  *
1860  * Specifically, for each filename corresponding to this message:
1861  *
1862  * If the filename is not in a maildir directory, do nothing.  (A
1863  * maildir directory is determined as a directory named "new" or
1864  * "cur".) Similarly, if the filename has invalid maildir info,
1865  * (repeated or outof-ASCII-order flag characters after ":2,"), then
1866  * do nothing.
1867  *
1868  * If the filename is in a maildir directory, rename the file so that
1869  * its filename ends with the sequence ":2," followed by zero or more
1870  * of the following single-character flags (in ASCII order):
1871  *
1872  *   * flag 'D' iff the message has the "draft" tag
1873  *   * flag 'F' iff the message has the "flagged" tag
1874  *   * flag 'P' iff the message has the "passed" tag
1875  *   * flag 'R' iff the message has the "replied" tag
1876  *   * flag 'S' iff the message does not have the "unread" tag
1877  *
1878  * Any existing flags unmentioned in the list above will be preserved
1879  * in the renaming.
1880  *
1881  * Also, if this filename is in a directory named "new", rename it to
1882  * be within the neighboring directory named "cur".
1883  *
1884  * A client can ensure that maildir filename flags remain synchronized
1885  * with notmuch database tags by calling this function after changing
1886  * tags, (after calls to notmuch_message_add_tag,
1887  * notmuch_message_remove_tag, or notmuch_message_freeze/
1888  * notmuch_message_thaw). See also notmuch_message_maildir_flags_to_tags
1889  * for synchronizing maildir flag changes back to tags.
1890  */
1891 notmuch_status_t
1892 notmuch_message_tags_to_maildir_flags (notmuch_message_t *message);
1893
1894 /**
1895  * Freeze the current state of 'message' within the database.
1896  *
1897  * This means that changes to the message state, (via
1898  * notmuch_message_add_tag, notmuch_message_remove_tag, and
1899  * notmuch_message_remove_all_tags), will not be committed to the
1900  * database until the message is thawed with notmuch_message_thaw.
1901  *
1902  * Multiple calls to freeze/thaw are valid and these calls will
1903  * "stack". That is there must be as many calls to thaw as to freeze
1904  * before a message is actually thawed.
1905  *
1906  * The ability to do freeze/thaw allows for safe transactions to
1907  * change tag values. For example, explicitly setting a message to
1908  * have a given set of tags might look like this:
1909  *
1910  *    notmuch_message_freeze (message);
1911  *
1912  *    notmuch_message_remove_all_tags (message);
1913  *
1914  *    for (i = 0; i < NUM_TAGS; i++)
1915  *        notmuch_message_add_tag (message, tags[i]);
1916  *
1917  *    notmuch_message_thaw (message);
1918  *
1919  * With freeze/thaw used like this, the message in the database is
1920  * guaranteed to have either the full set of original tag values, or
1921  * the full set of new tag values, but nothing in between.
1922  *
1923  * Imagine the example above without freeze/thaw and the operation
1924  * somehow getting interrupted. This could result in the message being
1925  * left with no tags if the interruption happened after
1926  * notmuch_message_remove_all_tags but before notmuch_message_add_tag.
1927  *
1928  * Return value:
1929  *
1930  * NOTMUCH_STATUS_SUCCESS: Message successfully frozen.
1931  *
1932  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
1933  *      mode so message cannot be modified.
1934  */
1935 notmuch_status_t
1936 notmuch_message_freeze (notmuch_message_t *message);
1937
1938 /**
1939  * Thaw the current 'message', synchronizing any changes that may have
1940  * occurred while 'message' was frozen into the notmuch database.
1941  *
1942  * See notmuch_message_freeze for an example of how to use this
1943  * function to safely provide tag changes.
1944  *
1945  * Multiple calls to freeze/thaw are valid and these calls with
1946  * "stack". That is there must be as many calls to thaw as to freeze
1947  * before a message is actually thawed.
1948  *
1949  * Return value:
1950  *
1951  * NOTMUCH_STATUS_SUCCESS: Message successfully thawed, (or at least
1952  *      its frozen count has successfully been reduced by 1).
1953  *
1954  * NOTMUCH_STATUS_UNBALANCED_FREEZE_THAW: An attempt was made to thaw
1955  *      an unfrozen message. That is, there have been an unbalanced
1956  *      number of calls to notmuch_message_freeze and
1957  *      notmuch_message_thaw.
1958  */
1959 notmuch_status_t
1960 notmuch_message_thaw (notmuch_message_t *message);
1961
1962 /**
1963  * Destroy a notmuch_message_t object.
1964  *
1965  * It can be useful to call this function in the case of a single
1966  * query object with many messages in the result, (such as iterating
1967  * over the entire database). Otherwise, it's fine to never call this
1968  * function and there will still be no memory leaks. (The memory from
1969  * the messages get reclaimed when the containing query is destroyed.)
1970  */
1971 void
1972 notmuch_message_destroy (notmuch_message_t *message);
1973
1974 /**
1975  * @name Message Properties
1976  *
1977  * This interface provides the ability to attach arbitrary (key,value)
1978  * string pairs to a message, to remove such pairs, and to iterate
1979  * over them.  The caller should take some care as to what keys they
1980  * add or delete values for, as other subsystems or extensions may
1981  * depend on these properties.
1982  *
1983  * Please see notmuch-properties(7) for more details about specific
1984  * properties and conventions around their use.
1985  *
1986  */
1987 /**@{*/
1988 /**
1989  * Retrieve the value for a single property key
1990  *
1991  * *value* is set to a string owned by the message or NULL if there is
1992  * no such key. In the case of multiple values for the given key, the
1993  * first one is retrieved.
1994  *
1995  * @returns
1996  * - NOTMUCH_STATUS_NULL_POINTER: *value* may not be NULL.
1997  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
1998  * @since libnotmuch 4.4 (notmuch 0.23)
1999  */
2000 notmuch_status_t
2001 notmuch_message_get_property (notmuch_message_t *message, const char *key, const char **value);
2002
2003 /**
2004  * Add a (key,value) pair to a message
2005  *
2006  * @returns
2007  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
2008  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
2009  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2010  * @since libnotmuch 4.4 (notmuch 0.23)
2011  */
2012 notmuch_status_t
2013 notmuch_message_add_property (notmuch_message_t *message, const char *key, const char *value);
2014
2015 /**
2016  * Remove a (key,value) pair from a message.
2017  *
2018  * It is not an error to remove a non-existent (key,value) pair
2019  *
2020  * @returns
2021  * - NOTMUCH_STATUS_ILLEGAL_ARGUMENT: *key* may not contain an '=' character.
2022  * - NOTMUCH_STATUS_NULL_POINTER: Neither *key* nor *value* may be NULL.
2023  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2024  * @since libnotmuch 4.4 (notmuch 0.23)
2025  */
2026 notmuch_status_t
2027 notmuch_message_remove_property (notmuch_message_t *message, const char *key, const char *value);
2028
2029 /**
2030  * Remove all (key,value) pairs from the given message.
2031  *
2032  * @param[in,out] message  message to operate on.
2033  * @param[in]     key      key to delete properties for. If NULL, delete
2034  *                         properties for all keys
2035  * @returns
2036  * - NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2037  *   read-only mode so message cannot be modified.
2038  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2039  *
2040  * @since libnotmuch 4.4 (notmuch 0.23)
2041  */
2042 notmuch_status_t
2043 notmuch_message_remove_all_properties (notmuch_message_t *message, const char *key);
2044
2045 /**
2046  * Remove all (prefix*,value) pairs from the given message
2047  *
2048  * @param[in,out] message  message to operate on.
2049  * @param[in]     prefix   delete properties with keys that start with prefix.
2050  *                         If NULL, delete all properties
2051  * @returns
2052  * - NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2053  *   read-only mode so message cannot be modified.
2054  * - NOTMUCH_STATUS_SUCCESS: No error occurred.
2055  *
2056  * @since libnotmuch 5.1 (notmuch 0.26)
2057  */
2058 notmuch_status_t
2059 notmuch_message_remove_all_properties_with_prefix (notmuch_message_t *message, const char *prefix);
2060
2061 /**
2062  * Opaque message property iterator
2063  */
2064 typedef struct _notmuch_string_map_iterator notmuch_message_properties_t;
2065
2066 /**
2067  * Get the properties for *message*, returning a
2068  * notmuch_message_properties_t object which can be used to iterate
2069  * over all properties.
2070  *
2071  * The notmuch_message_properties_t object is owned by the message and
2072  * as such, will only be valid for as long as the message is valid,
2073  * (which is until the query from which it derived is destroyed).
2074  *
2075  * @param[in] message  The message to examine
2076  * @param[in] key      key or key prefix
2077  * @param[in] exact    if TRUE, require exact match with key. Otherwise
2078  *                     treat as prefix.
2079  *
2080  * Typical usage might be:
2081  *
2082  *     notmuch_message_properties_t *list;
2083  *
2084  *     for (list = notmuch_message_get_properties (message, "testkey1", TRUE);
2085  *          notmuch_message_properties_valid (list); notmuch_message_properties_move_to_next (list)) {
2086  *        printf("%s\n", notmuch_message_properties_value(list));
2087  *     }
2088  *
2089  *     notmuch_message_properties_destroy (list);
2090  *
2091  * Note that there's no explicit destructor needed for the
2092  * notmuch_message_properties_t object. (For consistency, we do
2093  * provide a notmuch_message_properities_destroy function, but there's
2094  * no good reason to call it if the message is about to be destroyed).
2095  *
2096  * @since libnotmuch 4.4 (notmuch 0.23)
2097  */
2098 notmuch_message_properties_t *
2099 notmuch_message_get_properties (notmuch_message_t *message, const char *key, notmuch_bool_t exact);
2100
2101 /**
2102  * Return the number of properties named "key" belonging to the specific message.
2103  *
2104  * @param[in] message  The message to examine
2105  * @param[in] key      key to count
2106  * @param[out] count   The number of matching properties associated with this message.
2107  *
2108  * @returns
2109  *
2110  * NOTMUCH_STATUS_SUCCESS: successful count, possibly some other error.
2111  *
2112  * @since libnotmuch 5.2 (notmuch 0.27)
2113  */
2114 notmuch_status_t
2115 notmuch_message_count_properties (notmuch_message_t *message, const char *key, unsigned int *count);
2116
2117 /**
2118  * Is the given *properties* iterator pointing at a valid (key,value)
2119  * pair.
2120  *
2121  * When this function returns TRUE,
2122  * notmuch_message_properties_{key,value} will return a valid string,
2123  * and notmuch_message_properties_move_to_next will do what it
2124  * says. Whereas when this function returns FALSE, calling any of
2125  * these functions results in undefined behaviour.
2126  *
2127  * See the documentation of notmuch_message_get_properties for example
2128  * code showing how to iterate over a notmuch_message_properties_t
2129  * object.
2130  *
2131  * @since libnotmuch 4.4 (notmuch 0.23)
2132  */
2133 notmuch_bool_t
2134 notmuch_message_properties_valid (notmuch_message_properties_t *properties);
2135
2136 /**
2137  * Move the *properties* iterator to the next (key,value) pair
2138  *
2139  * If *properties* is already pointing at the last pair then the iterator
2140  * will be moved to a point just beyond that last pair, (where
2141  * notmuch_message_properties_valid will return FALSE).
2142  *
2143  * See the documentation of notmuch_message_get_properties for example
2144  * code showing how to iterate over a notmuch_message_properties_t object.
2145  *
2146  * @since libnotmuch 4.4 (notmuch 0.23)
2147  */
2148 void
2149 notmuch_message_properties_move_to_next (notmuch_message_properties_t *properties);
2150
2151 /**
2152  * Return the key from the current (key,value) pair.
2153  *
2154  * this could be useful if iterating for a prefix
2155  *
2156  * @since libnotmuch 4.4 (notmuch 0.23)
2157  */
2158 const char *
2159 notmuch_message_properties_key (notmuch_message_properties_t *properties);
2160
2161 /**
2162  * Return the value from the current (key,value) pair.
2163  *
2164  * This could be useful if iterating for a prefix.
2165  *
2166  * @since libnotmuch 4.4 (notmuch 0.23)
2167  */
2168 const char *
2169 notmuch_message_properties_value (notmuch_message_properties_t *properties);
2170
2171
2172 /**
2173  * Destroy a notmuch_message_properties_t object.
2174  *
2175  * It's not strictly necessary to call this function. All memory from
2176  * the notmuch_message_properties_t object will be reclaimed when the
2177  * containing message object is destroyed.
2178  *
2179  * @since libnotmuch 4.4 (notmuch 0.23)
2180  */
2181 void
2182 notmuch_message_properties_destroy (notmuch_message_properties_t *properties);
2183
2184 /**@}*/
2185
2186 /**
2187  * Is the given 'tags' iterator pointing at a valid tag.
2188  *
2189  * When this function returns TRUE, notmuch_tags_get will return a
2190  * valid string. Whereas when this function returns FALSE,
2191  * notmuch_tags_get will return NULL.
2192  *
2193  * See the documentation of notmuch_message_get_tags for example code
2194  * showing how to iterate over a notmuch_tags_t object.
2195  */
2196 notmuch_bool_t
2197 notmuch_tags_valid (notmuch_tags_t *tags);
2198
2199 /**
2200  * Get the current tag from 'tags' as a string.
2201  *
2202  * Note: The returned string belongs to 'tags' and has a lifetime
2203  * identical to it (and the query to which it ultimately belongs).
2204  *
2205  * See the documentation of notmuch_message_get_tags for example code
2206  * showing how to iterate over a notmuch_tags_t object.
2207  */
2208 const char *
2209 notmuch_tags_get (notmuch_tags_t *tags);
2210
2211 /**
2212  * Move the 'tags' iterator to the next tag.
2213  *
2214  * If 'tags' is already pointing at the last tag then the iterator
2215  * will be moved to a point just beyond that last tag, (where
2216  * notmuch_tags_valid will return FALSE and notmuch_tags_get will
2217  * return NULL).
2218  *
2219  * See the documentation of notmuch_message_get_tags for example code
2220  * showing how to iterate over a notmuch_tags_t object.
2221  */
2222 void
2223 notmuch_tags_move_to_next (notmuch_tags_t *tags);
2224
2225 /**
2226  * Destroy a notmuch_tags_t object.
2227  *
2228  * It's not strictly necessary to call this function. All memory from
2229  * the notmuch_tags_t object will be reclaimed when the containing
2230  * message or query objects are destroyed.
2231  */
2232 void
2233 notmuch_tags_destroy (notmuch_tags_t *tags);
2234
2235 /**
2236  * Store an mtime within the database for 'directory'.
2237  *
2238  * The 'directory' should be an object retrieved from the database
2239  * with notmuch_database_get_directory for a particular path.
2240  *
2241  * The intention is for the caller to use the mtime to allow efficient
2242  * identification of new messages to be added to the database. The
2243  * recommended usage is as follows:
2244  *
2245  *   o Read the mtime of a directory from the filesystem
2246  *
2247  *   o Call index_file for all mail files in the directory
2248  *
2249  *   o Call notmuch_directory_set_mtime with the mtime read from the
2250  *     filesystem.
2251  *
2252  * Then, when wanting to check for updates to the directory in the
2253  * future, the client can call notmuch_directory_get_mtime and know
2254  * that it only needs to add files if the mtime of the directory and
2255  * files are newer than the stored timestamp.
2256  *
2257  * Note: The notmuch_directory_get_mtime function does not allow the
2258  * caller to distinguish a timestamp of 0 from a non-existent
2259  * timestamp. So don't store a timestamp of 0 unless you are
2260  * comfortable with that.
2261  *
2262  * Return value:
2263  *
2264  * NOTMUCH_STATUS_SUCCESS: mtime successfully stored in database.
2265  *
2266  * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception
2267  *      occurred, mtime not stored.
2268  *
2269  * NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in read-only
2270  *      mode so directory mtime cannot be modified.
2271  */
2272 notmuch_status_t
2273 notmuch_directory_set_mtime (notmuch_directory_t *directory,
2274                              time_t mtime);
2275
2276 /**
2277  * Get the mtime of a directory, (as previously stored with
2278  * notmuch_directory_set_mtime).
2279  *
2280  * Returns 0 if no mtime has previously been stored for this
2281  * directory.
2282  */
2283 time_t
2284 notmuch_directory_get_mtime (notmuch_directory_t *directory);
2285
2286 /**
2287  * Get a notmuch_filenames_t iterator listing all the filenames of
2288  * messages in the database within the given directory.
2289  *
2290  * The returned filenames will be the basename-entries only (not
2291  * complete paths).
2292  *
2293  * Returns NULL if it triggers a Xapian exception
2294  */
2295 notmuch_filenames_t *
2296 notmuch_directory_get_child_files (notmuch_directory_t *directory);
2297
2298 /**
2299  * Get a notmuch_filenames_t iterator listing all the filenames of
2300  * sub-directories in the database within the given directory.
2301  *
2302  * The returned filenames will be the basename-entries only (not
2303  * complete paths).
2304  *
2305  * Returns NULL if it triggers a Xapian exception
2306  */
2307 notmuch_filenames_t *
2308 notmuch_directory_get_child_directories (notmuch_directory_t *directory);
2309
2310 /**
2311  * Delete directory document from the database, and destroy the
2312  * notmuch_directory_t object. Assumes any child directories and files
2313  * have been deleted by the caller.
2314  *
2315  * @since libnotmuch 4.3 (notmuch 0.21)
2316  */
2317 notmuch_status_t
2318 notmuch_directory_delete (notmuch_directory_t *directory);
2319
2320 /**
2321  * Destroy a notmuch_directory_t object.
2322  */
2323 void
2324 notmuch_directory_destroy (notmuch_directory_t *directory);
2325
2326 /**
2327  * Is the given 'filenames' iterator pointing at a valid filename.
2328  *
2329  * When this function returns TRUE, notmuch_filenames_get will return
2330  * a valid string. Whereas when this function returns FALSE,
2331  * notmuch_filenames_get will return NULL.
2332  *
2333  * It is acceptable to pass NULL for 'filenames', in which case this
2334  * function will always return FALSE.
2335  */
2336 notmuch_bool_t
2337 notmuch_filenames_valid (notmuch_filenames_t *filenames);
2338
2339 /**
2340  * Get the current filename from 'filenames' as a string.
2341  *
2342  * Note: The returned string belongs to 'filenames' and has a lifetime
2343  * identical to it (and the directory to which it ultimately belongs).
2344  *
2345  * It is acceptable to pass NULL for 'filenames', in which case this
2346  * function will always return NULL.
2347  */
2348 const char *
2349 notmuch_filenames_get (notmuch_filenames_t *filenames);
2350
2351 /**
2352  * Move the 'filenames' iterator to the next filename.
2353  *
2354  * If 'filenames' is already pointing at the last filename then the
2355  * iterator will be moved to a point just beyond that last filename,
2356  * (where notmuch_filenames_valid will return FALSE and
2357  * notmuch_filenames_get will return NULL).
2358  *
2359  * It is acceptable to pass NULL for 'filenames', in which case this
2360  * function will do nothing.
2361  */
2362 void
2363 notmuch_filenames_move_to_next (notmuch_filenames_t *filenames);
2364
2365 /**
2366  * Destroy a notmuch_filenames_t object.
2367  *
2368  * It's not strictly necessary to call this function. All memory from
2369  * the notmuch_filenames_t object will be reclaimed when the
2370  * containing directory object is destroyed.
2371  *
2372  * It is acceptable to pass NULL for 'filenames', in which case this
2373  * function will do nothing.
2374  */
2375 void
2376 notmuch_filenames_destroy (notmuch_filenames_t *filenames);
2377
2378
2379 /**
2380  * set config 'key' to 'value'
2381  *
2382  * @since libnotmuch 4.4 (notmuch 0.23)
2383  * @retval #NOTMUCH_STATUS_READ_ONLY_DATABASE: Database was opened in
2384  *      read-only mode so message cannot be modified.
2385  * @retval #NOTMUCH_STATUS_XAPIAN_EXCEPTION: an exception was thrown
2386  *      accessing the database.
2387  * @retval #NOTMUCH_STATUS_SUCCESS
2388  */
2389 notmuch_status_t
2390 notmuch_database_set_config (notmuch_database_t *db, const char *key, const char *value);
2391
2392 /**
2393  * retrieve config item 'key', assign to  'value'
2394  *
2395  * keys which have not been previously set with n_d_set_config will
2396  * return an empty string.
2397  *
2398  * return value is allocated by malloc and should be freed by the
2399  * caller.
2400  *
2401  * @since libnotmuch 4.4 (notmuch 0.23)
2402  *
2403  */
2404 notmuch_status_t
2405 notmuch_database_get_config (notmuch_database_t *db, const char *key, char **value);
2406
2407 /**
2408  * Create an iterator for all config items with keys matching a given prefix
2409  *
2410  * @since libnotmuch 4.4 (notmuch 0.23)
2411  */
2412 notmuch_status_t
2413 notmuch_database_get_config_list (notmuch_database_t *db, const char *prefix,
2414                                   notmuch_config_list_t **out);
2415
2416 /**
2417  * Is 'config_list' iterator valid (i.e. _key, _value, _move_to_next can be called).
2418  *
2419  * @since libnotmuch 4.4 (notmuch 0.23)
2420  */
2421 notmuch_bool_t
2422 notmuch_config_list_valid (notmuch_config_list_t *config_list);
2423
2424 /**
2425  * return key for current config pair
2426  *
2427  * return value is owned by the iterator, and will be destroyed by the
2428  * next call to notmuch_config_list_key or notmuch_config_list_destroy.
2429  *
2430  * @since libnotmuch 4.4 (notmuch 0.23)
2431  */
2432 const char *
2433 notmuch_config_list_key (notmuch_config_list_t *config_list);
2434
2435 /**
2436  * return 'value' for current config pair
2437  *
2438  * return value is owned by the iterator, and will be destroyed by the
2439  * next call to notmuch_config_list_value or notmuch config_list_destroy
2440  *
2441  * @since libnotmuch 4.4 (notmuch 0.23)
2442  * @retval NULL for errors
2443  */
2444 const char *
2445 notmuch_config_list_value (notmuch_config_list_t *config_list);
2446
2447
2448 /**
2449  * move 'config_list' iterator to the next pair
2450  *
2451  * @since libnotmuch 4.4 (notmuch 0.23)
2452  */
2453 void
2454 notmuch_config_list_move_to_next (notmuch_config_list_t *config_list);
2455
2456 /**
2457  * free any resources held by 'config_list'
2458  *
2459  * @since libnotmuch 4.4 (notmuch 0.23)
2460  */
2461 void
2462 notmuch_config_list_destroy (notmuch_config_list_t *config_list);
2463
2464
2465 /**
2466  * Configuration keys known to libnotmuch
2467  */
2468 typedef enum _notmuch_config_key {
2469     NOTMUCH_CONFIG_FIRST,
2470     NOTMUCH_CONFIG_DATABASE_PATH = NOTMUCH_CONFIG_FIRST,
2471     NOTMUCH_CONFIG_HOOK_DIR,
2472     NOTMUCH_CONFIG_EXCLUDE_TAGS,
2473     NOTMUCH_CONFIG_NEW_TAGS,
2474     NOTMUCH_CONFIG_NEW_IGNORE,
2475     NOTMUCH_CONFIG_SYNC_MAILDIR_FLAGS,
2476     NOTMUCH_CONFIG_PRIMARY_EMAIL,
2477     NOTMUCH_CONFIG_OTHER_EMAIL,
2478     NOTMUCH_CONFIG_USER_NAME,
2479     NOTMUCH_CONFIG_LAST
2480 } notmuch_config_key_t;
2481
2482 /**
2483  * get a configuration value from an open database.
2484  *
2485  * This value reflects all configuration information given at the time
2486  * the database was opened.
2487  *
2488  * @param[in] notmuch database
2489  * @param[in] key configuration key
2490  *
2491  * @since libnotmuch 5.4 (notmuch 0.32)
2492  *
2493  * @retval NULL if 'key' unknown or if no value is known for
2494  *         'key'.  Otherwise returns a string owned by notmuch which should
2495  *         not be modified nor freed by the caller.
2496  */
2497 const char *
2498 notmuch_config_get (notmuch_database_t *notmuch, notmuch_config_key_t key);
2499
2500 /**
2501  * set a configuration value from in an open database.
2502  *
2503  * This value reflects all configuration information given at the time
2504  * the database was opened.
2505  *
2506  * @param[in,out] notmuch database open read/write
2507  * @param[in] key configuration key
2508  * @param[in] val configuration value
2509  *
2510  * @since libnotmuch 5.4 (notmuch 0.32)
2511  *
2512  * @retval returns any return value for notmuch_database_set_config.
2513  */
2514 notmuch_status_t
2515 notmuch_config_set (notmuch_database_t *notmuch, notmuch_config_key_t key, const char *val);
2516
2517 /**
2518  * Returns an iterator for a ';'-delimited list of configuration values
2519  *
2520  * These values reflect all configuration information given at the
2521  * time the database was opened.
2522  *
2523  * @param[in] notmuch database
2524  * @param[in] key configuration key
2525  *
2526  * @since libnotmuch 5.4 (notmuch 0.32)
2527  *
2528  * @retval NULL in case of error.
2529  */
2530 notmuch_config_values_t *
2531 notmuch_config_get_values (notmuch_database_t *notmuch, notmuch_config_key_t key);
2532
2533 /**
2534  * Is the given 'config_values' iterator pointing at a valid element.
2535  *
2536  * @param[in] values iterator
2537  *
2538  * @since libnotmuch 5.4 (notmuch 0.32)
2539  *
2540  * @retval FALSE if passed a NULL pointer, or the iterator is exhausted.
2541  *
2542  */
2543 notmuch_bool_t
2544 notmuch_config_values_valid (notmuch_config_values_t *values);
2545
2546 /**
2547  * Get the current value from the 'values' iterator
2548  *
2549  * @param[in] values iterator
2550  *
2551  * @since libnotmuch 5.4 (notmuch 0.32)
2552  *
2553  * @retval a string with the same lifetime as the iterator
2554  */
2555 const char *
2556 notmuch_config_values_get (notmuch_config_values_t *values);
2557
2558 /**
2559  * Move the 'values' iterator to the next element
2560  *
2561  * @param[in,out] values iterator
2562  *
2563  * @since libnotmuch 5.4 (notmuch 0.32)
2564  *
2565  */
2566 void
2567 notmuch_config_values_move_to_next (notmuch_config_values_t *values);
2568
2569
2570 /**
2571  * reset the 'values' iterator to the first element
2572  *
2573  * @param[in,out] values iterator. A NULL value is ignored.
2574  *
2575  * @since libnotmuch 5.4 (notmuch 0.32)
2576  *
2577  */
2578 void
2579 notmuch_config_values_start (notmuch_config_values_t *values);
2580
2581 /**
2582  * Destroy a config values iterator, along with any associated
2583  * resources.
2584  *
2585  * @param[in,out] values iterator
2586  *
2587  * @since libnotmuch 5.4 (notmuch 0.32)
2588  */
2589 void
2590 notmuch_config_values_destroy (notmuch_config_values_t *values);
2591
2592 /**
2593  * get a configuration value from an open database as Boolean
2594  *
2595  * This value reflects all configuration information given at the time
2596  * the database was opened.
2597  *
2598  * @param[in] notmuch database
2599  * @param[in] key configuration key
2600  * @param[out] val configuration value, converted to Boolean
2601  *
2602  * @since libnotmuch 5.4 (notmuch 0.32)
2603  *
2604  * @retval #NOTMUCH_STATUS_ILLEGAL_ARGUMENT if either key is unknown
2605  * or the corresponding value does not convert to Boolean.
2606  */
2607 notmuch_status_t
2608 notmuch_config_get_bool (notmuch_database_t *notmuch,
2609                          notmuch_config_key_t key,
2610                          notmuch_bool_t *val);
2611 /**
2612  * get the current default indexing options for a given database.
2613  *
2614  * This object will survive until the database itself is destroyed,
2615  * but the caller may also release it earlier with
2616  * notmuch_indexopts_destroy.
2617  *
2618  * This object represents a set of options on how a message can be
2619  * added to the index.  At the moment it is a featureless stub.
2620  *
2621  * @since libnotmuch 5.1 (notmuch 0.26)
2622  * @retval NULL in case of error
2623  */
2624 notmuch_indexopts_t *
2625 notmuch_database_get_default_indexopts (notmuch_database_t *db);
2626
2627 /**
2628  * Stating a policy about how to decrypt messages.
2629  *
2630  * See index.decrypt in notmuch-config(1) for more details.
2631  */
2632 typedef enum {
2633     NOTMUCH_DECRYPT_FALSE,
2634     NOTMUCH_DECRYPT_TRUE,
2635     NOTMUCH_DECRYPT_AUTO,
2636     NOTMUCH_DECRYPT_NOSTASH,
2637 } notmuch_decryption_policy_t;
2638
2639 /**
2640  * Specify whether to decrypt encrypted parts while indexing.
2641  *
2642  * Be aware that the index is likely sufficient to reconstruct the
2643  * cleartext of the message itself, so please ensure that the notmuch
2644  * message index is adequately protected. DO NOT SET THIS FLAG TO TRUE
2645  * without considering the security of your index.
2646  *
2647  * @since libnotmuch 5.1 (notmuch 0.26)
2648  */
2649 notmuch_status_t
2650 notmuch_indexopts_set_decrypt_policy (notmuch_indexopts_t *indexopts,
2651                                       notmuch_decryption_policy_t decrypt_policy);
2652
2653 /**
2654  * Return whether to decrypt encrypted parts while indexing.
2655  * see notmuch_indexopts_set_decrypt_policy.
2656  *
2657  * @since libnotmuch 5.1 (notmuch 0.26)
2658  */
2659 notmuch_decryption_policy_t
2660 notmuch_indexopts_get_decrypt_policy (const notmuch_indexopts_t *indexopts);
2661
2662 /**
2663  * Destroy a notmuch_indexopts_t object.
2664  *
2665  * @since libnotmuch 5.1 (notmuch 0.26)
2666  */
2667 void
2668 notmuch_indexopts_destroy (notmuch_indexopts_t *options);
2669
2670
2671 /**
2672  * interrogate the library for compile time features
2673  *
2674  * @since libnotmuch 4.4 (notmuch 0.23)
2675  */
2676 notmuch_bool_t
2677 notmuch_built_with (const char *name);
2678 /**@}*/
2679
2680 #pragma GCC visibility pop
2681
2682 NOTMUCH_END_DECLS
2683
2684 #endif