diff options
author | krion <krion@FreeBSD.org> | 2005-01-13 02:44:07 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2005-01-13 02:44:07 +0800 |
commit | 82446ab307050738546cc10c1425522912298715 (patch) | |
tree | 55d7fb5e3988b570dc97db131ecbbe28561cd95c /mail/mutt | |
parent | cda57ca9a8e56bc7ac744c0873fcd7aecba7a4d6 (diff) | |
download | freebsd-ports-gnome-82446ab307050738546cc10c1425522912298715.tar.gz freebsd-ports-gnome-82446ab307050738546cc10c1425522912298715.tar.zst freebsd-ports-gnome-82446ab307050738546cc10c1425522912298715.zip |
- Fix the charset of 7bit messsages when doing gpg encryption. This
makes gpg-signed messages more readable in GNATS eg.
PR: ports/76130
Submitted by: maintainer
Diffstat (limited to 'mail/mutt')
-rw-r--r-- | mail/mutt/files/patch-pgp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/mutt/files/patch-pgp.c b/mail/mutt/files/patch-pgp.c new file mode 100644 index 000000000000..75f2440693e5 --- /dev/null +++ b/mail/mutt/files/patch-pgp.c @@ -0,0 +1,11 @@ +--- pgp.c.orig Wed Jan 9 16:39:28 2002 ++++ pgp.c Wed Jan 12 09:46:08 2005 +@@ -1193,6 +1193,8 @@ + } + else if (a->encoding == ENC8BIT) + a->encoding = ENCQUOTEDPRINTABLE; ++ else if (a->encoding == ENC7BIT) ++ /* empty */ ; + else if (a->encoding == ENCBINARY) + a->encoding = ENCBASE64; + else if (a->content && a->encoding != ENCBASE64 && |