diff --git a/app/src/main/java/eu/faircode/email/FragmentCompose.java b/app/src/main/java/eu/faircode/email/FragmentCompose.java index 583b5fff90..cc45813fdc 100644 --- a/app/src/main/java/eu/faircode/email/FragmentCompose.java +++ b/app/src/main/java/eu/faircode/email/FragmentCompose.java @@ -1952,6 +1952,9 @@ public class FragmentCompose extends FragmentBase { File ics = (File) args.getSerializable("ics"); long answer = args.getLong("answer", -1); + SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); + boolean plain_only = prefs.getBoolean("plain_only", false); + Log.i("Load draft action=" + action + " id=" + id + " reference=" + reference); EntityMessage draft; @@ -2102,6 +2105,9 @@ public class FragmentCompose extends FragmentBase { EntityOperation.queue(context, ref, EntityOperation.SEEN, true); } + if (plain_only) + draft.plain_only = true; + // Select identity matching from address int icount = 0; EntityIdentity first = null; diff --git a/app/src/main/java/eu/faircode/email/FragmentOptionsSend.java b/app/src/main/java/eu/faircode/email/FragmentOptionsSend.java index 185f7e2cdc..d222841b01 100644 --- a/app/src/main/java/eu/faircode/email/FragmentOptionsSend.java +++ b/app/src/main/java/eu/faircode/email/FragmentOptionsSend.java @@ -39,6 +39,7 @@ import androidx.preference.PreferenceManager; public class FragmentOptionsSend extends FragmentBase implements SharedPreferences.OnSharedPreferenceChangeListener { private SwitchCompat swPrefixOnce; + private SwitchCompat swPlainOnly; private SwitchCompat swAutoResize; private Spinner spAutoResize; private TextView tvAutoResize; @@ -46,7 +47,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc private Spinner spSendDelayed; private final static String[] RESET_OPTIONS = new String[]{ - "prefix_once", "autoresize", "resize", "autosend", "send_delayed" + "prefix_once", "plain_only", "autoresize", "resize", "autosend", "send_delayed" }; @Override @@ -60,6 +61,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc // Get controls swPrefixOnce = view.findViewById(R.id.swPrefixOnce); + swPlainOnly = view.findViewById(R.id.swPlainOnly); swAutoResize = view.findViewById(R.id.swAutoResize); spAutoResize = view.findViewById(R.id.spAutoResize); tvAutoResize = view.findViewById(R.id.tvAutoResize); @@ -79,6 +81,13 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc } }); + swPlainOnly.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { + @Override + public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { + prefs.edit().putBoolean("plain_only", checked).apply(); + } + }); + swAutoResize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton compoundButton, boolean checked) { @@ -166,6 +175,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); swPrefixOnce.setChecked(prefs.getBoolean("prefix_once", false)); + swPlainOnly.setChecked(prefs.getBoolean("plain_only", false)); swAutoResize.setChecked(prefs.getBoolean("autoresize", true)); diff --git a/app/src/main/res/layout/fragment_options_send.xml b/app/src/main/res/layout/fragment_options_send.xml index 02f49f360d..c573501401 100644 --- a/app/src/main/res/layout/fragment_options_send.xml +++ b/app/src/main/res/layout/fragment_options_send.xml @@ -28,14 +28,25 @@ app:layout_constraintTop_toTopOf="parent" app:switchPadding="12dp" /> + + Synchronize folder list Prefix subject only once on replying or forwarding + Send plain text only by default Automatically resize attached and embedded images < %1$d pixels Confirm sending messages