mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 04:29:21 +03:00
User -> Settings -> General: add more compose window defaults:
* Request a read receipt * Request a delivery receipt * Sign * Encrypt
This commit is contained in:
parent
246d73c070
commit
629f75d4e8
6 changed files with 80 additions and 30 deletions
|
|
@ -36,7 +36,12 @@ export const SettingsUserStore = new class {
|
|||
replySameFolder: 0,
|
||||
hideUnsubscribed: 0,
|
||||
hideDeleted: 1,
|
||||
autoLogout: 0
|
||||
autoLogout: 0,
|
||||
|
||||
requestReadReceipt: 0,
|
||||
requestDsn: 0,
|
||||
pgpSign: 0,
|
||||
pgpEncrypt: 0
|
||||
});
|
||||
|
||||
self.init();
|
||||
|
|
@ -85,5 +90,10 @@ export const SettingsUserStore = new class {
|
|||
|
||||
self.hideUnsubscribed(SettingsGet('HideUnsubscribed'));
|
||||
self.hideDeleted(SettingsGet('HideDeleted'));
|
||||
|
||||
self.requestReadReceipt(SettingsGet('requestReadReceipt'));
|
||||
self.requestDsn(SettingsGet('requestDsn'));
|
||||
self.pgpSign(SettingsGet('pgpSign'));
|
||||
self.pgpEncrypt(SettingsGet('pgpEncrypt'));
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue