X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=flags.c;h=b206ae39f409f387637c272a552bb6ae1585f110;hp=8e1bbdb426d65ece997c19222a0f7fae6de512f1;hb=1abd265879dc5db7e9968a3b4ea7e2031e6b953e;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/flags.c b/flags.c index 8e1bbdb..b206ae3 100644 --- a/flags.c +++ b/flags.c @@ -1,19 +1,10 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * - * 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. */ #if HAVE_CONFIG_H @@ -31,6 +22,8 @@ #include "imap_private.h" #endif +#include "lib/intl.h" + void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) { int changed = h->changed; @@ -43,13 +36,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) switch (flag) { case M_DELETE: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_DELETE)) - return; -#endif + if (!mx_acl_check (ctx, ACL_DELETE)) + return; if (bf) { if (!h->deleted && !ctx->readonly) { @@ -117,13 +105,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) case M_NEW: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_SEEN)) - return; -#endif + if (!mx_acl_check (ctx, ACL_SEEN)) + return; if (bf) { if (h->read || h->old) { @@ -155,13 +138,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) case M_OLD: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_SEEN)) - return; -#endif + if (!mx_acl_check (ctx, ACL_SEEN)) + return; if (bf) { if (!h->old) { @@ -187,13 +165,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) case M_READ: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_SEEN)) - return; -#endif + if (!mx_acl_check (ctx, ACL_SEEN)) + return; if (bf) { if (!h->read) { @@ -223,13 +196,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) case M_REPLIED: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_WRITE)) - return; -#endif + if (!mx_acl_check (ctx, ACL_WRITE)) + return; if (bf) { if (!h->replied) { @@ -257,13 +225,8 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) case M_FLAG: -#ifdef USE_IMAP - if (ctx && ctx->magic == M_IMAP) - if (mutt_bit_isset (((IMAP_DATA *) ctx->data)->capabilities, ACL) - && !mutt_bit_isset (((IMAP_DATA *) ctx->data)->rights, - IMAP_ACL_WRITE)) - return; -#endif + if (!mx_acl_check (ctx, ACL_WRITE)) + return; if (bf) { if (!h->flagged) { @@ -311,7 +274,7 @@ void _mutt_set_flag (CONTEXT * ctx, HEADER * h, int flag, int bf, int upd_ctx) && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged)) h->searched = 0; - draw_sidebar (0); + sidebar_draw (0); } void mutt_tag_set_flag (int flag, int bf)