about summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2020-01-19 20:31:17 +0100
committerDrew DeVault <sir@cmpwn.com>2020-01-20 09:21:29 -0500
commit6b0483dd92986b3a4dfdd60f4c2289c83f252d6b (patch)
tree7d0a1971d37c4ebd9a04cae275bf86ab2d58fc4c /commands
parent5b3acb8034e78680eb8dca472af5dd72af57414e (diff)
downloadaerc-6b0483dd92986b3a4dfdd60f4c2289c83f252d6b.tar.gz
msgview/open: remove manual decoding
Diffstat (limited to 'commands')
-rw-r--r--commands/msgview/open.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/commands/msgview/open.go b/commands/msgview/open.go
index 6001d28..b467543 100644
--- a/commands/msgview/open.go
+++ b/commands/msgview/open.go
@@ -1,13 +1,10 @@
 package msgview
 
 import (
-	"encoding/base64"
 	"errors"
 	"io"
 	"io/ioutil"
-	"mime/quotedprintable"
 	"os"
-	"strings"
 	"time"
 
 	"git.sr.ht/~sircmpwn/aerc/lib"
@@ -37,14 +34,6 @@ func (Open) Execute(aerc *widgets.Aerc, args []string) error {
 	p := mv.SelectedMessagePart()
 
 	p.Store.FetchBodyPart(p.Msg.Uid, p.Msg.BodyStructure, p.Index, func(reader io.Reader) {
-		// email parts are encoded as 7bit (plaintext), quoted-printable, or base64
-
-		if strings.EqualFold(p.Part.Encoding, "base64") {
-			reader = base64.NewDecoder(base64.StdEncoding, reader)
-		} else if strings.EqualFold(p.Part.Encoding, "quoted-printable") {
-			reader = quotedprintable.NewReader(reader)
-		}
-
 		tmpFile, err := ioutil.TempFile(os.TempDir(), "aerc-")
 		if err != nil {
 			aerc.PushError(" " + err.Error())