Skip to content

Commit

Permalink
Restrict maximum attachment size to 10 MB (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Jan 30, 2020
1 parent 6629e5a commit 160267e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.py
Expand Up @@ -911,7 +911,7 @@ def cli():
parser.add_argument('--timeout', type=int, default=300, help=(
'Timeout for the Lokole email app. In seconds.'
))
parser.add_argument('--max_upload_size', type=int, default=25, help=(
parser.add_argument('--max_upload_size', type=int, default=10, help=(
'Maximum allowed size of uploads to the Lokole email app. In MB.'
))
parser.add_argument('--num_celery_workers', type=int, default=2, help=(
Expand Down

0 comments on commit 160267e

Please sign in to comment.