diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-09-23 22:46:09 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-09-23 22:46:09 +0200 |
commit | 70bbabb6994e67f812d9f7d1f85df1098870cfaa (patch) | |
tree | c6dd7805caab7d40b4ce9e9d89941db37c7c80ba /plugins/zipdownload/config.inc.php.dist | |
parent | 0c144b98a417d50b9c073ae3931fdad47390f1f7 (diff) |
Add zipdwonload plugin by Phil Weir at tehinterweb.co.uk to core repository
Diffstat (limited to 'plugins/zipdownload/config.inc.php.dist')
-rw-r--r-- | plugins/zipdownload/config.inc.php.dist | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/zipdownload/config.inc.php.dist b/plugins/zipdownload/config.inc.php.dist new file mode 100644 index 000000000..5c7489a15 --- /dev/null +++ b/plugins/zipdownload/config.inc.php.dist @@ -0,0 +1,21 @@ +<?php + +/** + * ZipDownload configuration file + */ + +// Zip attachments +// Only show the link when there are more than this many attachments +// -1 to prevent downloading of attachments as zip +$rcmail_config['zipdownload_attachments'] = 1; + +// Zip entire folders +$rcmail_config['zipdownload_folder'] = false; + +// Zip selection of messages +$rcmail_config['zipdownload_selection'] = false; + +// Charset to use for filenames inside the zip +$rcmail_config['zipdownload_charset'] = 'ISO-8859-1'; + +?>
\ No newline at end of file |