Advertisement
kingdraco

My Webmail Roundcube Default Config

Nov 22nd, 2016
447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1. <?php
  2. // Konfigurasi Default Webmail Roundcube pada Webserver
  3. $config = array();
  4. $config['db_dsnw'] = 'mysql://root:kingdraco@localhost/roundcubemail';
  5. $config['default_host'] = 'ssl://localhost';
  6. $config['default_port'] = 993"
  7. $config['smtp_server'] = 'tls://localhost
  8. $config['smtp_port'] = 25;
  9.  
  10. // SMTP username (if required) if you use %u as the username Roundcube
  11. // will use the current username for login
  12. $config['smtp_user'] = '';
  13.  
  14. // SMTP password (if required) if you use %p as the password Roundcube
  15. // will use the current user's password for login
  16. $config['smtp_pass'] = '';
  17. $config['support_url'] = '';
  18. $config['product_name'] = 'Roundcube Webmail';
  19. $config['des_key'] = 'rcmail-!48OyteAOSkey*Str';
  20. $config['plugins'] = array(
  21.    'archive',
  22.    'zipdownload',
  23. );
  24. $config['skin'] = 'skinny';
  25.  
  26. // Nama PHP webmail.config.php pada dir /includes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement