X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.h;h=0a64a787c39b0174ca148a8a40a07ecaba1eb93f;hp=8b0ec1b64ab12d3f2d28417879603581372648dd;hb=01a3f4d932ddfc7f4a58f820d343f4a6f3b0f824;hpb=fd204cba10834057df23ba10458d4095b424e964 diff --git a/buffy.h b/buffy.h index 8b0ec1b..0a64a78 100644 --- a/buffy.h +++ b/buffy.h @@ -1,48 +1,37 @@ -/* +/* + * 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. */ /*parameter to mutt_parse_mailboxes*/ #define M_MAILBOXES 1 -#define M_UNMAILBOXES 2 +#define M_UNMAILBOXES 2 -typedef struct buffy_t -{ +typedef struct buffy_t { char *path; #ifdef BUFFY_SIZE long size; -#endif /* BUFFY_SIZE */ +#endif /* BUFFY_SIZE */ struct buffy_t *next; struct buffy_t *prev; - short new; /* mailbox has new mail */ - short has_new; /* set it new if new and not read */ - int msgcount; /* total number of messages */ - int msg_unread; /* number of unread messages */ - int msg_tagged; /* number of tagged messages */ - short notified; /* user has been notified */ - short magic; /* mailbox type */ - short newly_created; /* mbox or mmdf just popped into existence */ -} -BUFFY; + short new; /* mailbox has new mail */ + short has_new; /* set it new if new and not read */ + int msgcount; /* total number of messages */ + int msg_unread; /* number of unread messages */ + int msg_flagged; /* number of flagged messages */ + short notified; /* user has been notified */ + short magic; /* mailbox type */ + short newly_created; /* mbox or mmdf just popped into existence */ +} BUFFY; WHERE BUFFY *Incoming INITVAL (0); WHERE short BuffyTimeout INITVAL (3); -extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there was */ +extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there was */ #ifdef BUFFY_SIZE BUFFY *mutt_find_mailbox (const char *path);