Update config-local.php

This commit is contained in:
Neil 2016-08-02 01:29:39 +01:00 committed by GitHub
parent b436dbd7eb
commit e5afad3dff

View File

@ -1 +1,30 @@
<?php
if (!isset($config))
$config = array();
/*
* The directory containing calibre's metadata.db file, with sub-directories
* containing all the formats.
* BEWARE : it has to end with a /
*/
$config['calibre_directory'] = '/books/';
/*
* Catalog's title
*/
$config['cops_title_default'] = "Neil & Lucy's Library";
/*
* use URL rewriting for downloading of ebook in HTML catalog
* See README for more information
* 1 : enable
* 0 : disable
*/
$config['cops_use_url_rewriting'] = "0";
$config['cops_mail_configuration'] = array( "smtp.host" => "smtp.gmail.com",
"smtp.username" => "",
"smtp.password" => "",
"smtp.secure" => "ssl",
"address.from" => "COPS"
);