diff options
author | krion <krion@FreeBSD.org> | 2005-01-12 18:44:07 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2005-01-12 18:44:07 +0000 |
commit | 82446ab307050738546cc10c1425522912298715 (patch) | |
tree | 55d7fb5e3988b570dc97db131ecbbe28561cd95c /mail | |
parent | cda57ca9a8e56bc7ac744c0873fcd7aecba7a4d6 (diff) | |
download | FreeBSD-ports-82446ab307050738546cc10c1425522912298715.zip FreeBSD-ports-82446ab307050738546cc10c1425522912298715.tar.gz |
- 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')
-rw-r--r-- | mail/mutt/files/patch-pgp.c | 11 | ||||
-rw-r--r-- | mail/mutt14/files/patch-pgp.c | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/mail/mutt/files/patch-pgp.c b/mail/mutt/files/patch-pgp.c new file mode 100644 index 0000000..75f2440 --- /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 && diff --git a/mail/mutt14/files/patch-pgp.c b/mail/mutt14/files/patch-pgp.c new file mode 100644 index 0000000..75f2440 --- /dev/null +++ b/mail/mutt14/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 && |