X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=8f58fec83884dbd5edbf61eb39754ca8434a021e;hp=0dc5d0e3e4886d1bea160dead38031d17fcae7c0;hb=fc9c62aae0a7ebf1ff9335e322e7c1f5d3e459d3;hpb=102f532053055853c3eb5efd389ffccf59b8b452 diff --git a/status.c b/status.c index 0dc5d0e..8f58fec 100644 --- a/status.c +++ b/status.c @@ -41,6 +41,7 @@ static char *get_sort_str (char *buf, size_t buflen, int method) } /* %b = number of incoming folders with unread messages [option] + * %B = short mailbox path * %d = number of deleted messages [option] * %f = full mailbox path * %F = number of flagged messages [option] @@ -63,7 +64,7 @@ status_format_str (char *buf, size_t buflen, char op, const char *src, const char *elsestring, unsigned long data, format_flag flags) { - char fmt[SHORT_STRING], tmp[SHORT_STRING], *cp; + char fmt[SHORT_STRING], tmp[SHORT_STRING], *cp, *p; int count, optional = (flags & M_FORMAT_OPTIONAL); MUTTMENU *menu = (MUTTMENU *) data; @@ -80,6 +81,30 @@ status_format_str (char *buf, size_t buflen, char op, const char *src, optional = 0; break; + case 'B': + snprintf (fmt, sizeof (fmt), "%%%ss", prefix); +#ifdef USE_COMPRESSED + if (Context && Context->compressinfo && Context->realpath) + { + if ((p = strrchr (Context->realpath, '/'))) + strfcpy (tmp, p + 1, sizeof (tmp)); + else + strfcpy (tmp, Context->realpath, sizeof (tmp)); + } + else +#endif + if (Context && Context->path) + { + if ((p = strrchr (Context->path, '/'))) + strfcpy (tmp, p + 1, sizeof (tmp)); + else + strfcpy (tmp, Context->path, sizeof (tmp)); + } + else + strfcpy (tmp, _("no mailbox"), sizeof (tmp)); + snprintf (buf, buflen, fmt, tmp); + break; + case 'd': if (!optional) {