================================================================================
AV Submit app
================================================================================

:: Configuration settings

Add the following settings to project's settings.py file:

AVSUBMIT_SETTINGS = {
    # maximum size to accept for file uploads as AV sample submissions
    'max_upload_size': '5242880',  # 5 MB
    # envelope sender address for sample submission emails
    'sender_address':  'cirt-samples@example.net',
}


Note that samples will be emailed as password protected ZIP archives,
encrypted using the generally accepted standard password "infected". If you
wish to override this default, add another entry to the AVSUBMIT_SETTINGS
dictionary called 'zip_password' as follows:

    'zip_password':    'malware',


Optionally, specify the zip command to use for compressing/encrypting samples.
Valid options:

 zip   - venerable zip(1) command on most systems, often Info-ZIP.
 7zip  - the 7z(1) command, which is provided by 7-Zip.

The default is to use the 'zip' command. If you wish to override this, add the
'zip_command' option to the settings:

    'zip_command':     '7zip',


It's also possible to control the number of submission logs shown per page
on the submissions page. The default is 15. To override this value, add the
'logs_per_page' option to AVSUBMIT_SETTINGS:

    'logs_per_page':   '20',

