diff --git a/setup/owncloud.sh b/setup/owncloud.sh index 6801681f..183ad2de 100644 --- a/setup/owncloud.sh +++ b/setup/owncloud.sh @@ -23,7 +23,37 @@ if [ ! -d /usr/local/lib/owncloud ]; then fi # Create a configuration file. -# TODO: +cat - > /usr/local/lib/owncloud/config/config.php < '$STORAGE_ROOT/owncloud', +\ array ( +\ 0 => +\ array ( +\ 'class' => 'OC_User_IMAP', +\ 'arguments' => +\ array ( +\ 0 => '{localhost:993/imap/ssl/novalidate-cert}', +\ ), +\ ), +\ ), +\); +EOF + +# Insert the following above (owncloud config generation) when we found a good solution: +# 'mail_smtpmode' => 'smtp', +# 'mail_smtpsecure' => 'ssl', +# 'mail_from_address' => '**** need to figure this one out, nornamly: @. ****', +# 'mail_domain' => '**** need to figure this one out, nornamly: . ****', +# 'mail_smtpauthtype' => 'LOGIN', +# 'mail_smtpauth' => true, +# 'mail_smtphost' => 'localhost', +# 'mail_smtpport' => '587', +# 'mail_smtpname' => '**** need to figure this one out, nornamly: @. ****', +# 'mail_smtppassword' => '**** need to figure this one out ****', # Set permissions mkdir -p $STORAGE_ROOT/owncloud