NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
42#ifndef MUTT_NOTMUCH_LIB_H
43#define MUTT_NOTMUCH_LIB_H
44
45#include <stddef.h>
46#include <stdbool.h>
47#include "core/lib.h"
48#include "complete/lib.h"
49
50struct Email;
51struct stat;
52
53extern const struct CompleteOps CompleteNmQueryOps;
54extern const struct CompleteOps CompleteNmTagOps;
55
56extern const struct MxOps MxNotmuchOps;
57
58void nm_init (void);
59void nm_db_debug_check (struct Mailbox *m);
60void nm_db_longrun_done (struct Mailbox *m);
61void nm_db_longrun_init (struct Mailbox *m, bool writable);
62char *nm_email_get_folder (struct Email *e);
63char *nm_email_get_folder_rel_db (struct Mailbox *m, struct Email *e);
64int nm_get_all_tags (struct Mailbox *m, const char **tag_list, int *tag_count);
65bool nm_message_is_still_queried(struct Mailbox *m, struct Email *e);
66enum MailboxType nm_path_probe (const char *path, const struct stat *st);
68void nm_query_window_backward (void);
69void nm_query_window_forward (void);
70void nm_query_window_reset (void);
71int nm_read_entire_thread (struct Mailbox *m, struct Email *e);
72int nm_record_message (struct Mailbox *m, char *path, struct Email *e);
73int nm_update_filename (struct Mailbox *m, const char *old_file, const char *new_file, struct Email *e);
74char *nm_url_from_query (struct Mailbox *m, char *buf, size_t buflen);
75
76#endif /* MUTT_NOTMUCH_LIB_H */
Auto-completion.
Convenience wrapper for the core headers.
MailboxType
Supported mailbox formats.
Definition: mailbox.h:41
const struct MxOps MxNotmuchOps
Notmuch Mailbox - Implements MxOps -.
Definition: notmuch.c:2476
enum MailboxType nm_path_probe(const char *path, const struct stat *st)
Is this a Notmuch Mailbox? - Implements MxOps::path_probe() -.
Definition: notmuch.c:2457
int nm_update_filename(struct Mailbox *m, const char *old_file, const char *new_file, struct Email *e)
Change the filename.
Definition: notmuch.c:1763
void nm_query_window_reset(void)
Resets the vfolder window position to the present.
Definition: notmuch.c:1686
int nm_get_all_tags(struct Mailbox *m, const char **tag_list, int *tag_count)
Fill a list with all notmuch tags.
Definition: notmuch.c:1979
void nm_db_longrun_done(struct Mailbox *m)
Finish a long transaction.
Definition: db.c:378
char * nm_email_get_folder_rel_db(struct Mailbox *m, struct Email *e)
Get the folder for a Email from the same level as the notmuch database.
Definition: notmuch.c:1488
int nm_record_message(struct Mailbox *m, char *path, struct Email *e)
Add a message to the Notmuch database.
Definition: notmuch.c:1896
int nm_read_entire_thread(struct Mailbox *m, struct Email *e)
Get the entire thread of an email.
Definition: notmuch.c:1514
void nm_query_window_backward(void)
Function to move the current search window backward in time.
Definition: notmuch.c:1675
const struct CompleteOps CompleteNmTagOps
Auto-Completion of NmTags.
Definition: complete.c:254
bool nm_query_window_available(void)
Are windowed queries enabled for use?
Definition: notmuch.c:1638
const struct CompleteOps CompleteNmQueryOps
Auto-Completion of NmQuerys.
Definition: complete.c:247
char * nm_url_from_query(struct Mailbox *m, char *buf, size_t buflen)
Turn a query into a URL.
Definition: notmuch.c:1579
void nm_init(void)
Setup feature commands.
Definition: notmuch.c:108
void nm_db_longrun_init(struct Mailbox *m, bool writable)
Start a long transaction.
Definition: db.c:363
void nm_db_debug_check(struct Mailbox *m)
Check if the database is open.
Definition: db.c:396
char * nm_email_get_folder(struct Email *e)
Get the folder for a Email.
Definition: notmuch.c:1469
bool nm_message_is_still_queried(struct Mailbox *m, struct Email *e)
Is a message still visible in the query?
Definition: notmuch.c:1698
void nm_query_window_forward(void)
Function to move the current search window forward in time.
Definition: notmuch.c:1655
The envelope/body of an email.
Definition: email.h:39
A mailbox.
Definition: mailbox.h:79
Definition: mxapi.h:91