Redefine the encoding requirements for an address.
All "specials" must be encoded as the full header value will not be quoted
Overrides AbstractHeader::tokenNeedsEncoding
RFC 2822 3.2.1
protected function tokenNeedsEncoding(string $token) : bool { return preg_match('/[()<>\\[\\]:;@\\,."]/', $token) || parent::tokenNeedsEncoding($token); }