Hi,
What file types can mailbox attachments accept. And where can I add to that list?
Cheers,
Matt
Several places in the core you would need to mod.
in ow_system_plugins/base/controllers/attachments.php Line 76
'jpeg', 'jpg', 'png', 'gif' you would need to add there.
in ow_plugins/mailbox/bol/converstation_service.php Line 67
array(
'txt', 'doc', 'docx', 'sql', 'csv', 'xls', 'ppt',
'jpg', 'jpeg', 'png', 'gif', 'bmp', 'psd', 'ai', 'pdf',
'avi', 'wmv', 'mp3', '3gp', 'flv', 'mkv', 'mpeg', 'mpg', 'swf',
'zip', 'gz', '.tgz', 'gzip', '7z', 'bzip2', 'rar'
you would need to add here.
I think that is all, have not tested and not 100% sure but i think that is it..
Remember by changing the core you will need to replace those or make sure oxwall has not already done so when you update.