Commit 0f9eeb4f authored by baire's avatar baire
Browse files

do not remove escaped characters in the tag parameter in the From header

parent 171c3ad7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -828,6 +828,9 @@ void GenericParam::PostDecode (Buffer& buffer) throw (DecodeError)
				 || (strcmp (par_name, "maddr") == 0)
				 || (strcmp (par_name, "received") == 0))
					goto skip_escape;
			} else if (strcmp (parent_type, "From") == 0) {
				if (strcmp (par_name, "tag") == 0)
					goto skip_escape;
			}
do_escape:
			normalise_escaped_string (value);