mirror of
https://github.com/caronc/apprise.git
synced 2024-11-22 08:04:02 +01:00
Default file attachment size restriction increased to 1GB
This commit is contained in:
parent
5f9752b0a5
commit
be3baed7e3
@ -68,7 +68,8 @@ class AttachBase(URLBase):
|
||||
# set to zero (0), then no check is performed
|
||||
# 1 MB = 1048576 bytes
|
||||
# 5 MB = 5242880 bytes
|
||||
max_file_size = 5242880
|
||||
# 1 GB = 1048576000 bytes
|
||||
max_file_size = 1048576000
|
||||
|
||||
# By default all attachments types are inaccessible.
|
||||
# Developers of items identified in the attachment plugin directory
|
||||
|
Loading…
Reference in New Issue
Block a user