X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-client.h;h=78680aa122af56dc9cd9432982e51e713594db14;hp=4ecb3ae9d44c511818684b5c56ba85c2b1d0c34f;hb=447ad6b4984c71881b7f97641c77f0a39b71a991;hpb=a24cd45568872d49c05bdd6193876cce6f01fe80 diff --git a/notmuch-client.h b/notmuch-client.h index 4ecb3ae9..78680aa1 100644 --- a/notmuch-client.h +++ b/notmuch-client.h @@ -80,6 +80,7 @@ typedef struct notmuch_crypto { notmuch_crypto_context_t* gpgctx; notmuch_bool_t verify; notmuch_bool_t decrypt; + const char *gpgpath; } notmuch_crypto_t; typedef struct notmuch_show_params { @@ -138,7 +139,7 @@ chomp_newline (char *str) * this. New (required) map fields can be added without increasing * this. */ -#define NOTMUCH_FORMAT_CUR 1 +#define NOTMUCH_FORMAT_CUR 2 /* The minimum supported structured output format version. Requests * for format versions below this will return an error. */ #define NOTMUCH_FORMAT_MIN 1 @@ -198,6 +199,9 @@ notmuch_restore_command (notmuch_config_t *config, int argc, char *argv[]); int notmuch_search_command (notmuch_config_t *config, int argc, char *argv[]); +int +notmuch_address_command (notmuch_config_t *config, int argc, char *argv[]); + int notmuch_setup_command (notmuch_config_t *config, int argc, char *argv[]); @@ -274,6 +278,13 @@ void notmuch_config_set_database_path (notmuch_config_t *config, const char *database_path); +const char * +notmuch_config_get_crypto_gpg_path (notmuch_config_t *config); + +void +notmuch_config_set_crypto_gpg_path (notmuch_config_t *config, + const char *gpg_path); + const char * notmuch_config_get_user_name (notmuch_config_t *config); @@ -441,5 +452,22 @@ mime_node_child (mime_node_t *parent, int child); mime_node_t * mime_node_seek_dfs (mime_node_t *node, int n); +typedef enum dump_formats { + DUMP_FORMAT_AUTO, + DUMP_FORMAT_BATCH_TAG, + DUMP_FORMAT_SUP +} dump_format_t; + +int +notmuch_database_dump (notmuch_database_t *notmuch, + const char *output_file_name, + const char *query_str, + dump_format_t output_format, + notmuch_bool_t gzip_output); + #include "command-line-arguments.h" +extern const notmuch_opt_desc_t notmuch_shared_options []; +void notmuch_process_shared_options (const char* subcommand_name); +int notmuch_minimal_options (const char* subcommand_name, + int argc, char **argv); #endif