X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fimap.h;h=f56fdf9c224a12d72612bb7ec76e805b40afeb58;hp=c5cdf4b12b5a0f90bc401cd7d151d4efe9783aa0;hb=5a4ed6a80a95c870a3603350d2a1e99b99d99b5b;hpb=ee1d4d931ca3ebec494694b74a1868a7a2e631e3 diff --git a/imap/imap.h b/imap/imap.h index c5cdf4b..f56fdf9 100644 --- a/imap/imap.h +++ b/imap/imap.h @@ -11,9 +11,12 @@ #ifndef _IMAP_H #define _IMAP_H 1 +#include +#include + #include "account.h" -#include "browser.h" -#include "mx.h" + +extern mx_t const imap_mx; /* -- data structures -- */ typedef struct { @@ -22,15 +25,12 @@ typedef struct { } IMAP_MBOX; /* imap.c */ -int imap_access (const char *, int); int imap_check_mailbox (CONTEXT * ctx, int *index_hint, int force); int imap_delete_mailbox (CONTEXT * idata, IMAP_MBOX mx); -int imap_open_mailbox (CONTEXT * ctx); int imap_open_mailbox_append (CONTEXT * ctx); int imap_sync_mailbox (CONTEXT * ctx, int expunge, int *index_hint); -void imap_close_mailbox (CONTEXT * ctx); -int imap_buffy_check (char *path); int imap_mailbox_check (char *path, int new); +int imap_search (CONTEXT* ctx, const pattern_t* pat); int imap_subscribe (char *path, int subscribe); int imap_complete (char *dest, size_t dlen, char *path); @@ -43,15 +43,12 @@ int imap_mailbox_create (const char *folder); int imap_mailbox_rename (const char *mailbox); /* message.c */ -int imap_append_message (CONTEXT * ctx, MESSAGE * msg); int imap_copy_messages (CONTEXT * ctx, HEADER * h, char *dest, int delete); -int imap_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno); /* socket.c */ void imap_logout_all (void); /* util.c */ -int imap_expand_path (char *path, size_t len); int imap_parse_path (const char *path, IMAP_MBOX * mx); void imap_pretty_mailbox (char *path);