summaryrefslogtreecommitdiff
path: root/config.php.sample
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-05-31 16:42:29 -0400
committerRobin Millette <millette@controlyourself.ca>2009-05-31 16:42:29 -0400
commit3e0c291810d23bb54c337c0fe95c1ba441459c4c (patch)
tree1884067184a103e3b07fe35d0b7589f6ddaf32c8 /config.php.sample
parented1e1d9f440acfbb99c7a6e3d2b5c11fdcfa27ce (diff)
Added configurable options for attachments: supported mimetypes and quotas for uploads.
Diffstat (limited to 'config.php.sample')
-rw-r--r--config.php.sample8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample
index 282826a7f..636f4cf8e 100644
--- a/config.php.sample
+++ b/config.php.sample
@@ -215,3 +215,11 @@ $config['sphinx']['port'] = 3312;
// $config['snapshot']['run'] = 'never';
// If you want to report statistics in a cron job instead.
// $config['snapshot']['run'] = 'cron';
+
+// Support for file uploads (attachments),
+// select supported mimetypes and quotas (in bytes)
+// $config['attachments']['supported'] = array('image/png', 'application/ogg');
+// $config['attachments']['file_quota'] = 5000000;
+// $config['attachments']['user_quota'] = 50000000;
+// $config['attachments']['monthly_quota'] = 15000000;
+