User -> Settings -> General: add more compose window defaults:

* Request a read receipt
* Request a delivery receipt
* Sign
* Encrypt
This commit is contained in:
the-djmaze 2022-08-09 15:34:55 +02:00
parent 246d73c070
commit 629f75d4e8
6 changed files with 80 additions and 30 deletions

View file

@ -1463,8 +1463,8 @@ export class ComposePopupView extends AbstractViewPopup {
this.replyTo('');
this.subject('');
this.requestDsn(false);
this.requestReadReceipt(false);
this.requestDsn(SettingsUserStore.requestDsn());
this.requestReadReceipt(SettingsUserStore.requestReadReceipt());
this.markAsImportant(false);
this.bodyArea();
@ -1485,8 +1485,8 @@ export class ComposePopupView extends AbstractViewPopup {
this.showBcc(false);
this.showReplyTo(false);
this.pgpSign(false);
this.pgpEncrypt(false);
this.pgpSign(SettingsUserStore.pgpSign());
this.pgpEncrypt(SettingsUserStore.pgpEncrypt());
this.attachments([]);