On 08/15/2012 06:58 PM, bentscrewdriver wrote: > Is there a way to change this setting on the appliance? I've changed > in djigzo-web/conf/djigzo-web.properties but it doesn't seem to have > an effect. Perhaps in the war file?
You are right in that it is not really clear on how to do this. I will see whether I can improve this. There are two parameters which determine the globally maximum size of any upload request: upload.filesize-max upload.requestsize-max The setting email.attachment.max-size is the max size of an PDF attachment but this will only be in effect if the uploaded is accepted. The settings upload.filesize-max and upload.requestsize-max should therefore be larger than email.attachment.max-size otherwise the uploaded file is *not* accepted when uploading. To increase the global upload size add the following parameters to djigzo-web.properties and set upload.filesize-max to the max size to accept: upload.filesize-max=52428800 upload.requestsize-max=52428800 The size is the max size in bytes of any upload. The default value for these parameters are set in web.xml and web.portal.xml (these xml files are stored in the war files). If the upload.filesize-max and upload.requestsize-max settings are set in djigzo-web.properties, the new values are used for the web admin GUI *and* for the web portal. If you want different values for the web admin GUI and web portal, you should change the web.xml and web.portal.xml files. Kind regards, Martijn Brinkers -- DJIGZO email encryption _______________________________________________ Users mailing list [email protected] http://lists.djigzo.com/lists/listinfo/users
