1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Revert "Less restrictive can bounce"

This reverts commit 80fb65cf40.
This commit is contained in:
M66B 2024-06-29 16:50:51 +02:00
parent 80fb65cf40
commit 660342cd0d

View file

@ -3933,6 +3933,12 @@ public class FragmentMessages extends FragmentBase
canBounce = false;
break;
}
if (canBounce)
for (Address recipient : recipients)
if (MessageHelper.equalEmail(recipient, message.return_path[0])) {
canBounce = false;
break;
}
}
boolean canResend = message.content;