X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fsendsbr.c;h=aeba011e1377352e48db87e90cd7ea3d862b7ba0;hb=30fd2ad6d3eff3749b2ae99ec90d2215bf1b1aca;hp=f8384f7ca8cbd13981af67f5b937b46a380cd9dc;hpb=b8ca332a9752c9de52613a229d95eb7c4c15ac20;p=mmh diff --git a/uip/sendsbr.c b/uip/sendsbr.c index f8384f7..aeba011 100644 --- a/uip/sendsbr.c +++ b/uip/sendsbr.c @@ -498,8 +498,9 @@ make_mime_composition_file_entry(char *file_name, int attachformat) } else { /* Suppress Content-Id, insert simple Content-Disposition. */ (void) fprintf (composition_file, - "#%s <>{attachment}", - content_type); + "#%s; name=\"%s\" <>{attachment}", + content_type, + ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1); } break; @@ -514,8 +515,9 @@ make_mime_composition_file_entry(char *file_name, int attachformat) /* Suppress Content-Id, insert Content-Disposition with modification date. */ (void) fprintf (composition_file, - "#%s <>{attachment; modification-date=\"%s\"}", + "#%s; name=\"%s\" <>{attachment; modification-date=\"%s\"}", content_type, + ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1, dtime (&st.st_mtime, 0)); } @@ -1008,7 +1010,7 @@ annoaux (int fd) } if (!(mp = folder_read (folder))) { if (debugsw) - admonish (NULL, "unable to read folder %s"); + admonish (NULL, "unable to read folder %s", folder); return; }