mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Zip formats supported
This commit is contained in:
@@ -149,9 +149,9 @@ public class MessageHelper {
|
||||
static final int MAX_UNZIP_COUNT = 20;
|
||||
static final long MAX_UNZIP_SIZE = 1000 * 1000 * 1000L;
|
||||
|
||||
static final List<String> UNZIP_FORMATS = Collections.unmodifiableList(Arrays.asList(
|
||||
"ZIP"
|
||||
));
|
||||
static final List<String> UNZIP_FORMATS = BuildConfig.PLAY_STORE_RELEASE
|
||||
? Collections.unmodifiableList(Arrays.asList("zip"))
|
||||
: Collections.unmodifiableList(Arrays.asList("zip, gz, tar.gz"));
|
||||
|
||||
static final List<String> RECEIVED_WORDS = Collections.unmodifiableList(Arrays.asList(
|
||||
"from", "by", "via", "with", "id", "for"
|
||||
|
||||
Reference in New Issue
Block a user