Fixed getting references

This commit is contained in:
M66B 2020-04-30 14:28:37 +02:00
parent 64b9227ea8
commit 8e7015e14d
1 changed files with 1 additions and 1 deletions

View File

@ -840,7 +840,7 @@ public class MessageHelper {
}
private String[] getReferences(String header) {
return MimeUtility.unfold(header).split("[,\\s+]");
return MimeUtility.unfold(header).split("[,\\s]+");
}
String getDeliveredTo() throws MessagingException {