Skip to content

Commit 2cb265d

Browse files
alexcesarobradfitz
authored andcommitted
net/mail: use base64 encoding when needed in Address.String()
When the name of an Address contains non-ASCII characters, Address.String() used mime.QEncoding to encode the name. However certain characters are forbidden when an encoded-word is in a phrase context (see RFC 2047 section 5.3) and these characters are not encoded by mime.QEncoding. In this case we now use mime.BEncoding (base64 encoding) so that forbidden characters are also encoded. Fixes #11292 Change-Id: I52db98b41ece439295e97d7e94c8190426f499c2 Reviewed-on: https://go-review.googlesource.com/16012 Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent b64b3a7 commit 2cb265d

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/net/mail/message.go

+6
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,12 @@ func (a *Address) String() string {
234234
return b.String()
235235
}
236236

237+
// Text in an encoded-word in a display-name must not contain certain
238+
// characters like quotes or parentheses (see RFC 2047 section 5.3).
239+
// When this is the case encode the name using base64 encoding.
240+
if strings.ContainsAny(a.Name, "\"#$%&'(),.:;<>@[]^`{|}~") {
241+
return mime.BEncoding.Encode("utf-8", a.Name) + " " + s
242+
}
237243
return mime.QEncoding.Encode("utf-8", a.Name) + " " + s
238244
}
239245

src/net/mail/message_test.go

+33
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,10 @@ func TestAddressFormatting(t *testing.T) {
499499
&Address{Name: "Rob", Address: "@"},
500500
`"Rob" <@>`,
501501
},
502+
{
503+
&Address{Name: "Böb, Jacöb", Address: "[email protected]"},
504+
`=?utf-8?b?QsO2YiwgSmFjw7Zi?= <[email protected]>`,
505+
},
502506
}
503507
for _, test := range tests {
504508
s := test.addr.String()
@@ -594,3 +598,32 @@ func TestAddressParsingAndFormatting(t *testing.T) {
594598
}
595599

596600
}
601+
602+
func TestAddressFormattingAndParsing(t *testing.T) {
603+
tests := []*Address{
604+
&Address{Name: "@lïce", Address: "[email protected]"},
605+
&Address{Name: "Böb O'Connor", Address: "[email protected]"},
606+
&Address{Name: "???", Address: "[email protected]"},
607+
&Address{Name: "Böb ???", Address: "[email protected]"},
608+
&Address{Name: "Böb (Jacöb)", Address: "[email protected]"},
609+
&Address{Name: "à#$%&'(),.:;<>@[]^`{|}~'", Address: "[email protected]"},
610+
// https://golang.org/issue/11292
611+
&Address{Name: "\"\\\x1f,\"", Address: "0@0"},
612+
// https://golang.org/issue/12782
613+
&Address{Name: "naé, mée", Address: "[email protected]"},
614+
}
615+
616+
for _, test := range tests {
617+
parsed, err := ParseAddress(test.String())
618+
if err != nil {
619+
t.Errorf("ParseAddr(%q) error: %v", test.String(), err)
620+
continue
621+
}
622+
if parsed.Name != test.Name {
623+
t.Errorf("Parsed name = %q; want %q", parsed.Name, test.Name)
624+
}
625+
if parsed.Address != test.Address {
626+
t.Errorf("Parsed address = %q; want %q", parsed.Address, test.Address)
627+
}
628+
}
629+
}

0 commit comments

Comments
 (0)