Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

config.inc.php.dist 399B

123456789101112131415161718
  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 messages
  10. $config['zipdownload_selection'] = false;
  11. // Charset to use for filenames inside the zip
  12. $config['zipdownload_charset'] = 'ISO-8859-1';
  13. ?>