2009-11-10 21:03:05 +01:00
|
|
|
/* notmuch - Not much of an email program, (just index and search)
|
|
|
|
*
|
|
|
|
* Copyright © 2009 Carl Worth
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see http://www.gnu.org/licenses/ .
|
|
|
|
*
|
|
|
|
* Author: Carl Worth <cworth@cworth.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTMUCH_CLIENT_H
|
|
|
|
#define NOTMUCH_CLIENT_H
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE /* for getline */
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2009-12-02 00:23:25 +01:00
|
|
|
#include "compat.h"
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
#include <gmime/gmime.h>
|
|
|
|
|
|
|
|
#include "notmuch.h"
|
|
|
|
|
|
|
|
/* This is separate from notmuch-private.h because we're trying to
|
|
|
|
* keep notmuch.c from looking into any internals, (which helps us
|
|
|
|
* develop notmuch.h into a plausible library interface).
|
|
|
|
*/
|
|
|
|
#include "xutil.h"
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include <talloc.h>
|
|
|
|
|
|
|
|
#define unused(x) x __attribute__ ((unused))
|
|
|
|
|
2010-04-02 20:55:09 +02:00
|
|
|
#define STRINGIFY(s) STRINGIFY_(s)
|
|
|
|
#define STRINGIFY_(s) #s
|
|
|
|
|
2011-05-20 20:45:33 +02:00
|
|
|
typedef struct notmuch_show_format {
|
|
|
|
const char *message_set_start;
|
|
|
|
const char *message_start;
|
|
|
|
void (*message) (const void *ctx,
|
|
|
|
notmuch_message_t *message,
|
|
|
|
int indent);
|
|
|
|
const char *header_start;
|
|
|
|
void (*header) (const void *ctx,
|
|
|
|
notmuch_message_t *message);
|
2011-06-06 02:29:28 +02:00
|
|
|
void (*header_message_part) (GMimeMessage *message);
|
2011-05-20 20:45:33 +02:00
|
|
|
const char *header_end;
|
|
|
|
const char *body_start;
|
2011-05-26 03:01:13 +02:00
|
|
|
void (*part_start) (GMimeObject *part,
|
|
|
|
int *part_count);
|
2011-05-26 03:01:18 +02:00
|
|
|
void (*part_encstatus) (int status);
|
2011-05-26 03:01:17 +02:00
|
|
|
void (*part_sigstatus) (const GMimeSignatureValidity* validity);
|
2011-05-26 03:01:13 +02:00
|
|
|
void (*part_content) (GMimeObject *part);
|
2011-05-20 20:45:33 +02:00
|
|
|
void (*part_end) (GMimeObject *part);
|
2011-05-23 04:56:53 +02:00
|
|
|
const char *part_sep;
|
2011-05-20 20:45:33 +02:00
|
|
|
const char *body_end;
|
|
|
|
const char *message_end;
|
|
|
|
const char *message_set_sep;
|
|
|
|
const char *message_set_end;
|
|
|
|
} notmuch_show_format_t;
|
|
|
|
|
2011-05-21 00:01:52 +02:00
|
|
|
typedef struct notmuch_show_params {
|
|
|
|
int entire_thread;
|
2011-05-23 05:04:02 +02:00
|
|
|
int raw;
|
2011-05-24 00:31:32 +02:00
|
|
|
int part;
|
2011-05-26 03:01:17 +02:00
|
|
|
GMimeCipherContext* cryptoctx;
|
2011-05-26 03:01:18 +02:00
|
|
|
int decrypt;
|
2011-05-21 00:01:52 +02:00
|
|
|
} notmuch_show_params_t;
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
/* There's no point in continuing when we've detected that we've done
|
|
|
|
* something wrong internally (as opposed to the user passing in a
|
|
|
|
* bogus value).
|
|
|
|
*
|
|
|
|
* Note that __location__ comes from talloc.h.
|
|
|
|
*/
|
|
|
|
#define INTERNAL_ERROR(format, ...) \
|
|
|
|
do { \
|
|
|
|
fprintf(stderr, \
|
|
|
|
"Internal error: " format " (%s)\n", \
|
|
|
|
##__VA_ARGS__, __location__); \
|
|
|
|
exit (1); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))
|
|
|
|
|
2009-11-13 05:47:12 +01:00
|
|
|
#define STRNCMP_LITERAL(var, literal) \
|
|
|
|
strncmp ((var), (literal), sizeof (literal) - 1)
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
static inline void
|
|
|
|
chomp_newline (char *str)
|
|
|
|
{
|
|
|
|
if (str && str[strlen(str)-1] == '\n')
|
|
|
|
str[strlen(str)-1] = '\0';
|
|
|
|
}
|
|
|
|
|
2009-11-21 08:15:07 +01:00
|
|
|
int
|
|
|
|
notmuch_count_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
int
|
|
|
|
notmuch_dump_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_new_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2009-11-06 19:00:38 +01:00
|
|
|
int
|
|
|
|
notmuch_reply_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
int
|
|
|
|
notmuch_restore_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_search_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_setup_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_show_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_tag_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2009-11-23 01:10:55 +01:00
|
|
|
int
|
|
|
|
notmuch_search_tags_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2010-10-22 11:28:03 +02:00
|
|
|
int
|
|
|
|
notmuch_cat_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2010-10-27 22:02:17 +02:00
|
|
|
int
|
|
|
|
notmuch_config_command (void *ctx, int argc, char *argv[]);
|
|
|
|
|
2009-11-10 21:03:05 +01:00
|
|
|
const char *
|
2009-11-18 04:10:37 +01:00
|
|
|
notmuch_time_relative_date (const void *ctx, time_t then);
|
2009-11-10 21:03:05 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_time_print_formatted_seconds (double seconds);
|
|
|
|
|
|
|
|
double
|
|
|
|
notmuch_time_elapsed (struct timeval start, struct timeval end);
|
|
|
|
|
2009-11-06 19:00:38 +01:00
|
|
|
char *
|
|
|
|
query_string_from_args (void *ctx, int argc, char *argv[]);
|
|
|
|
|
|
|
|
notmuch_status_t
|
2011-12-24 19:52:43 +01:00
|
|
|
show_message_body (notmuch_message_t *message,
|
2011-05-24 00:31:32 +02:00
|
|
|
const notmuch_show_format_t *format,
|
|
|
|
notmuch_show_params_t *params);
|
2009-11-06 19:00:38 +01:00
|
|
|
|
2010-03-24 08:21:20 +01:00
|
|
|
notmuch_status_t
|
|
|
|
show_one_part (const char *filename, int part);
|
|
|
|
|
2010-04-05 11:33:19 +02:00
|
|
|
char *
|
|
|
|
json_quote_chararray (const void *ctx, const char *str, const size_t len);
|
|
|
|
|
2009-12-31 16:17:40 +01:00
|
|
|
char *
|
|
|
|
json_quote_str (const void *ctx, const char *str);
|
|
|
|
|
2009-11-12 02:01:55 +01:00
|
|
|
/* notmuch-config.c */
|
|
|
|
|
|
|
|
typedef struct _notmuch_config notmuch_config_t;
|
|
|
|
|
|
|
|
notmuch_config_t *
|
2009-11-12 02:33:31 +01:00
|
|
|
notmuch_config_open (void *ctx,
|
|
|
|
const char *filename,
|
|
|
|
notmuch_bool_t *is_new_ret);
|
2009-11-12 02:01:55 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_config_close (notmuch_config_t *config);
|
|
|
|
|
|
|
|
int
|
|
|
|
notmuch_config_save (notmuch_config_t *config);
|
|
|
|
|
|
|
|
const char *
|
|
|
|
notmuch_config_get_database_path (notmuch_config_t *config);
|
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_config_set_database_path (notmuch_config_t *config,
|
|
|
|
const char *database_path);
|
|
|
|
|
|
|
|
const char *
|
|
|
|
notmuch_config_get_user_name (notmuch_config_t *config);
|
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_config_set_user_name (notmuch_config_t *config,
|
|
|
|
const char *user_name);
|
|
|
|
|
|
|
|
const char *
|
|
|
|
notmuch_config_get_user_primary_email (notmuch_config_t *config);
|
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_config_set_user_primary_email (notmuch_config_t *config,
|
|
|
|
const char *primary_email);
|
|
|
|
|
2010-10-27 22:02:17 +02:00
|
|
|
const char **
|
2009-11-12 02:01:55 +01:00
|
|
|
notmuch_config_get_user_other_email (notmuch_config_t *config,
|
|
|
|
size_t *length);
|
|
|
|
|
|
|
|
void
|
|
|
|
notmuch_config_set_user_other_email (notmuch_config_t *config,
|
|
|
|
const char *other_email[],
|
|
|
|
size_t length);
|
|
|
|
|
2010-04-23 18:19:52 +02:00
|
|
|
const char **
|
2010-03-12 23:13:26 +01:00
|
|
|
notmuch_config_get_new_tags (notmuch_config_t *config,
|
|
|
|
size_t *length);
|
|
|
|
void
|
|
|
|
notmuch_config_set_new_tags (notmuch_config_t *config,
|
|
|
|
const char *new_tags[],
|
|
|
|
size_t length);
|
|
|
|
|
2010-10-31 22:29:17 +01:00
|
|
|
notmuch_bool_t
|
2010-11-11 01:26:14 +01:00
|
|
|
notmuch_config_get_maildir_synchronize_flags (notmuch_config_t *config);
|
2010-10-31 22:29:17 +01:00
|
|
|
|
|
|
|
void
|
2010-11-11 01:26:14 +01:00
|
|
|
notmuch_config_set_maildir_synchronize_flags (notmuch_config_t *config,
|
|
|
|
notmuch_bool_t synchronize_flags);
|
2010-10-31 22:29:17 +01:00
|
|
|
|
2011-12-08 23:48:29 +01:00
|
|
|
int
|
|
|
|
notmuch_run_hook (const char *db_path, const char *hook);
|
|
|
|
|
2009-11-22 01:44:31 +01:00
|
|
|
notmuch_bool_t
|
|
|
|
debugger_is_active (void);
|
|
|
|
|
2011-12-24 19:52:44 +01:00
|
|
|
/* mime-node.c */
|
|
|
|
|
|
|
|
/* mime_node_t represents a single node in a MIME tree. A MIME tree
|
|
|
|
* abstracts the different ways of traversing different types of MIME
|
|
|
|
* parts, allowing a MIME message to be viewed as a generic tree of
|
|
|
|
* parts. Message-type parts have one child, multipart-type parts
|
|
|
|
* have multiple children, and leaf parts have zero children.
|
|
|
|
*/
|
|
|
|
typedef struct mime_node {
|
|
|
|
/* The MIME object of this part. This will be a GMimeMessage,
|
|
|
|
* GMimePart, GMimeMultipart, or a subclass of one of these.
|
|
|
|
*
|
|
|
|
* This will never be a GMimeMessagePart because GMimeMessagePart
|
|
|
|
* is structurally redundant with GMimeMessage. If this part is a
|
|
|
|
* message (that is, 'part' is a GMimeMessage), then either
|
|
|
|
* envelope_file will be set to a notmuch_message_t (for top-level
|
|
|
|
* messages) or envelope_part will be set to a GMimeMessagePart
|
|
|
|
* (for embedded message parts).
|
|
|
|
*/
|
|
|
|
GMimeObject *part;
|
|
|
|
|
|
|
|
/* If part is a GMimeMessage, these record the envelope of the
|
|
|
|
* message: either a notmuch_message_t representing a top-level
|
|
|
|
* message, or a GMimeMessagePart representing a MIME part
|
|
|
|
* containing a message.
|
|
|
|
*/
|
|
|
|
notmuch_message_t *envelope_file;
|
|
|
|
GMimeMessagePart *envelope_part;
|
|
|
|
|
|
|
|
/* The number of children of this part. */
|
|
|
|
int nchildren;
|
|
|
|
|
|
|
|
/* True if decryption of this part was attempted. */
|
|
|
|
notmuch_bool_t decrypt_attempted;
|
|
|
|
/* True if decryption of this part's child succeeded. In this
|
|
|
|
* case, the decrypted part is substituted for the second child of
|
|
|
|
* this part (which would usually be the encrypted data). */
|
|
|
|
notmuch_bool_t decrypt_success;
|
|
|
|
|
|
|
|
/* True if signature verification on this part was attempted. */
|
|
|
|
notmuch_bool_t verify_attempted;
|
|
|
|
/* For signed or encrypted containers, the validity of the
|
|
|
|
* signature. May be NULL if signature verification failed. If
|
|
|
|
* there are simply no signatures, this will be non-NULL with an
|
|
|
|
* empty signers list. */
|
|
|
|
const GMimeSignatureValidity *sig_validity;
|
|
|
|
|
|
|
|
/* Internal: Context inherited from the root iterator. */
|
|
|
|
struct mime_node_context *ctx;
|
|
|
|
|
|
|
|
/* Internal: For successfully decrypted multipart parts, the
|
|
|
|
* decrypted part to substitute for the second child. */
|
|
|
|
GMimeObject *decrypted_child;
|
|
|
|
} mime_node_t;
|
|
|
|
|
|
|
|
/* Construct a new MIME node pointing to the root message part of
|
|
|
|
* message. If cryptoctx is non-NULL, it will be used to verify
|
|
|
|
* signatures on any child parts. If decrypt is true, then cryptoctx
|
|
|
|
* will additionally be used to decrypt any encrypted child parts.
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
*
|
|
|
|
* NOTMUCH_STATUS_SUCCESS: Root node is returned in *node_out.
|
|
|
|
*
|
|
|
|
* NOTMUCH_STATUS_FILE_ERROR: Failed to open message file.
|
|
|
|
*
|
|
|
|
* NOTMUCH_STATUS_OUT_OF_MEMORY: Out of memory.
|
|
|
|
*/
|
|
|
|
notmuch_status_t
|
|
|
|
mime_node_open (const void *ctx, notmuch_message_t *message,
|
|
|
|
GMimeCipherContext *cryptoctx, notmuch_bool_t decrypt,
|
|
|
|
mime_node_t **node_out);
|
|
|
|
|
|
|
|
/* Return a new MIME node for the requested child part of parent.
|
|
|
|
* parent will be used as the talloc context for the returned child
|
|
|
|
* node.
|
|
|
|
*
|
|
|
|
* In case of any failure, this function returns NULL, (after printing
|
|
|
|
* an error message on stderr).
|
|
|
|
*/
|
|
|
|
mime_node_t *
|
|
|
|
mime_node_child (const mime_node_t *parent, int child);
|
|
|
|
|
2011-12-24 19:52:45 +01:00
|
|
|
/* Return the nth child of node in a depth-first traversal. If n is
|
|
|
|
* 0, returns node itself. Returns NULL if there is no such part. */
|
|
|
|
mime_node_t *
|
|
|
|
mime_node_seek_dfs (mime_node_t *node, int n);
|
|
|
|
|
2011-12-01 01:27:26 +01:00
|
|
|
#include "command-line-arguments.h"
|
2009-11-10 21:03:05 +01:00
|
|
|
#endif
|