mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 10:03:51 +02:00
Revert "Added support for Mail-Followup-To and Mail-Followup-To headers (untested)"
This reverts commit 15b88e331e.
This commit is contained in:
@@ -1211,14 +1211,6 @@ public class MessageHelper {
|
||||
}
|
||||
|
||||
Address[] getCc() throws MessagingException {
|
||||
try {
|
||||
// https://cr.yp.to/proto/replyto.html
|
||||
Address[] a = getAddressHeader("Mail-Followup-To");
|
||||
if (a != null)
|
||||
return a;
|
||||
} catch (MessagingException ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
return getAddressHeader("Cc");
|
||||
}
|
||||
|
||||
@@ -1227,14 +1219,6 @@ public class MessageHelper {
|
||||
}
|
||||
|
||||
Address[] getReply() throws MessagingException {
|
||||
try {
|
||||
// https://cr.yp.to/proto/replyto.html
|
||||
Address[] a = getAddressHeader("Mail-Reply-To");
|
||||
if (a != null)
|
||||
return a;
|
||||
} catch (MessagingException ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
return getAddressHeader("Reply-To");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user