Skip to content

Commit e8cc083

Browse files
committed
net/mail: do not parse RFC 2047 tokens in quoted strings
RFC 2047 tokens like =?utf-8?B?whatever?= can only appear unquoted, but this code was trying to decode them even when they came out of quoted strings. Quoted strings must be left alone. Fixes #11294. Change-Id: I41b371f5b1611f1e56d93623888413d07d4ec878 Reviewed-on: https://go-review.googlesource.com/17381 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 6f6b2f0 commit e8cc083

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

src/net/mail/message.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -392,10 +392,9 @@ func (p *addrParser) consumePhrase() (phrase string, err error) {
392392
// We actually parse dot-atom here to be more permissive
393393
// than what RFC 5322 specifies.
394394
word, err = p.consumeAtom(true, true)
395-
}
396-
397-
if err == nil {
398-
word, err = p.decodeRFC2047Word(word)
395+
if err == nil {
396+
word, err = p.decodeRFC2047Word(word)
397+
}
399398
}
400399

401400
if err != nil {

src/net/mail/message_test.go

+26-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ func TestAddressParser(t *testing.T) {
457457
}
458458
}
459459

460-
func TestAddressFormatting(t *testing.T) {
460+
func TestAddressString(t *testing.T) {
461461
tests := []struct {
462462
addr *Address
463463
exp string
@@ -503,11 +503,36 @@ func TestAddressFormatting(t *testing.T) {
503503
&Address{Name: "Böb, Jacöb", Address: "[email protected]"},
504504
`=?utf-8?b?QsO2YiwgSmFjw7Zi?= <[email protected]>`,
505505
},
506+
{
507+
&Address{Name: "=??Q?x?=", Address: "[email protected]"},
508+
`"=??Q?x?=" <[email protected]>`,
509+
},
510+
{
511+
&Address{Name: "=?hello", Address: "[email protected]"},
512+
`"=?hello" <[email protected]>`,
513+
},
514+
{
515+
&Address{Name: "world?=", Address: "[email protected]"},
516+
`"world?=" <[email protected]>`,
517+
},
506518
}
507519
for _, test := range tests {
508520
s := test.addr.String()
509521
if s != test.exp {
510522
t.Errorf("Address%+v.String() = %v, want %v", *test.addr, s, test.exp)
523+
continue
524+
}
525+
526+
// Check round-trip.
527+
if test.addr.Address != "" && test.addr.Address != "@" {
528+
a, err := ParseAddress(test.exp)
529+
if err != nil {
530+
t.Errorf("ParseAddress(%#q): %v", test.exp, err)
531+
continue
532+
}
533+
if a.Name != test.addr.Name || a.Address != test.addr.Address {
534+
t.Errorf("ParseAddress(%#q) = %#v, want %#v", test.exp, a, test.addr)
535+
}
511536
}
512537
}
513538
}

0 commit comments

Comments
 (0)