Skip to content

Commit

Permalink
Restore the new config item for mail. re #53
Browse files Browse the repository at this point in the history
  • Loading branch information
seblucas committed Jun 6, 2013
1 parent b915477 commit ba0268f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions config_default.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,32 @@
*/
$config['cops_provide_kepub'] = "0";

/*
* Enable and configure Send To Kindle (or Email) feature.
*
* Don't forget to authorize the sender email you configured in your Kindle's Approved Personal Document E-mail List.
*
* If you want to use a simple smtp server (provided by your ISP for example), you can configure it like that :
* $config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
* "smtp.username" => "",
* "smtp.password" => "",
* "smtp.secure" => "",
* "address.from" => "cops@slucas.fr"
* );
*
* For Gmail :
* $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"
* );
*/
$config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
"smtp.username" => "",
"smtp.password" => "",
"smtp.secure" => "",
"address.from" => "cops@slucas.fr"
);

?>

0 comments on commit ba0268f

Please sign in to comment.