X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fimap.h;h=29a24541bb9c3f8f32e186373d745f9410c3e093;hp=4a3608d0a354a6797150dc4254eac27067137ff4;hb=819c071fa7efc8dffb4dd92f36f0111227ff692f;hpb=6833ce8bdca2d64e14485118f2a4417b7e1cb1b1 diff --git a/imap/imap.h b/imap/imap.h index 4a3608d..29a2454 100644 --- a/imap/imap.h +++ b/imap/imap.h @@ -1,69 +1,60 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-8 Michael R. Elkins * Copyright (C) 2000-3 Brendan Cully - * - * 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 2 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, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - */ + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. + */ #ifndef _IMAP_H #define _IMAP_H 1 +#include +#include + #include "account.h" -#include "browser.h" -#include "mailbox.h" + +extern mx_t const imap_mx; /* -- data structures -- */ -typedef struct -{ +typedef struct { ACCOUNT account; - char* mbox; + char *mbox; } IMAP_MBOX; /* imap.c */ -int imap_access (const char*, int); -int imap_check_mailbox (CONTEXT *ctx, int *index_hint, int force); -int imap_close_connection (CONTEXT *ctx); -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_is_magic(const char*, struct stat*); + +int imap_check_mailbox (CONTEXT * ctx, int *index_hint, int force); +int imap_delete_mailbox (CONTEXT * idata, IMAP_MBOX mx); +int imap_open_mailbox_append (CONTEXT * ctx); +int imap_sync_mailbox (CONTEXT * ctx, int expunge, int *index_hint); 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); +int imap_complete (char *dest, size_t dlen, char *path); -void imap_allow_reopen (CONTEXT *ctx); -void imap_disallow_reopen (CONTEXT *ctx); +void imap_allow_reopen (CONTEXT * ctx); +void imap_disallow_reopen (CONTEXT * ctx); /* browse.c */ -int imap_browse (char* path, struct browser_state* state); -int imap_mailbox_create (const char* folder); +int imap_browse (char *path, struct browser_state *state); +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); +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); +int imap_parse_path (const char *path, IMAP_MBOX * mx); +void imap_pretty_mailbox (char *path); int imap_wait_keepalive (pid_t pid); void imap_keepalive (void);