Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
799 B

  1. <?php
  2. $config['default_host'] = 'ssl://{{ mail_server }}';
  3. $config['default_port'] = 993;
  4. $config['imap_auth_type'] = 'login';
  5. $config['smtp_server'] = '{{ mail_server }}';
  6. $config['smtp_helo_host'] = 'webmail.lilik.it';
  7. $config['skin_logo'] = '/images/lilik-150x54.png';
  8. $config['username_domain'] = 'lilik.it';
  9. $config['product_name'] = 'LILiK Webmail';
  10. $config['plugins'] = array('password');
  11. $config['language'] = 'it_IT';
  12. $config['skin'] = 'classic';
  13. $config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash', 'Archive');
  14. $config['create_default_folders'] = true;
  15. # TODO: ssl, remove when dovecot will use a valid ssl certificate
  16. #$config['imap_conn_options'] = array(
  17. # 'ssl' => array(
  18. # 'verify_peer' => false,
  19. # 'verfify_peer_name' => false,
  20. # ),
  21. #);