"smtp.free.fr", * "smtp.username" => "", * "smtp.password" => "", * "smtp.secure" => "", * "smtp.port" => "", // Not mandatory, if smtp.secure is set then defaults to 465 * "address.from" => "cops@slucas.fr", * "subject" => "Sent by COPS : " // Not mandatory * ]; * * For Gmail (ssl is mandatory) : * $config['cops_mail_configuration'] = [ * "smtp.host" => "smtp.gmail.com", * "smtp.username" => "YOUR GMAIL ADRESS", * "smtp.password" => "YOUR GMAIL PASSWORD", * "smtp.secure" => "ssl", * "address.from" => "cops@slucas.fr" * ]; * * For GMX (tls and 587 is mandatory) : * $config['cops_mail_configuration'] = [ * "smtp.host" => "mail.gmx.com", * "smtp.username" => "YOUR GMX ADRESS", * "smtp.password" => "YOUR GMX PASSWORD", * "smtp.secure" => "tls", * "smtp.port" => "587", * "address.from" => "cops@slucas.fr" * ]; */ $config['cops_mail_configuration'] = [ "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';