config_zipdownload.inc.php 614 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * ZipDownload configuration file
  4. */
  5. // Zip attachments
  6. // Only show the link when there are more than this many attachments
  7. // -1 to prevent downloading of attachments as zip
  8. $config["zipdownload_attachments"] = 1;
  9. // Zip selection of mail messages
  10. // This option enables downloading of multiple messages as one zip archive.
  11. // The number or string value specifies maximum total size of all messages
  12. // in the archive (not the size of the archive itself).
  13. $config["zipdownload_selection"] = "100MB";
  14. // Charset to use for filenames inside the zip
  15. $config["zipdownload_charset"] = "ISO-8859-1";
  16. ?>