mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
fix user_backends array
This commit is contained in:
parent
5cf2965633
commit
9f5fd6b474
@ -7,7 +7,7 @@ source /etc/mailinabox.conf # load global vars
|
||||
apt_install \
|
||||
dbconfig-common \
|
||||
php5-cli php5-sqlite php5-gd php5-imap php5-curl php-pear php-apc curl libapr1 libtool libcurl4-openssl-dev php-xml-parser \
|
||||
php5 php5-dev php5-gd php5-fpm memcached php5-memcache unzip
|
||||
php5 php5-dev php5-gd php5-fpm memcached php5-memcache unzip sqlite
|
||||
|
||||
apt-get purge -qq -y owncloud*
|
||||
|
||||
@ -29,15 +29,11 @@ if [ ! -f "/usr/local/lib/owncloud/config/config.php" ]; then
|
||||
|
||||
\$CONFIG = array (
|
||||
'datadirectory' => '$STORAGE_ROOT/owncloud',
|
||||
array (
|
||||
0 =>
|
||||
array (
|
||||
'class' => 'OC_User_IMAP',
|
||||
'arguments' =>
|
||||
array (
|
||||
0 => '{localhost:993/imap/ssl/novalidate-cert}',
|
||||
),
|
||||
),
|
||||
'user_backends' => array(
|
||||
array(
|
||||
'class'=>'OC_User_IMAP',
|
||||
'arguments'=>array('{localhost:993/imap/ssl/novalidate-cert}')
|
||||
)
|
||||
),
|
||||
"memcached_servers" => array (
|
||||
array('localhost', 11211),
|
||||
|
Loading…
Reference in New Issue
Block a user