X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=hdrline.c;h=bd83a437daa3decd3a4775f16762884e2c5003b3;hp=0bfadd9587343b9055d86c732bfc163d695f58c2;hb=5e53f9e5f65aa5b3af6f5af9d868403536534afb;hpb=bbc4fd52516a8afefbd14c77e34f8389d6f0a6ed diff --git a/hdrline.c b/hdrline.c index 0bfadd9..bd83a43 100644 --- a/hdrline.c +++ b/hdrline.c @@ -18,6 +18,7 @@ #include "charset.h" #include "mutt_crypt.h" #include "mutt_idna.h" +#include "mime.h" #include "lib/str.h" #include "lib/rx.h" @@ -206,6 +207,7 @@ int mutt_user_is_recipient (HEADER * h) * %u = user (login) name of author * %v = first name of author, unless from self * %W = where user is (organization) + * %X = number of MIME attachments * %y = `x-label:' field (if present) * %Y = `x-label:' field (if present, tree unfolded, and != parent's x-label) * %Z = status flags */ @@ -629,6 +631,25 @@ static const char *hdr_format_str (char *dest, optional = 0; break; + case 'X': + { + int count = 0; + + if (option (OPTCOUNTATTACH)) { + if (!hdr->content->parts) + mutt_parse_mime_message(ctx, hdr); + count = mutt_count_body_parts(hdr, 0); + } + + /* The recursion allows messages without depth to return 0. */ + if (optional) + optional = count != 0; + + snprintf (fmt, sizeof (fmt), "%%%sd", prefix); + snprintf (dest, destlen, fmt, count); + } + break; + case 'Z': ch = ' ';