Description: Public key inclusion can happen automatically in case receiver doesn't have public key of the sender.
|
for (const recipient of foreignRecipients) { |
|
// new message, and my key is not uploaded where the recipient would look for it |
|
if (!(await this.view.recipientsModule.doesRecipientHaveMyPubkey(recipient))) { |
|
// they do need pubkey |
|
// To improve situation reported in #5609, a notification message about the automatic public key inclusion is displayed |
|
this.setAttachPreference(true); |
|
this.view.S.cached('warning_no_pubkey_on_attester').css('display', 'block'); |
|
return; |
|
} |
|
} |
User doesn't seem to prefer this, and suggested if its possible to for us to add a default public key inclusion preference.
Discussion regarding the reporting user: https://mail.google.com/mail/u/human@flowcrypt.com/#inbox/FMfcgzGxRfFtxbXfhgjhGpbhLrmmxpTl
Description: Public key inclusion can happen automatically in case receiver doesn't have public key of the sender.
flowcrypt-browser/extension/chrome/elements/compose-modules/compose-my-pubkey-module.ts
Lines 76 to 85 in 3ebe53b
User doesn't seem to prefer this, and suggested if its possible to for us to add a default public key inclusion preference.
Discussion regarding the reporting user: https://mail.google.com/mail/u/human@flowcrypt.com/#inbox/FMfcgzGxRfFtxbXfhgjhGpbhLrmmxpTl