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