mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Enable RFC 8689
This commit is contained in:
parent
1126712d11
commit
e23e0138a9
48 changed files with 113 additions and 54 deletions
|
|
@ -231,6 +231,7 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
|
||||
requestDsn: false,
|
||||
requestReadReceipt: false,
|
||||
requireTLS: false,
|
||||
markAsImportant: false,
|
||||
|
||||
sendError: false,
|
||||
|
|
@ -1270,6 +1271,7 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
|
||||
this.requestDsn(SettingsUserStore.requestDsn());
|
||||
this.requestReadReceipt(SettingsUserStore.requestReadReceipt());
|
||||
this.requireTLS(SettingsUserStore.requireTLS());
|
||||
this.markAsImportant(false);
|
||||
|
||||
this.bodyArea();
|
||||
|
|
@ -1422,6 +1424,7 @@ export class ComposePopupView extends AbstractViewPopup {
|
|||
attachments: attachments,
|
||||
// Only used at send, not at save:
|
||||
dsn: this.requestDsn() ? 1 : 0,
|
||||
requireTLS: this.requireTLS() ? 1 : 0,
|
||||
readReceiptRequest: this.requestReadReceipt() ? 1 : 0
|
||||
},
|
||||
recipients = draft ? [identity.email()] : this.allRecipients(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue