igniterealtime / openfire-httpFileUpload-plugin

Adds XEP-0363 functionality to Openfire that allows compliant clients to exchange files
Apache License 2.0
9 stars 10 forks source link

Default maxFileSize value #32

Closed iluhavlg closed 1 year ago

iluhavlg commented 2 years ago

To configure the maximum allowable file size to be uploaded by clients, the property plugin.httpfileupload.maxFileSize can be set to a value in bytes. If not set, a default value is used.

So where default value comes from? And what is this value?

guusdk commented 2 years ago

It is defined here: https://github.com/guusdk/httpfileuploadcomponent/blob/master/src/main/java/nl/goodbytes/xmpp/xep0363/SlotManager.java#L36

iluhavlg commented 2 years ago

Thanks!