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