|
|
|
@ -5804,13 +5804,7 @@ public class FragmentCompose extends FragmentBase {
|
|
|
|
|
data.draft.plain_only = 1;
|
|
|
|
|
|
|
|
|
|
// Encryption
|
|
|
|
|
List<Address> recipients = new ArrayList<>();
|
|
|
|
|
if (data.draft.to != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(data.draft.to));
|
|
|
|
|
if (data.draft.cc != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(data.draft.cc));
|
|
|
|
|
if (data.draft.bcc != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(data.draft.bcc));
|
|
|
|
|
List<Address> recipients = data.draft.getAllRecipients();
|
|
|
|
|
|
|
|
|
|
if (!BuildConfig.DEBUG)
|
|
|
|
|
if (EntityMessage.PGP_SIGNONLY.equals(ref.ui_encrypt) ||
|
|
|
|
@ -7089,13 +7083,7 @@ public class FragmentCompose extends FragmentBase {
|
|
|
|
|
// identity != null && identity.sender_extra)
|
|
|
|
|
// args.putBoolean("remind_extra", true);
|
|
|
|
|
|
|
|
|
|
List<Address> recipients = new ArrayList<>();
|
|
|
|
|
if (draft.to != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(draft.to));
|
|
|
|
|
if (draft.cc != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(draft.cc));
|
|
|
|
|
if (draft.bcc != null)
|
|
|
|
|
recipients.addAll(Arrays.asList(draft.bcc));
|
|
|
|
|
List<Address> recipients = draft.getAllRecipients();
|
|
|
|
|
|
|
|
|
|
args.putBoolean("remind_noreply", MessageHelper.isNoReply(recipients));
|
|
|
|
|
|
|
|
|
|