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