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