aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2024-11-07 09:49:52 +0000
committerWerner Koch <[email protected]>2024-11-07 14:13:07 +0000
commit99069e9f6b89153cab0501a5bf6641b86c9b2971 (patch)
treeccc2b3020c83d92d47ca6820a381fc39c4f41d98
parentgpg-mail-tube: New feature --as-attach. (diff)
downloadgnupg-99069e9f6b89153cab0501a5bf6641b86c9b2971.tar.gz
gnupg-99069e9f6b89153cab0501a5bf6641b86c9b2971.zip
gpg-mail-type: Assume text/plain for missing content-type.
* tools/gpg-mail-tube.c (mail_tube_encrypt): Rename var ct_text for clarity. Replace debug diagnostic by log_info. Assume text/plain for missing content-type. -- Without this fix we would create message/rfc822 attachment instead of a text/plain attachment with the encrypted body.
-rw-r--r--tools/gpg-mail-tube.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/tools/gpg-mail-tube.c b/tools/gpg-mail-tube.c
index ea52b3269..b9b23b7da 100644
--- a/tools/gpg-mail-tube.c
+++ b/tools/gpg-mail-tube.c
@@ -412,7 +412,7 @@ mail_tube_encrypt (estream_t fpin, strlist_t recipients)
pid_t pid = (pid_t)(-1);
int exitcode;
int i, found;
- int ct_text = 0;
+ int ct_is_text = 0;
ctx->msg = rfc822parse_open (mail_tube_message_cb, ctx);
if (!ctx->msg)
@@ -485,9 +485,12 @@ mail_tube_encrypt (estream_t fpin, strlist_t recipients)
const char *media;
field = rfc822parse_parse_field (ctx->msg, "Content-Type", -1);
- if (field && (media = rfc822parse_query_media_type (field, NULL))
- && !strcmp (media, "text"))
- ct_text = 1;
+ if (!field)
+ ct_is_text = 1; /* Assumed CT is text/plain. */
+ else if ((media = rfc822parse_query_media_type (field, NULL))
+ && !strcmp (media, "text"))
+ ct_is_text = 1;
+
rfc822parse_release_field (field);
}
@@ -540,14 +543,14 @@ mail_tube_encrypt (estream_t fpin, strlist_t recipients)
"\r\n"
"--=-=mt-%s=-=\r\n",
boundary,
- ct_text? "file":"message",
+ ct_is_text? "file":"message",
boundary);
- if (ct_text)
+ if (ct_is_text)
es_fprintf (es_stdout,
"Content-Type: text/plain; charset=us-ascii\r\n"
"Content-Description: PGP encrypted file\r\n"
"Content-Disposition: attachment; filename=\"%s\"\r\n"
- "\r\n", "pgp-encrypted-file.asc");
+ "\r\n", "pgp-encrypted-file.txt.asc");
else
es_fprintf (es_stdout,
"Content-Type: message/rfc822\r\n"
@@ -579,18 +582,19 @@ mail_tube_encrypt (estream_t fpin, strlist_t recipients)
goto leave;
}
- if (opt.as_attach && ct_text)
+ if (opt.as_attach && ct_is_text)
{
/* No headers at all; write as plain file and ignore the encoding. */
/* FIXME: Should we do a base64 or QP decoding? */
}
else
{
- /* Write new mime headers using the old content-* values. */
+ /* Write new mime headers using the original content-* values. */
for (i=0; i < DIM (ct_names); i++)
{
line = rfc822parse_get_field (ctx->msg, ct_names[i], -1, NULL);
- log_debug ("OLD CT is '%s'\n", line);
+ if (opt.verbose)
+ log_info ("original Content-type is '%s'\n", line);
if (line)
{
es_fprintf (gpginfp, "%s\r\n", line);