Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. ?>