Remove spaces from email addresses

This commit is contained in:
M66B
2021-07-04 21:44:02 +02:00
parent c90559f241
commit 0170d1b942
3 changed files with 25 additions and 8 deletions

View File

@@ -610,7 +610,7 @@ public class EntityRule {
} else {
reply.wasforwardedfrom = message.msgid;
reply.thread = reply.msgid; // new thread
reply.to = InternetAddress.parseHeader(to, false);
reply.to = MessageHelper.parseAddresses(context, to);
}
reply.from = from;