config-user.default.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. return array (
  3. 'language' => 'en',
  4. 'old_entries' => 3,
  5. 'keep_history_default' => 50,
  6. 'ttl_default' => 3600,
  7. 'mail_login' => '',
  8. 'token' => '',
  9. 'passwordHash' => '',
  10. 'apiPasswordHash' => '',
  11. //feverKey is md5($user . ':' . $apiPasswordPlain)
  12. 'feverKey' => '',
  13. 'posts_per_page' => 20,
  14. 'since_hours_posts_per_rss' => 168,
  15. 'min_posts_per_rss' => 2,
  16. 'max_posts_per_rss' => 400,
  17. 'view_mode' => 'normal',
  18. 'default_view' => 'adaptive',
  19. 'default_state' => FreshRSS_Entry::STATE_NOT_READ,
  20. 'auto_load_more' => true,
  21. 'display_posts' => false,
  22. 'display_categories' => false,
  23. 'hide_read_feeds' => true,
  24. 'onread_jump_next' => true,
  25. 'lazyload' => true,
  26. 'sides_close_article' => true,
  27. 'sticky_post' => true,
  28. 'reading_confirm' => false,
  29. 'auto_remove_article' => false,
  30. # In the case an article has changed (e.g. updated content):
  31. # Set to `true` to mark it unread, or `false` to leave it as-is.
  32. 'mark_updated_article_unread' => false, //TODO: -1 => ignore, 0 => update, 1 => update and mark as unread
  33. 'sort_order' => 'DESC',
  34. 'anon_access' => false,
  35. 'mark_when' => array (
  36. 'article' => true,
  37. 'site' => true,
  38. 'scroll' => true,
  39. 'reception' => false,
  40. ),
  41. 'theme' => 'Origine',
  42. 'content_width' => 'thin',
  43. 'shortcuts' => array (
  44. 'mark_read' => 'r',
  45. 'mark_favorite' => 'f',
  46. 'go_website' => 'space',
  47. 'next_entry' => 'j',
  48. 'prev_entry' => 'k',
  49. 'skip_next_entry' => 'n',
  50. 'skip_prev_entry' => 'p',
  51. 'first_entry' => 'home',
  52. 'last_entry' => 'end',
  53. 'collapse_entry' => 'c',
  54. 'load_more' => 'm',
  55. 'auto_share' => 's',
  56. 'focus_search' => 'a',
  57. 'user_filter' => 'u',
  58. 'help' => 'f1',
  59. 'close_dropdown' => 'escape',
  60. 'normal_view' => '1',
  61. 'global_view' => '2',
  62. 'reading_view' => '3',
  63. 'rss_view' => '4',
  64. ),
  65. 'topline_read' => true,
  66. 'topline_favorite' => true,
  67. 'topline_date' => true,
  68. 'topline_link' => true,
  69. 'bottomline_read' => true,
  70. 'bottomline_favorite' => true,
  71. 'bottomline_sharing' => true,
  72. 'bottomline_tags' => true,
  73. 'bottomline_date' => true,
  74. 'bottomline_link' => true,
  75. 'sharing' => array (
  76. ),
  77. 'queries' => array (
  78. ),
  79. 'html5_notif_timeout' => 0,
  80. 'show_nav_buttons' => true,
  81. 'extensions_enabled' => array(),
  82. );