X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fmx.c;h=6693d27d83c97b8f45cc2e7e08e6d6a7f8b9b0b9;hp=98bd9fa229f985720ca725f35e0769fb39750f51;hb=00f34116b32751764d42f81159c292d850c74bac;hpb=8cb10a4102d1271eeb6d7892a3979ec9ed0beb36 diff --git a/lib-mx/mx.c b/lib-mx/mx.c index 98bd9fa..6693d27 100644 --- a/lib-mx/mx.c +++ b/lib-mx/mx.c @@ -32,9 +32,6 @@ #include #include "pop.h" -#ifdef USE_NNTP -#include "nntp.h" -#endif static mx_t const *mxfmts[] = { &mbox_mx, @@ -42,9 +39,6 @@ static mx_t const *mxfmts[] = { &maildir_mx, &imap_mx, &pop_mx, -#ifdef USE_NNTP - &nntp_mx, -#endif &compress_mx, }; @@ -53,7 +47,7 @@ static mx_t const *mxfmts[] = { static int dotlock_file(const char *path, int retry) { - char lockfile[PATH_MAX]; + char lockfile[_POSIX_PATH_MAX]; snprintf(lockfile, sizeof(lockfile), "%s.lock", path); if (lockfile_create(lockfile, retry ? 1 : 0, 0)) { @@ -65,9 +59,9 @@ static int dotlock_file(const char *path, int retry) static int undotlock_file (const char *path) { - char lockfile[PATH_MAX]; + char lockfile[_POSIX_PATH_MAX]; snprintf(lockfile, sizeof(lockfile), "%s.lock", path); - lockfile_remove(lockfile); + return lockfile_remove(lockfile); } /* looks up index of type for path in mxfmts */ @@ -582,15 +576,6 @@ static int _mx_close_mailbox (CONTEXT * ctx, int *index_hint) ctx->closing = 1; -#ifdef USE_NNTP - if (ctx->magic == M_NNTP) { - int ret; - - ret = nntp_close_mailbox (ctx); - mx_fastclose_mailbox (ctx); - return ret; - } -#endif if (ctx->readonly || ctx->dontwrite) { /* mailbox is readonly or we don't want to write */ mx_fastclose_mailbox (ctx); @@ -1064,15 +1049,6 @@ MESSAGE *mx_open_message (CONTEXT * ctx, int msgno) break; } -#ifdef USE_NNTP - case M_NNTP: - { - if (nntp_fetch_message (msg, ctx, msgno) != 0) - p_delete(&msg); - break; - } -#endif /* USE_NNTP */ - default: p_delete(&msg); break; @@ -1097,12 +1073,8 @@ int mx_close_message (MESSAGE ** msg) int r = 0; if ((*msg)->magic == M_MH || (*msg)->magic == M_MAILDIR - || (*msg)->magic == M_IMAP - || (*msg)->magic == M_POP -#ifdef USE_NNTP - || (*msg)->magic == M_NNTP -#endif - ) { + || (*msg)->magic == M_IMAP || (*msg)->magic == M_POP) + { r = m_fclose(&(*msg)->fp); } else