[Web] limit logo file upload

This commit is contained in:
FreddleSpl0it
2024-01-15 16:34:47 +01:00
parent 43bb26f28c
commit 7f6f7e0e9f
4 changed files with 31 additions and 0 deletions
+9
View File
@@ -126,6 +126,15 @@ $MAILCOW_APPS = array(
)
);
// Logo max file size in bytes
$LOGO_LIMITS['max_size'] = 15 * 1024 * 1024; // 15MB
// Logo max width in pixels
$LOGO_LIMITS['max_width'] = 1920;
// Logo max height in pixels
$LOGO_LIMITS['max_height'] = 1920;
// Rows until pagination begins
$PAGINATION_SIZE = 25;