mirror of https://github.com/M66B/FairEmail.git
Added some documentation
This commit is contained in:
parent
7d65e2ee9a
commit
ff0bb24f95
|
@ -1661,9 +1661,11 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
if (ident.replyto != null)
|
||||
imessage.setReplyTo(new Address[]{new InternetAddress(ident.replyto)});
|
||||
|
||||
// defacto standard
|
||||
if (ident.delivery_receipt)
|
||||
imessage.addHeader("Return-Receipt-To", ident.replyto == null ? ident.email : ident.replyto);
|
||||
|
||||
// https://tools.ietf.org/html/rfc3798
|
||||
if (ident.read_receipt)
|
||||
imessage.addHeader("Disposition-Notification-To", ident.replyto == null ? ident.email : ident.replyto);
|
||||
|
||||
|
|
Loading…
Reference in New Issue