summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-26 16:52:48 -0400
committerJune McEnroe <june@causal.agency>2020-04-26 16:52:48 -0400
commit407c7fab874cbbadae7c0f1f961dee4775599278 (patch)
tree2397d5f938d24fa7c185da54438bab4baa3e9322
parentRemove margins in article.message header (diff)
downloadbubger-407c7fab874cbbadae7c0f1f961dee4775599278.tar.gz
bubger-407c7fab874cbbadae7c0f1f961dee4775599278.zip
Fall back to Content-Type name parameter for attachments
-rw-r--r--export.c1
-rw-r--r--html.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/export.c b/export.c
index 7a04358..ab77587 100644
--- a/export.c
+++ b/export.c
@@ -155,6 +155,7 @@ static int exportHTMLAttachment(
 		);
 	}
 	const char *name = paramGet(part->disposition.params, "filename");
+	if (!name) name = paramGet(part->params, "name");
 	const char *disposition = part->disposition.type;
 	if (!disposition) disposition = "INLINE";
 
diff --git a/html.c b/html.c
index 3bd192a..d884b63 100644
--- a/html.c
+++ b/html.c
@@ -275,6 +275,7 @@ int htmlAttachment(
 	);
 	char *url = templateURL("../" PATH_ATTACHMENT, path);
 	const char *name = paramGet(part->disposition.params, "filename");
+	if (!name) name = paramGet(part->params, "name");
 	struct Variable vars[] = {
 		{ "url", url },
 		{ "name", (name ? name : "") },
s into hilex.cJune McEnroe 2021-01-12Remove hacky tagging from hilexJune McEnroe 2021-01-12Add htagml -iJune McEnroe 2021-01-12Render tag index in HTMLJune McEnroe 2021-01-12Add htagml -xJune McEnroe 2021-01-12Prevent matching the same tag twiceJune McEnroe 2021-01-12Process htagml file line by lineJune McEnroe 2021-01-12Split fields by tab onlyJune McEnroe 2021-01-12List both Makefile and html.sh under README.7June McEnroe 2021-01-12Add htagml exampleJune McEnroe 2021-01-12Use mandoc and htagml for bin htmlJune McEnroe 2021-01-12Add htagmlJune McEnroe 2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe 2021-01-09Add c -t flag to print expression typeJune McEnroe 2021-01-05Update taglineJune McEnroe