"smtp.free.fr", * "smtp.username" => "", * "smtp.password" => "", * "smtp.secure" => "", * "address.from" => "cops@slucas.fr" * ); * * For Gmail (ssl is mandatory) : * $config['cops_mail_configuration'] = array( "smtp.host" => "smtp.gmail.com", * "smtp.username" => "YOUR GMAIL ADRESS", * "smtp.password" => "YOUR GMAIL PASSWORD", * "smtp.secure" => "ssl", * "address.from" => "cops@slucas.fr" * ); * * You'll also need to enable Allow Less Secure Apps in you Gmail account. */ $config['cops_mail_configuration'] = array( "smtp.host" => "", "smtp.username" => "", "smtp.password" => "", "smtp.secure" => "ssl", "address.from" => "cops@ebook.com" ); /* * Use external 'kepubify' tool to convert .epub files to .kepub.epub format for Kobo * Example: * $config['cops_kepubify_path'] = '/usr/bin/kepubify'; */ //$config['cops_kepubify_path'] = ''; $config['cops_kepubify_path'] = '/usr/bin/kepubify'; /* * Set front controller to remove index.php/ from route URLs generated in COPS * * Note: this assumes your web server config will rewrite /... to /index.php/... * - Apache: .htaccess * - Nginx: nginx.conf * - PHP built-in: router.php * - ... * * @todo update nginx/site-confs/default.conf.sample to make use of front controller */ $config['cops_front_controller'] = ''; //$config['cops_front_controller'] = 'index.php';