]> git.llucax.com Git - software/mutt-debian.git/blob - debian/patches/mutt-patched/sidebar
Grab two patches from upstream that should also go into lenny
[software/mutt-debian.git] / debian / patches / mutt-patched / sidebar
1 # vim:ft=diff:
2 This is the sidebar patch.
3
4 When enabled, mutt will show a list of mailboxes with (new) message counts in a
5 separate column on the left side of the screen.
6
7 As this feature is still considered to be unstable, this patch is only applied
8 in the "mutt-patched" package.
9
10 * Configuration variables:
11
12   sidebar_delim (string, default "|")
13
14     This specifies the delimiter between the sidebar (if visible) and 
15     other screens.
16
17   sidebar_visible (boolean, default no)
18
19     This specifies whether or not to show sidebar (left-side list of folders).
20
21   sidebar_width (integer, default 0)
22
23     The width of the sidebar.
24
25 * Patch source:
26   - http://www.lunar-linux.org/index.php?page=mutt-sidebar
27   - http://lunar-linux.org/~tchan/mutt/patch-1.5.18.sidebar.20080611.txt
28
29 * Changes made:
30   - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do
31     not need (Makefile.in).
32
33 == END PATCH
34 --- a/buffy.c
35 +++ b/buffy.c
36 @@ -261,7 +261,7 @@ int mutt_buffy_check (int force)
37    char path[_POSIX_PATH_MAX];
38    struct stat contex_sb;
39    time_t t;
40 -
41 +  CONTEXT *ctx;
42  #ifdef USE_IMAP
43    /* update postponed count as well, on force */
44    if (force)
45 @@ -296,6 +296,8 @@ int mutt_buffy_check (int force)
46    
47    for (tmp = Incoming; tmp; tmp = tmp->next)
48    {
49 +    if ( tmp->new == 1 )
50 +      tmp->has_new = 1;
51  #ifdef USE_IMAP
52      if (tmp->magic != M_IMAP)
53  #endif
54 @@ -353,48 +355,112 @@ int mutt_buffy_check (int force)
55        case M_MBOX:
56        case M_MMDF:
57  
58 -       if (STAT_CHECK)
59 +        {
60 +        if (STAT_CHECK || tmp->msgcount == 0)
61         {
62 -         BuffyCount++;
63 -         tmp->new = 1;
64 +         BUFFY b = *tmp;
65 +         int msgcount = 0;
66 +         int msg_unread = 0;
67 +         /* parse the mailbox, to see how much mail there is */
68 +         ctx = mx_open_mailbox( tmp->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL);
69 +         if(ctx)
70 +         {
71 +            msgcount = ctx->msgcount;
72 +           msg_unread = ctx->unread;
73 +           mx_close_mailbox(ctx, 0);
74 +         }
75 +         *tmp = b;
76 +         tmp->msgcount = msgcount;
77 +         tmp->msg_unread = msg_unread;
78 +         if(STAT_CHECK) {
79 +           tmp->has_new = tmp->new = 1;
80 +           BuffyCount++;
81 +          }  
82         }
83         else if (option(OPTCHECKMBOXSIZE))
84         {
85           /* some other program has deleted mail from the folder */
86           tmp->size = (long) sb.st_size;
87         }
88 -       if (tmp->newly_created &&
89 -           (sb.st_ctime != sb.st_mtime || sb.st_ctime != sb.st_atime))
90 -         tmp->newly_created = 0;
91 -
92 -       break;
93 +        if (tmp->newly_created &&
94 +            (sb.st_ctime != sb.st_mtime || sb.st_ctime != sb.st_atime))
95 +          tmp->newly_created = 0;
96 +        }
97 +        break;
98  
99        case M_MAILDIR:
100  
101 +        /* count new message */
102         snprintf (path, sizeof (path), "%s/new", tmp->path);
103         if ((dirp = opendir (path)) == NULL)
104         {
105           tmp->magic = 0;
106           break;
107         }
108 +       tmp->msgcount = 0;
109 +       tmp->msg_unread = 0;
110 +       tmp->msg_flagged = 0;
111         while ((de = readdir (dirp)) != NULL)
112         {
113           char *p;
114           if (*de->d_name != '.' && 
115               (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')))
116           {
117 -           /* one new and undeleted message is enough */
118 -           BuffyCount++;
119 -           tmp->new = 1;
120 -           break;
121 +           tmp->has_new = tmp->new = 1;
122 +            tmp->msgcount++;
123 +            tmp->msg_unread++;
124 +         }
125 +       }
126 +        if(tmp->msg_unread)
127 +          BuffyCount++;
128
129 +       closedir (dirp);
130
131 +        /*
132 +         * count read messages (for folderlist (sidebar) we also need to count
133 +         * messages in cur so that we the total number of messages
134 +         */
135 +       snprintf (path, sizeof (path), "%s/cur", tmp->path);
136 +       if ((dirp = opendir (path)) == NULL)
137 +       {
138 +         tmp->magic = 0;
139 +         break;
140 +       }
141 +       while ((de = readdir (dirp)) != NULL)
142 +       {
143 +         char *p;
144 +         if (*de->d_name != '.' && 
145 +             (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')))
146 +         {
147 +             tmp->msgcount++;
148 +             if (p && strchr(p + 3, 'F')) {
149 +               tmp->msg_flagged++;
150 +             }
151           }
152         }
153         closedir (dirp);
154         break;
155  
156        case M_MH:
157 -       if ((tmp->new = mh_buffy (tmp->path)) > 0)
158 -         BuffyCount++;
159 +      {
160 +      DIR *dp;
161 +      struct dirent *de;
162 +      if ((tmp->new = mh_buffy (tmp->path)) > 0)
163 +        BuffyCount++;
164 +    
165 +      if ((dp = opendir (path)) == NULL)
166 +        break;
167 +      tmp->msgcount = 0;
168 +      while ((de = readdir (dp)))
169 +      {
170 +        if (mh_valid_message (de->d_name))
171 +        {
172 +         tmp->msgcount++;
173 +         tmp->has_new = tmp->new = 1;
174 +        }
175 +      }
176 +      closedir (dp);
177 +      }
178         break;
179        }
180      }
181 --- a/buffy.h
182 +++ b/buffy.h
183 @@ -25,7 +25,12 @@ typedef struct buffy_t
184    char *path;
185    long size;
186    struct buffy_t *next;
187 +  struct buffy_t *prev;
188    short new;                   /* mailbox has new mail */
189 +  short has_new;               /* set it new if new and not read */
190 +  int msgcount;                        /* total number of messages */
191 +  int msg_unread;              /* number of unread messages */
192 +  int msg_flagged;             /* number of flagged messages */
193    short notified;              /* user has been notified */
194    short magic;                 /* mailbox type */
195    short newly_created;         /* mbox or mmdf just popped into existence */
196 --- a/color.c
197 +++ b/color.c
198 @@ -93,6 +93,8 @@ static struct mapping_t Fields[] =
199    { "bold",            MT_COLOR_BOLD },
200    { "underline",       MT_COLOR_UNDERLINE },
201    { "index",           MT_COLOR_INDEX },
202 +  { "sidebar_new",     MT_COLOR_NEW },
203 +  { "sidebar_flagged", MT_COLOR_FLAGGED },
204    { NULL,              0 }
205  };
206  
207 --- a/compose.c
208 +++ b/compose.c
209 @@ -72,7 +72,7 @@ enum
210  
211  #define HDR_XOFFSET 10
212  #define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */
213 -#define W (COLS - HDR_XOFFSET)
214 +#define W (COLS - HDR_XOFFSET - SidebarWidth)
215  
216  static char *Prompts[] =
217  {
218 @@ -115,16 +115,16 @@ static void redraw_crypt_lines (HEADER *
219    if ((WithCrypto & APPLICATION_PGP) && (WithCrypto & APPLICATION_SMIME))
220    {     
221      if (!msg->security)
222 -      mvaddstr (HDR_CRYPT, 0,     "Security: ");
223 +      mvaddstr (HDR_CRYPT, SidebarWidth,     "Security: ");
224      else if (msg->security & APPLICATION_SMIME)
225 -      mvaddstr (HDR_CRYPT, 0,     "  S/MIME: ");
226 +      mvaddstr (HDR_CRYPT, SidebarWidth,     "  S/MIME: ");
227      else if (msg->security & APPLICATION_PGP)
228 -      mvaddstr (HDR_CRYPT, 0,     "     PGP: ");
229 +      mvaddstr (HDR_CRYPT, SidebarWidth,     "     PGP: ");
230    }
231    else if ((WithCrypto & APPLICATION_SMIME))
232 -    mvaddstr (HDR_CRYPT, 0,     "  S/MIME: ");
233 +    mvaddstr (HDR_CRYPT, SidebarWidth,     "  S/MIME: ");
234    else if ((WithCrypto & APPLICATION_PGP))
235 -    mvaddstr (HDR_CRYPT, 0,     "     PGP: ");
236 +    mvaddstr (HDR_CRYPT, SidebarWidth,     "     PGP: ");
237    else
238      return;
239  
240 @@ -148,7 +148,7 @@ static void redraw_crypt_lines (HEADER *
241      }
242    clrtoeol ();
243  
244 -  move (HDR_CRYPTINFO, 0);
245 +  move (HDR_CRYPTINFO, SidebarWidth);
246    clrtoeol ();
247    if ((WithCrypto & APPLICATION_PGP)
248        && msg->security & APPLICATION_PGP  && msg->security & SIGN)
249 @@ -164,7 +164,7 @@ static void redraw_crypt_lines (HEADER *
250        && (msg->security & ENCRYPT)
251        && SmimeCryptAlg
252        && *SmimeCryptAlg) {
253 -      mvprintw (HDR_CRYPTINFO, 40, "%s%s", _("Encrypt with: "),
254 +      mvprintw (HDR_CRYPTINFO, SidebarWidth + 40, "%s%s", _("Encrypt with: "),
255                 NONULL(SmimeCryptAlg));
256        off = 20;
257    }
258 @@ -178,7 +178,7 @@ static void redraw_mix_line (LIST *chain
259    int c;
260    char *t;
261  
262 -  mvaddstr (HDR_MIX, 0,     "     Mix: ");
263 +  mvaddstr (HDR_MIX, SidebarWidth,     "     Mix: ");
264  
265    if (!chain)
266    {
267 @@ -193,7 +193,7 @@ static void redraw_mix_line (LIST *chain
268      if (t && t[0] == '0' && t[1] == '\0')
269        t = "<random>";
270      
271 -    if (c + mutt_strlen (t) + 2 >= COLS)
272 +    if (c + mutt_strlen (t) + 2 >= COLS - SidebarWidth)
273        break;
274  
275      addstr (NONULL(t));
276 @@ -245,7 +245,7 @@ static void draw_envelope_addr (int line
277  
278    buf[0] = 0;
279    rfc822_write_address (buf, sizeof (buf), addr, 1);
280 -  mvprintw (line, 0, TITLE_FMT, Prompts[line - 1]);
281 +  mvprintw (line, SidebarWidth, TITLE_FMT, Prompts[line - 1]);
282    mutt_paddstr (W, buf);
283  }
284  
285 @@ -255,10 +255,10 @@ static void draw_envelope (HEADER *msg, 
286    draw_envelope_addr (HDR_TO, msg->env->to);
287    draw_envelope_addr (HDR_CC, msg->env->cc);
288    draw_envelope_addr (HDR_BCC, msg->env->bcc);
289 -  mvprintw (HDR_SUBJECT, 0, TITLE_FMT, Prompts[HDR_SUBJECT - 1]);
290 +  mvprintw (HDR_SUBJECT, SidebarWidth, TITLE_FMT, Prompts[HDR_SUBJECT - 1]);
291    mutt_paddstr (W, NONULL (msg->env->subject));
292    draw_envelope_addr (HDR_REPLYTO, msg->env->reply_to);
293 -  mvprintw (HDR_FCC, 0, TITLE_FMT, Prompts[HDR_FCC - 1]);
294 +  mvprintw (HDR_FCC, SidebarWidth, TITLE_FMT, Prompts[HDR_FCC - 1]);
295    mutt_paddstr (W, fcc);
296  
297    if (WithCrypto)
298 @@ -269,7 +269,7 @@ static void draw_envelope (HEADER *msg, 
299  #endif
300  
301    SETCOLOR (MT_COLOR_STATUS);
302 -  mvaddstr (HDR_ATTACH - 1, 0, _("-- Attachments"));
303 +  mvaddstr (HDR_ATTACH - 1, SidebarWidth, _("-- Attachments"));
304    BKGDSET (MT_COLOR_STATUS);
305    clrtoeol ();
306  
307 @@ -307,7 +307,7 @@ static int edit_address_list (int line, 
308    /* redraw the expanded list so the user can see the result */
309    buf[0] = 0;
310    rfc822_write_address (buf, sizeof (buf), *addr, 1);
311 -  move (line, HDR_XOFFSET);
312 +  move (line, HDR_XOFFSET+SidebarWidth);
313    mutt_paddstr (W, buf);
314    
315    return 0;
316 @@ -553,7 +553,7 @@ int mutt_compose_menu (HEADER *msg,   /*
317         if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0)
318         {
319           mutt_str_replace (&msg->env->subject, buf);
320 -         move (HDR_SUBJECT, HDR_XOFFSET);
321 +         move (HDR_SUBJECT, HDR_XOFFSET + SidebarWidth);
322           clrtoeol ();
323           if (msg->env->subject)
324             mutt_paddstr (W, msg->env->subject);
325 @@ -570,7 +570,7 @@ int mutt_compose_menu (HEADER *msg,   /*
326         {
327           strfcpy (fcc, buf, _POSIX_PATH_MAX);
328           mutt_pretty_mailbox (fcc);
329 -         move (HDR_FCC, HDR_XOFFSET);
330 +         move (HDR_FCC, HDR_XOFFSET + SidebarWidth);
331           mutt_paddstr (W, fcc);
332           fccSet = 1;
333         }
334 --- a/curs_main.c
335 +++ b/curs_main.c
336 @@ -29,6 +29,7 @@
337  #include "sort.h"
338  #include "buffy.h"
339  #include "mx.h"
340 +#include "sidebar.h"
341  
342  #ifdef USE_POP
343  #include "pop.h"
344 @@ -544,8 +545,12 @@ int mutt_index_menu (void)
345         menu->redraw |= REDRAW_STATUS;
346       if (do_buffy_notify)
347       {
348 -       if (mutt_buffy_notify () && option (OPTBEEPNEW))
349 -       beep ();
350 +       if (mutt_buffy_notify ())
351 +       {
352 +         menu->redraw |= REDRAW_FULL;
353 +         if (option (OPTBEEPNEW))
354 +           beep ();
355 +       }
356       }
357       else
358         do_buffy_notify = 1;
359 @@ -557,6 +562,7 @@ int mutt_index_menu (void)
360      if (menu->redraw & REDRAW_FULL)
361      {
362        menu_redraw_full (menu);
363 +      draw_sidebar(menu->menu);
364        mutt_show_error ();
365      }
366  
367 @@ -579,10 +585,13 @@ int mutt_index_menu (void)
368  
369        if (menu->redraw & REDRAW_STATUS) 
370        {
371 +        DrawFullLine = 1;
372         menu_status_line (buf, sizeof (buf), menu, NONULL (Status));
373 +        DrawFullLine = 0;
374         CLEARLINE (option (OPTSTATUSONTOP) ? 0 : LINES-2);
375         SETCOLOR (MT_COLOR_STATUS);
376          BKGDSET (MT_COLOR_STATUS);
377 +        set_buffystats(Context);
378         mutt_paddstr (COLS, buf);
379         SETCOLOR (MT_COLOR_NORMAL);
380          BKGDSET (MT_COLOR_NORMAL);
381 @@ -603,7 +612,7 @@ int mutt_index_menu (void)
382         menu->oldcurrent = -1;
383  
384        if (option (OPTARROWCURSOR))
385 -       move (menu->current - menu->top + menu->offset, 2);
386 +       move (menu->current - menu->top + menu->offset, SidebarWidth + 2);
387        else if (option (OPTBRAILLEFRIENDLY))
388         move (menu->current - menu->top + menu->offset, 0);
389        else
390 @@ -1072,6 +1081,7 @@ int mutt_index_menu (void)
391           menu->redraw = REDRAW_FULL;
392         break;
393  
394 +      case OP_SIDEBAR_OPEN:
395        case OP_MAIN_CHANGE_FOLDER:
396        case OP_MAIN_NEXT_UNREAD_MAILBOX:
397        
398 @@ -1103,7 +1113,11 @@ int mutt_index_menu (void)
399         {
400           mutt_buffy (buf, sizeof (buf));
401  
402 -         if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
403 +          if ( op == OP_SIDEBAR_OPEN ) {
404 +              if(!CurBuffy)
405 +                break;
406 +            strncpy( buf, CurBuffy->path, sizeof(buf) );  
407 +           } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
408           {
409             if (menu->menu == MENU_PAGER)
410             {
411 @@ -1121,6 +1135,7 @@ int mutt_index_menu (void)
412         }
413  
414         mutt_expand_path (buf, sizeof (buf));
415 +        set_curbuffy(buf);
416         if (mx_get_magic (buf) <= 0)
417         {
418           mutt_error (_("%s is not a mailbox."), buf);
419 @@ -2213,6 +2228,12 @@ int mutt_index_menu (void)
420         mutt_what_key();
421         break;
422  
423 +      case OP_SIDEBAR_SCROLL_UP:
424 +      case OP_SIDEBAR_SCROLL_DOWN:
425 +      case OP_SIDEBAR_NEXT:
426 +      case OP_SIDEBAR_PREV:
427 +        scroll_sidebar(op, menu->menu);
428 +        break;
429        default:
430         if (menu->menu == MENU_MAIN)
431           km_error_key (MENU_MAIN);
432 --- a/flags.c
433 +++ b/flags.c
434 @@ -22,8 +22,10 @@
435  
436  #include "mutt.h"
437  #include "mutt_curses.h"
438 +#include "mutt_menu.h"
439  #include "sort.h"
440  #include "mx.h"
441 +#include "sidebar.h"
442  
443  #ifdef USE_IMAP
444  #include "imap_private.h"
445 @@ -294,6 +296,7 @@ void _mutt_set_flag (CONTEXT *ctx, HEADE
446     */
447    if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged))
448      h->searched = 0;
449 +       draw_sidebar(0);
450  }
451  
452  void mutt_tag_set_flag (int flag, int bf)
453 --- a/functions.h
454 +++ b/functions.h
455 @@ -169,6 +169,11 @@ struct binding_t OpMain[] = { /* map: in
456    { "decrypt-save",            OP_DECRYPT_SAVE,                NULL },
457  
458  
459 + { "sidebar-scroll-up",        OP_SIDEBAR_SCROLL_UP, NULL },
460 + { "sidebar-scroll-down",      OP_SIDEBAR_SCROLL_DOWN, NULL },
461 + { "sidebar-next",             OP_SIDEBAR_NEXT, NULL },
462 + { "sidebar-prev",             OP_SIDEBAR_PREV, NULL },
463 + { "sidebar-open",             OP_SIDEBAR_OPEN, NULL },
464    { NULL,                      0,                              NULL }
465  };
466  
467 @@ -267,6 +272,11 @@ struct binding_t OpPager[] = { /* map: p
468    { "decrypt-save",            OP_DECRYPT_SAVE,                NULL },
469  
470  
471 +  { "sidebar-scroll-up",       OP_SIDEBAR_SCROLL_UP, NULL },
472 +  { "sidebar-scroll-down",     OP_SIDEBAR_SCROLL_DOWN, NULL },
473 +  { "sidebar-next",    OP_SIDEBAR_NEXT, NULL },
474 +  { "sidebar-prev",    OP_SIDEBAR_PREV, NULL },
475 +  { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
476    { NULL,              0,                              NULL }
477  };
478  
479 --- a/globals.h
480 +++ b/globals.h
481 @@ -116,6 +116,7 @@ WHERE char *Realname;
482  WHERE char *SendCharset;
483  WHERE char *Sendmail;
484  WHERE char *Shell;
485 +WHERE char *SidebarDelim;
486  WHERE char *Signature;
487  WHERE char *SimpleSearch;
488  #if USE_SMTP
489 @@ -212,6 +213,9 @@ WHERE short ScoreThresholdDelete;
490  WHERE short ScoreThresholdRead;
491  WHERE short ScoreThresholdFlag;
492  
493 +WHERE struct buffy_t *CurBuffy INITVAL(0);
494 +WHERE short DrawFullLine INITVAL(0);
495 +WHERE short SidebarWidth;
496  #ifdef USE_IMAP
497  WHERE short ImapKeepalive;
498  #endif
499 --- a/init.h
500 +++ b/init.h
501 @@ -1532,6 +1532,22 @@ struct option_t MuttVars[] = {
502    ** you may unset this setting.
503    ** (Crypto only)
504    */
505 +  {"sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, "|"},
506 +  /*
507 +  ** .pp
508 +  ** This specifies the delimiter between the sidebar (if visible) and 
509 +  ** other screens.
510 +  */
511 +  { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 },
512 +  /*
513 +  ** .pp
514 +  ** This specifies whether or not to show sidebar (left-side list of folders).
515 +  */
516 +  { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 },
517 +  /*
518 +  ** .pp
519 +  ** The width of the sidebar.
520 +  */
521    { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
522    /*
523    ** .pp
524 --- a/mailbox.h
525 +++ b/mailbox.h
526 @@ -27,6 +27,7 @@
527  #define M_NEWFOLDER    (1<<4) /* create a new folder - same as M_APPEND, but uses
528                                 * safe_fopen() for mbox-style folders.
529                                 */
530 +#define M_PEEK         (1<<5) /* revert atime back after taking a look (if applicable) */
531  
532  /* mx_open_new_message() */
533  #define M_ADD_FROM     1       /* add a From_ line */
534 --- a/Makefile.am
535 +++ b/Makefile.am
536 @@ -29,7 +29,8 @@ mutt_SOURCES = \
537         score.c send.c sendlib.c signal.c sort.c \
538         status.c system.c thread.c charset.c history.c lib.c \
539         muttlib.c editmsg.c mbyte.c \
540 -       url.c ascii.c mutt_idna.c crypt-mod.c crypt-mod.h
541 +       url.c ascii.c mutt_idna.c crypt-mod.c crypt-mod.h \
542 +        sidebar.c
543  
544  nodist_mutt_SOURCES = $(BUILT_SOURCES)
545  
546 --- a/mbox.c
547 +++ b/mbox.c
548 @@ -104,6 +104,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
549      mutt_perror (ctx->path);
550      return (-1);
551    }
552 +  ctx->atime = sb.st_atime;
553    ctx->mtime = sb.st_mtime;
554    ctx->size = sb.st_size;
555  
556 @@ -259,6 +260,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
557  
558    ctx->size = sb.st_size;
559    ctx->mtime = sb.st_mtime;
560 +  ctx->atime = sb.st_atime;
561  
562  #ifdef NFS_ATTRIBUTE_HACK
563    if (sb.st_mtime > sb.st_atime)
564 --- a/menu.c
565 +++ b/menu.c
566 @@ -24,6 +24,7 @@
567  #include "mutt_curses.h"
568  #include "mutt_menu.h"
569  #include "mbyte.h"
570 +#include "sidebar.h"
571  
572  #ifdef USE_IMAP
573  #include "imap.h"
574 @@ -158,7 +159,7 @@ void menu_pad_string (char *s, size_t n)
575  {
576    char *scratch = safe_strdup (s);
577    int shift = option (OPTARROWCURSOR) ? 3 : 0;
578 -  int cols = COLS - shift;
579 +  int cols = COLS - shift - SidebarWidth;
580  
581    mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1);
582    s[n - 1] = 0;
583 @@ -209,6 +210,7 @@ void menu_redraw_index (MUTTMENU *menu)
584    char buf[LONG_STRING];
585    int i;
586  
587 +  draw_sidebar(1);
588    for (i = menu->top; i < menu->top + menu->pagelen; i++)
589    {
590      if (i < menu->max)
591 @@ -219,7 +221,7 @@ void menu_redraw_index (MUTTMENU *menu)
592        if (option (OPTARROWCURSOR))
593        {
594          attrset (menu->color (i));
595 -       CLEARLINE (i - menu->top + menu->offset);
596 +       CLEARLINE_WIN (i - menu->top + menu->offset);
597  
598         if (i == menu->current)
599         {
600 @@ -248,14 +250,14 @@ void menu_redraw_index (MUTTMENU *menu)
601           BKGDSET (MT_COLOR_INDICATOR);
602         }
603  
604 -       CLEARLINE (i - menu->top + menu->offset);
605 +       CLEARLINE_WIN (i - menu->top + menu->offset);
606         print_enriched_string (menu->color(i), (unsigned char *) buf, i != menu->current);
607          SETCOLOR (MT_COLOR_NORMAL);
608          BKGDSET (MT_COLOR_NORMAL);
609        }
610      }
611      else
612 -      CLEARLINE (i - menu->top + menu->offset);
613 +      CLEARLINE_WIN (i - menu->top + menu->offset);
614    }
615    menu->redraw = 0;
616  }
617 @@ -270,7 +272,7 @@ void menu_redraw_motion (MUTTMENU *menu)
618      return;
619    }
620    
621 -  move (menu->oldcurrent + menu->offset - menu->top, 0);
622 +  move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth);
623    SETCOLOR (MT_COLOR_NORMAL);
624    BKGDSET (MT_COLOR_NORMAL);
625  
626 @@ -285,13 +287,13 @@ void menu_redraw_motion (MUTTMENU *menu)
627        clrtoeol ();
628        menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent);
629        menu_pad_string (buf, sizeof (buf));
630 -      move (menu->oldcurrent + menu->offset - menu->top, 3);
631 +      move (menu->oldcurrent + menu->offset - menu->top, SidebarWidth + 3);
632        print_enriched_string (menu->color(menu->oldcurrent), (unsigned char *) buf, 1);
633        SETCOLOR (MT_COLOR_NORMAL);
634      }
635  
636      /* now draw it in the new location */
637 -    move (menu->current + menu->offset - menu->top, 0);
638 +    move (menu->current + menu->offset - menu->top, SidebarWidth);
639      attrset (menu->color (menu->current));
640      ADDCOLOR (MT_COLOR_INDICATOR);
641      addstr ("->");
642 @@ -312,7 +314,7 @@ void menu_redraw_motion (MUTTMENU *menu)
643      attrset (menu->color (menu->current));
644      ADDCOLOR (MT_COLOR_INDICATOR);
645      BKGDSET (MT_COLOR_INDICATOR);
646 -    CLEARLINE (menu->current - menu->top + menu->offset);
647 +    CLEARLINE_WIN (menu->current - menu->top + menu->offset);
648      print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0);
649      SETCOLOR (MT_COLOR_NORMAL);
650      BKGDSET (MT_COLOR_NORMAL);
651 @@ -324,7 +326,7 @@ void menu_redraw_current (MUTTMENU *menu
652  {
653    char buf[LONG_STRING];
654    
655 -  move (menu->current + menu->offset - menu->top, 0);
656 +  move (menu->current + menu->offset - menu->top, SidebarWidth);
657    menu_make_entry (buf, sizeof (buf), menu, menu->current);
658    menu_pad_string (buf, sizeof (buf));
659  
660 @@ -871,7 +873,7 @@ int mutt_menuLoop (MUTTMENU *menu)
661      
662      
663      if (option (OPTARROWCURSOR))
664 -      move (menu->current - menu->top + menu->offset, 2);
665 +      move (menu->current - menu->top + menu->offset, SidebarWidth + 2);
666      else if (option (OPTBRAILLEFRIENDLY))
667        move (menu->current - menu->top + menu->offset, 0);
668      else
669 --- a/mutt_curses.h
670 +++ b/mutt_curses.h
671 @@ -64,6 +64,7 @@
672  #undef lines
673  #endif /* lines */
674  
675 +#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol()
676  #define CLEARLINE(x) move(x,0), clrtoeol()
677  #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x)
678  #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0)
679 @@ -126,6 +127,8 @@ enum
680    MT_COLOR_BOLD,
681    MT_COLOR_UNDERLINE,
682    MT_COLOR_INDEX,
683 +  MT_COLOR_NEW,
684 +  MT_COLOR_FLAGGED,
685    MT_COLOR_MAX
686  };
687  
688 --- a/mutt.h
689 +++ b/mutt.h
690 @@ -437,6 +437,7 @@ enum
691    OPTSAVEEMPTY,
692    OPTSAVENAME,
693    OPTSCORE,
694 +  OPTSIDEBAR,
695    OPTSIGDASHES,
696    OPTSIGONTOP,
697    OPTSORTRE,
698 @@ -874,6 +875,7 @@ typedef struct _context
699  {
700    char *path;
701    FILE *fp;
702 +  time_t atime;
703    time_t mtime;
704    off_t size;
705    off_t vsize;
706 @@ -914,6 +916,7 @@ typedef struct _context
707    unsigned int quiet : 1;      /* inhibit status messages? */
708    unsigned int collapsed : 1;   /* are all threads collapsed? */
709    unsigned int closing : 1;    /* mailbox is being closed */
710 +  unsigned int peekonly : 1;   /* just taking a glance, revert atime */
711  
712    /* driver hooks */
713    void *data;                  /* driver specific data */
714 --- a/muttlib.c
715 +++ b/muttlib.c
716 @@ -1205,6 +1205,8 @@ void mutt_FormatString (char *dest,               /* 
717           pl = pw = 1;
718  
719         /* see if there's room to add content, else ignore */
720 +        if ( DrawFullLine )
721 +        {
722         if ((col < COLS && wlen < destlen) || soft)
723         {
724           int pad;
725 @@ -1247,6 +1249,52 @@ void mutt_FormatString (char *dest,              /* 
726           col += wid;
727           src += pl;
728         }
729 +        }
730 +        else
731 +        {
732 +       if ((col < COLS-SidebarWidth && wlen < destlen) || soft)
733 +        {
734 +         int pad;
735 +
736 +         /* get contents after padding */
737 +         mutt_FormatString (buf, sizeof (buf), 0, src + pl, callback, data, flags);
738 +         len = mutt_strlen (buf);
739 +         wid = mutt_strwidth (buf);
740 +
741 +         /* try to consume as many columns as we can, if we don't have
742 +          * memory for that, use as much memory as possible */
743 +         pad = (COLS - SidebarWidth - col - wid) / pw;
744 +         if (pad > 0 && wlen + (pad * pl) + len > destlen)
745 +           pad = ((signed)(destlen - wlen - len)) / pl;
746 +         if (pad > 0)
747 +         {
748 +           while (pad--)
749 +           {
750 +             memcpy (wptr, src, pl);
751 +             wptr += pl;
752 +             wlen += pl;
753 +             col += pw;
754 +           }
755 +         }
756 +         else if (soft && pad < 0)
757 +         {
758 +           /* \0-terminate dest for length computation in mutt_wstr_trunc() */
759 +           *wptr = 0;
760 +           /* make sure right part is at most as wide as display */
761 +           len = mutt_wstr_trunc (buf, destlen, COLS, &wid);
762 +           /* truncate left so that right part fits completely in */
763 +           wlen = mutt_wstr_trunc (dest, destlen - len, col + pad, &col);
764 +           wptr = dest + wlen;
765 +         }
766 +         if (len + wlen > destlen)
767 +           len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL);
768 +         memcpy (wptr, buf, len);
769 +         wptr += len;
770 +         wlen += len;
771 +         col += wid;
772 +         src += pl;
773 +       }
774 +        }
775         break; /* skip rest of input */
776        }
777        else if (ch == '|')
778 --- a/mx.c
779 +++ b/mx.c
780 @@ -626,6 +626,7 @@ static int mx_open_mailbox_append (CONTE
781   *             M_APPEND        open mailbox for appending
782   *             M_READONLY      open mailbox in read-only mode
783   *             M_QUIET         only print error messages
784 + *             M_PEEK          revert atime where applicable
785   *     ctx     if non-null, context struct to use
786   */
787  CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
788 @@ -648,6 +649,8 @@ CONTEXT *mx_open_mailbox (const char *pa
789      ctx->quiet = 1;
790    if (flags & M_READONLY)
791      ctx->readonly = 1;
792 +  if (flags & M_PEEK)
793 +    ctx->peekonly = 1;
794  
795    if (flags & (M_APPEND|M_NEWFOLDER))
796    {
797 @@ -752,9 +755,21 @@ CONTEXT *mx_open_mailbox (const char *pa
798  void mx_fastclose_mailbox (CONTEXT *ctx)
799  {
800    int i;
801 +#ifndef BUFFY_SIZE
802 +  struct utimbuf ut;
803 +#endif
804  
805    if(!ctx) 
806      return;
807 +#ifndef BUFFY_SIZE
808 +  /* fix up the times so buffy won't get confused */
809 +  if (ctx->peekonly && ctx->path && ctx->mtime > ctx->atime)
810 +  {
811 +    ut.actime = ctx->atime;
812 +    ut.modtime = ctx->mtime;
813 +    utime (ctx->path, &ut); 
814 +  }
815 +#endif
816  
817    if (ctx->mx_close)
818      ctx->mx_close (ctx);
819 --- a/OPS
820 +++ b/OPS
821 @@ -179,3 +179,8 @@ OP_WHAT_KEY "display the keycode for a k
822  OP_MAIN_SHOW_LIMIT "show currently active limit pattern"
823  OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread"
824  OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads"
825 +OP_SIDEBAR_SCROLL_UP "scroll the mailbox pane up 1 page"
826 +OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page"
827 +OP_SIDEBAR_NEXT "go down to next mailbox"
828 +OP_SIDEBAR_PREV "go to previous mailbox"
829 +OP_SIDEBAR_OPEN "open hilighted mailbox"
830 --- a/pager.c
831 +++ b/pager.c
832 @@ -30,6 +30,7 @@
833  #include "pager.h"
834  #include "attach.h"
835  #include "mbyte.h"
836 +#include "sidebar.h"
837  
838  #include "mx.h"
839  
840 @@ -1067,6 +1068,8 @@ static int format_line (struct line_t **
841    mbstate_t mbstate;
842  
843    int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap);
844 +
845 +  wrap_cols -= SidebarWidth;
846    
847    /* FIXME: this should come from lineInfo */
848    memset(&mbstate, 0, sizeof(mbstate));
849 @@ -1700,7 +1703,7 @@ mutt_pager (const char *banner, const ch
850      if ((redraw & REDRAW_BODY) || topline != oldtopline)
851      {
852        do {
853 -       move (bodyoffset, 0);
854 +       move (bodyoffset, SidebarWidth);
855         curline = oldtopline = topline;
856         lines = 0;
857         force_redraw = 0;
858 @@ -1713,6 +1716,7 @@ mutt_pager (const char *banner, const ch
859                             &QuoteList, &q_level, &force_redraw, &SearchRE) > 0)
860             lines++;
861           curline++;
862 +         move(lines + bodyoffset, SidebarWidth);
863         }
864         last_offset = lineInfo[curline].offset;
865        } while (force_redraw);
866 @@ -1726,6 +1730,7 @@ mutt_pager (const char *banner, const ch
867           addch ('~');
868         addch ('\n');
869         lines++;
870 +       move(lines + bodyoffset, SidebarWidth);
871        }
872        /* We are going to update the pager status bar, so it isn't
873         * necessary to reset to normal color now. */
874 @@ -1749,22 +1754,22 @@ mutt_pager (const char *banner, const ch
875        /* print out the pager status bar */
876        SETCOLOR (MT_COLOR_STATUS);
877        BKGDSET (MT_COLOR_STATUS);
878 -      CLEARLINE (statusoffset);
879 +      CLEARLINE_WIN (statusoffset);
880        if (IsHeader (extra))
881        {
882 -       size_t l1 = COLS * MB_LEN_MAX;
883 +       size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX;
884         size_t l2 = sizeof (buffer);
885         hfi.hdr = extra->hdr;
886         mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
887        }
888        else if (IsMsgAttach (extra))
889        {
890 -       size_t l1 = COLS * MB_LEN_MAX;
891 +       size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX;
892         size_t l2 = sizeof (buffer);
893         hfi.hdr = extra->bdy->hdr;
894         mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
895        }
896 -      mutt_paddstr (COLS, IsHeader (extra) || IsMsgAttach (extra) ?  buffer : banner);
897 +      mutt_paddstr (COLS-SidebarWidth, IsHeader (extra) || IsMsgAttach (extra) ?  buffer : banner);
898        BKGDSET (MT_COLOR_NORMAL);
899        SETCOLOR (MT_COLOR_NORMAL);
900        if (option(OPTXTERMSETTITLES))
901 @@ -1781,18 +1786,23 @@ mutt_pager (const char *banner, const ch
902        /* redraw the pager_index indicator, because the
903         * flags for this message might have changed. */
904        menu_redraw_current (index);
905 +      draw_sidebar(MENU_PAGER);
906  
907        /* print out the index status bar */
908        menu_status_line (buffer, sizeof (buffer), index, NONULL(Status));
909   
910 -      move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0);
911 +      move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), SidebarWidth);
912        SETCOLOR (MT_COLOR_STATUS);
913        BKGDSET (MT_COLOR_STATUS);
914 -      mutt_paddstr (COLS, buffer);
915 +      mutt_paddstr (COLS-SidebarWidth, buffer);
916        SETCOLOR (MT_COLOR_NORMAL);
917        BKGDSET (MT_COLOR_NORMAL);
918      }
919  
920 +    /* if we're not using the index, update every time */
921 +    if ( index == 0 )
922 +      draw_sidebar(MENU_PAGER);
923 +
924      redraw = 0;
925  
926      if (option(OPTBRAILLEFRIENDLY)) {
927 @@ -2671,6 +2681,13 @@ search_next:
928          redraw = REDRAW_FULL;
929          break;
930  
931 +      case OP_SIDEBAR_SCROLL_UP:
932 +      case OP_SIDEBAR_SCROLL_DOWN:
933 +      case OP_SIDEBAR_NEXT:
934 +      case OP_SIDEBAR_PREV:
935 +       scroll_sidebar(ch, MENU_PAGER);
936 +       break;
937 +
938        default:
939         ch = -1;
940         break;
941 --- /dev/null
942 +++ b/sidebar.c
943 @@ -0,0 +1,333 @@
944 +/*
945 + * Copyright (C) ????-2004 Justin Hibbits <jrh29@po.cwru.edu>
946 + * Copyright (C) 2004 Thomer M. Gil <mutt@thomer.com>
947 + * 
948 + *     This program is free software; you can redistribute it and/or modify
949 + *     it under the terms of the GNU General Public License as published by
950 + *     the Free Software Foundation; either version 2 of the License, or
951 + *     (at your option) any later version.
952 + * 
953 + *     This program is distributed in the hope that it will be useful,
954 + *     but WITHOUT ANY WARRANTY; without even the implied warranty of
955 + *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
956 + *     GNU General Public License for more details.
957 + * 
958 + *     You should have received a copy of the GNU General Public License
959 + *     along with this program; if not, write to the Free Software
960 + *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
961 + */ 
962 +
963 +
964 +#if HAVE_CONFIG_H
965 +# include "config.h"
966 +#endif
967 +
968 +#include "mutt.h"
969 +#include "mutt_menu.h"
970 +#include "mutt_curses.h"
971 +#include "sidebar.h"
972 +#include "buffy.h"
973 +#include <libgen.h>
974 +#include "keymap.h"
975 +#include <stdbool.h>
976 +
977 +/*BUFFY *CurBuffy = 0;*/
978 +static BUFFY *TopBuffy = 0;
979 +static BUFFY *BottomBuffy = 0;
980 +static int known_lines = 0;
981 +
982 +static int quick_log10(int n)
983 +{
984 +        char string[32];
985 +        sprintf(string, "%d", n);
986 +        return strlen(string);
987 +}
988 +
989 +void calc_boundaries (int menu)
990 +{
991 +       BUFFY *tmp = Incoming;
992 +
993 +       if ( known_lines != LINES ) {
994 +               TopBuffy = BottomBuffy = 0;
995 +               known_lines = LINES;
996 +       }
997 +       for ( ; tmp->next != 0; tmp = tmp->next )
998 +               tmp->next->prev = tmp;
999 +
1000 +       if ( TopBuffy == 0 && BottomBuffy == 0 )
1001 +               TopBuffy = Incoming;
1002 +       if ( BottomBuffy == 0 ) {
1003 +               int count = LINES - 2 - (menu != MENU_PAGER || option(OPTSTATUSONTOP));
1004 +               BottomBuffy = TopBuffy;
1005 +               while ( --count && BottomBuffy->next )
1006 +                       BottomBuffy = BottomBuffy->next;
1007 +       }
1008 +       else if ( TopBuffy == CurBuffy->next ) {
1009 +               int count = LINES - 2 - (menu != MENU_PAGER);
1010 +               BottomBuffy = CurBuffy;
1011 +               tmp = BottomBuffy;
1012 +               while ( --count && tmp->prev)
1013 +                       tmp = tmp->prev;
1014 +               TopBuffy = tmp;
1015 +       }
1016 +       else if ( BottomBuffy == CurBuffy->prev ) {
1017 +               int count = LINES - 2 - (menu != MENU_PAGER);
1018 +               TopBuffy = CurBuffy;
1019 +               tmp = TopBuffy;
1020 +               while ( --count && tmp->next )
1021 +                       tmp = tmp->next;
1022 +               BottomBuffy = tmp;
1023 +       }
1024 +}
1025 +
1026 +char *make_sidebar_entry(char *box, int size, int new, int flagged)
1027 +{
1028 +       static char *entry = 0;
1029 +       char *c;
1030 +       int i = 0;
1031 +       int delim_len = strlen(SidebarDelim);
1032 +
1033 +       c = realloc(entry, SidebarWidth - delim_len + 2);
1034 +       if ( c ) entry = c;
1035 +       entry[SidebarWidth - delim_len + 1] = 0;
1036 +       for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' );
1037 +       i = strlen(box);
1038 +       strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) );
1039 +
1040 +        if (size == -1)
1041 +                sprintf(entry + SidebarWidth - delim_len - 3, "?");
1042 +        else if ( new ) {
1043 +          if (flagged > 0) {
1044 +              sprintf(
1045 +                       entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged),
1046 +                       "% d(%d)[%d]", size, new, flagged);
1047 +          } else {
1048 +              sprintf(
1049 +                      entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new),
1050 +                      "% d(%d)", size, new);
1051 +          }
1052 +        } else if (flagged > 0) {
1053 +              sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged);
1054 +        } else {
1055 +              sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size);
1056 +        }
1057 +       return entry;
1058 +}
1059 +
1060 +void set_curbuffy(char buf[LONG_STRING])
1061 +{
1062 +  BUFFY* tmp = CurBuffy = Incoming;
1063 +
1064 +  if (!Incoming)
1065 +    return;
1066 +
1067 +  while(1) {
1068 +    if(!strcmp(tmp->path, buf)) {
1069 +      CurBuffy = tmp;
1070 +      break;
1071 +    }
1072 +
1073 +    if(tmp->next)
1074 +      tmp = tmp->next;
1075 +    else
1076 +      break;
1077 +  }
1078 +}
1079 +
1080 +int draw_sidebar(int menu) {
1081 +
1082 +       int lines = option(OPTHELP) ? 1 : 0;
1083 +       BUFFY *tmp;
1084 +#ifndef USE_SLANG_CURSES
1085 +        attr_t attrs;
1086 +#endif
1087 +        short delim_len = strlen(SidebarDelim);
1088 +        short color_pair;
1089 +
1090 +        static bool initialized = false;
1091 +        static int prev_show_value;
1092 +        static short saveSidebarWidth;
1093 +
1094 +        /* initialize first time */
1095 +        if(!initialized) {
1096 +                prev_show_value = option(OPTSIDEBAR);
1097 +                saveSidebarWidth = SidebarWidth;
1098 +                if(!option(OPTSIDEBAR)) SidebarWidth = 0;
1099 +                initialized = true;
1100 +        }
1101 +
1102 +        /* save or restore the value SidebarWidth */
1103 +        if(prev_show_value != option(OPTSIDEBAR)) {
1104 +                if(prev_show_value && !option(OPTSIDEBAR)) {
1105 +                        saveSidebarWidth = SidebarWidth;
1106 +                        SidebarWidth = 0;
1107 +                } else if(!prev_show_value && option(OPTSIDEBAR)) {
1108 +                        SidebarWidth = saveSidebarWidth;
1109 +                }
1110 +                prev_show_value = option(OPTSIDEBAR);
1111 +        }
1112 +
1113 +
1114 +//     if ( SidebarWidth == 0 ) return 0;
1115 +       if (SidebarWidth > 0 && option (OPTSIDEBAR)
1116 +           && delim_len >= SidebarWidth) {
1117 +         unset_option (OPTSIDEBAR);
1118 +         /* saveSidebarWidth = SidebarWidth; */
1119 +         if (saveSidebarWidth > delim_len) {
1120 +           SidebarWidth = saveSidebarWidth;
1121 +           mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar."));
1122 +           sleep (2);
1123 +         } else {
1124 +           SidebarWidth = 0;
1125 +           mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar. Please set your sidebar_width to a sane value."));
1126 +           sleep (4); /* the advise to set a sane value should be seen long enough */
1127 +         }
1128 +         saveSidebarWidth = 0;
1129 +         return (0);
1130 +       }
1131 +
1132 +    if ( SidebarWidth == 0 || !option(OPTSIDEBAR)) {
1133 +      if (SidebarWidth > 0) {
1134 +        saveSidebarWidth = SidebarWidth;
1135 +        SidebarWidth = 0;
1136 +      }
1137 +      unset_option(OPTSIDEBAR);
1138 +      return 0;
1139 +    }
1140 +
1141 +        /* get attributes for divider */
1142 +       SETCOLOR(MT_COLOR_STATUS);
1143 +#ifndef USE_SLANG_CURSES
1144 +        attr_get(&attrs, &color_pair, 0);
1145 +#else
1146 +        color_pair = attr_get();
1147 +#endif
1148 +       SETCOLOR(MT_COLOR_NORMAL);
1149 +
1150 +       /* draw the divider */
1151 +
1152 +       for ( ; lines < LINES-1-(menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
1153 +               move(lines, SidebarWidth - delim_len);
1154 +               addstr(NONULL(SidebarDelim));
1155 +#ifndef USE_SLANG_CURSES
1156 +                mvchgat(lines, SidebarWidth - delim_len, delim_len, 0, color_pair, NULL);
1157 +#endif
1158 +       }
1159 +
1160 +       if ( Incoming == 0 ) return 0;
1161 +       lines = option(OPTHELP) ? 1 : 0; /* go back to the top */
1162 +
1163 +       if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 ) 
1164 +               calc_boundaries(menu);
1165 +       if ( CurBuffy == 0 ) CurBuffy = Incoming;
1166 +
1167 +       tmp = TopBuffy;
1168 +
1169 +       SETCOLOR(MT_COLOR_NORMAL);
1170 +
1171 +       for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); tmp = tmp->next ) {
1172 +               if ( tmp == CurBuffy )
1173 +                       SETCOLOR(MT_COLOR_INDICATOR);
1174 +               else if ( tmp->msg_unread > 0 )
1175 +                       SETCOLOR(MT_COLOR_NEW);
1176 +               else if ( tmp->msg_flagged > 0 )
1177 +                       SETCOLOR(MT_COLOR_FLAGGED);
1178 +               else
1179 +                       SETCOLOR(MT_COLOR_NORMAL);
1180 +
1181 +               move( lines, 0 );
1182 +               if ( Context && !strcmp( tmp->path, Context->path ) ) {
1183 +                       tmp->msg_unread = Context->unread;
1184 +                       tmp->msgcount = Context->msgcount;
1185 +                       tmp->msg_flagged = Context->flagged;
1186 +               }
1187 +               // check whether Maildir is a prefix of the current folder's path
1188 +               short maildir_is_prefix = 0;
1189 +               if ( (strlen(tmp->path) > strlen(Maildir)) &&
1190 +                       (strncmp(Maildir, tmp->path, strlen(Maildir)) == 0) )
1191 +                       maildir_is_prefix = 1;
1192 +               // calculate depth of current folder and generate its display name with indented spaces
1193 +               int sidebar_folder_depth = 0;
1194 +               char *sidebar_folder_name;
1195 +               sidebar_folder_name = basename(tmp->path);
1196 +               if ( maildir_is_prefix ) {
1197 +                       char *tmp_folder_name;
1198 +                       int i;
1199 +                       tmp_folder_name = tmp->path + strlen(Maildir);
1200 +                       for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) {
1201 +                               if (tmp_folder_name[i] == '/') sidebar_folder_depth++;
1202 +                       }   
1203 +                       if (sidebar_folder_depth > 0) {
1204 +                               sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1);
1205 +                               for (i=0; i < sidebar_folder_depth; i++)
1206 +                                       sidebar_folder_name[i]=' ';
1207 +                               sidebar_folder_name[i]=0;
1208 +                               strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth);
1209 +                       }
1210 +               }
1211 +               printw( "%.*s", SidebarWidth - delim_len + 1,
1212 +                       make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
1213 +                       tmp->msg_unread, tmp->msg_flagged));
1214 +               if (sidebar_folder_depth > 0)
1215 +                       free(sidebar_folder_name);
1216 +               lines++;
1217 +       }
1218 +       SETCOLOR(MT_COLOR_NORMAL);
1219 +       for ( ; lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
1220 +               int i = 0;
1221 +               move( lines, 0 );
1222 +               for ( ; i < SidebarWidth - delim_len; i++ )
1223 +                       addch(' ');
1224 +       }
1225 +       return 0;
1226 +}
1227 +
1228 +
1229 +void set_buffystats(CONTEXT* Context)
1230 +{
1231 +        BUFFY *tmp = Incoming;
1232 +        while(tmp) {
1233 +                if(Context && !strcmp(tmp->path, Context->path)) {
1234 +                       tmp->msg_unread = Context->unread;
1235 +                       tmp->msgcount = Context->msgcount;
1236 +                        break;
1237 +                }
1238 +                tmp = tmp->next;
1239 +        }
1240 +}
1241 +
1242 +void scroll_sidebar(int op, int menu)
1243 +{
1244 +        if(!SidebarWidth) return;
1245 +        if(!CurBuffy) return;
1246 +
1247 +       switch (op) {
1248 +               case OP_SIDEBAR_NEXT:
1249 +                       if ( CurBuffy->next == NULL ) return;
1250 +                       CurBuffy = CurBuffy->next;
1251 +                       break;
1252 +               case OP_SIDEBAR_PREV:
1253 +                       if ( CurBuffy->prev == NULL ) return;
1254 +                       CurBuffy = CurBuffy->prev;
1255 +                       break;
1256 +               case OP_SIDEBAR_SCROLL_UP:
1257 +                       CurBuffy = TopBuffy;
1258 +                       if ( CurBuffy != Incoming ) {
1259 +                               calc_boundaries(menu);
1260 +                               CurBuffy = CurBuffy->prev;
1261 +                       }
1262 +                       break;
1263 +               case OP_SIDEBAR_SCROLL_DOWN:
1264 +                       CurBuffy = BottomBuffy;
1265 +                       if ( CurBuffy->next ) {
1266 +                               calc_boundaries(menu);
1267 +                               CurBuffy = CurBuffy->next;
1268 +                       }
1269 +                       break;
1270 +               default:
1271 +                       return;
1272 +       }
1273 +       calc_boundaries(menu);
1274 +       draw_sidebar(menu);
1275 +}
1276 +
1277 --- /dev/null
1278 +++ b/sidebar.h
1279 @@ -0,0 +1,36 @@
1280 +/*
1281 + * Copyright (C) ????-2004 Justin Hibbits <jrh29@po.cwru.edu>
1282 + * Copyright (C) 2004 Thomer M. Gil <mutt@thomer.com>
1283 + * 
1284 + *     This program is free software; you can redistribute it and/or modify
1285 + *     it under the terms of the GNU General Public License as published by
1286 + *     the Free Software Foundation; either version 2 of the License, or
1287 + *     (at your option) any later version.
1288 + * 
1289 + *     This program is distributed in the hope that it will be useful,
1290 + *     but WITHOUT ANY WARRANTY; without even the implied warranty of
1291 + *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1292 + *     GNU General Public License for more details.
1293 + * 
1294 + *     You should have received a copy of the GNU General Public License
1295 + *     along with this program; if not, write to the Free Software
1296 + *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
1297 + */ 
1298 +
1299 +#ifndef SIDEBAR_H
1300 +#define SIDEBAR_H
1301 +
1302 +struct MBOX_LIST {
1303 +       char *path;
1304 +       int msgcount;
1305 +       int new;
1306 +} MBLIST;
1307 +
1308 +/* parameter is whether or not to go to the status line */
1309 +/* used for omitting the last | that covers up the status bar in the index */
1310 +int draw_sidebar(int);
1311 +void scroll_sidebar(int, int);
1312 +void set_curbuffy(char*);
1313 +void set_buffystats(CONTEXT*);
1314 +
1315 +#endif /* SIDEBAR_H */
1316 --- a/doc/Muttrc
1317 +++ b/doc/Muttrc
1318 @@ -2090,6 +2090,26 @@ attachments   -I message/external-body
1319  # function.
1320  # 
1321  # 
1322 +# set sidebar_visible=no
1323 +#
1324 +# Name: sidebar_visible
1325 +# Type: boolean
1326 +# Default: no
1327 +# 
1328 +# 
1329 +# This specifies whether or not to show sidebar (left-side list of folders).
1330 +# 
1331 +# 
1332 +# set sidebar_width=0
1333 +#
1334 +# Name: sidebar_width
1335 +# Type: number
1336 +# Default: 0
1337 +# 
1338 +# 
1339 +# The width of the sidebar.
1340 +# 
1341 +# 
1342  # set crypt_autosign=no
1343  #
1344  # Name: crypt_autosign
1345 --- a/imap/imap.c
1346 +++ b/imap/imap.c
1347 @@ -1484,7 +1484,7 @@ int imap_buffy_check (int force)
1348  
1349      imap_munge_mbox_name (munged, sizeof (munged), name);
1350      snprintf (command, sizeof (command),
1351 -             "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged);
1352 +             "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged);
1353  
1354      if (imap_cmd_queue (idata, command) < 0)
1355      {
1356 --- a/imap/command.c
1357 +++ b/imap/command.c
1358 @@ -911,6 +911,13 @@ static void cmd_parse_status (IMAP_DATA*
1359              opened */
1360           status->uidnext = oldun;
1361  
1362 +        /* Added to make the sidebar show the correct numbers */
1363 +        if (status->messages)
1364 +        {
1365 +          inc->msgcount = status->messages;
1366 +          inc->msg_unread = status->unseen;
1367 +        }
1368 +
1369          FREE (&value);
1370          return;
1371        }
1372 --- a/PATCHES
1373 +++ b/PATCHES
1374 @@ -0,0 +1 @@
1375 +patch-1.5.18.sidebar.20080611.txt