您最多选择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. ?>