Skip to content

Commit 850c0b6

Browse files
committed
Default skin for 1.6 is elastic
1 parent 968785c commit 850c0b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

config.inc.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
5656
// %s - domain name after the '@' from e-mail address provided at login screen
5757
// For example %n = mail.domain.tld, %t = domain.tld
58-
$config['imap_host'] = 'tls://'.$_ENV['RC_IMAP_SERVER_NAME']:143;
58+
$config['imap_host'] = 'tls://'.$_ENV['RC_IMAP_SERVER_NAME'];
5959
$config['imap_conn_options'] = array(
6060
'ssl' => array('verify_peer' => false, 'verify_peer_name' => false),
6161
'tls' => array('verify_peer' => false, 'verify_peer_name' => false),
@@ -70,7 +70,7 @@
7070
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
7171
// %z - IMAP domain (IMAP hostname without the first part)
7272
// For example %n = mail.domain.tld, %t = domain.tld
73-
$config['smtp_host'] = 'tls://'.$_ENV['RC_SMTP_SERVER_NAME']:587;
73+
$config['smtp_host'] = 'tls://'.$_ENV['RC_SMTP_SERVER_NAME'];
7474
$config['smtp_conn_options'] = array(
7575
'ssl' => array('verify_peer' => false, 'verify_peer_name' => false),
7676
'tls' => array('verify_peer' => false, 'verify_peer_name' => false),
@@ -104,7 +104,7 @@
104104
);
105105

106106
// skin name: folder from skins/
107-
$config['skin'] = 'larry';
107+
$config['skin'] = 'elastic';
108108

109109
$config['enable_installer'] = false;
110110

0 commit comments

Comments
 (0)