Default file attachment size restriction increased to 1GB

This commit is contained in:
Chris Caron 2023-08-27 16:54:21 -04:00
parent 5f9752b0a5
commit be3baed7e3

View File

@ -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