config.default.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * Insipid
  4. * Personal web-bookmark-system
  5. *
  6. * Copyright 2016-2019 Johannes Keßler
  7. *
  8. * Development starting from 2011: Johannes Keßler
  9. * https://www.bananas-playground.net/projekt/insipid/
  10. *
  11. * creator:
  12. * Luke Reeves <luke@neuro-tech.net>
  13. *
  14. * This program is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation, either version 3 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program. If not, see http://www.gnu.org/licenses/gpl-3.0.
  26. *
  27. */
  28. #
  29. ## database config
  30. define('DB_HOST','127.0.0.1'); # Address of the database server
  31. define('DB_USERNAME','user'); # Username to access the database server and database itself
  32. define('DB_PASSWORD','test'); # Password for username
  33. define('DB_NAME','insipid'); # Database name on your database server
  34. define('DB_PREFIX','insipid'); # a _ is added automatically as separation
  35. # user config
  36. define('FRONTEND_USERNAME','luke');
  37. define('FRONTEND_PASSWORD','father');
  38. # absolute path of webroot
  39. define('ABSOLUTE_PATH', '/path/to/insipid/webroot');
  40. # relative to absolute path the name of the storage folder
  41. define('LOCAL_STORAGE', 'localdata');
  42. # complete restricted access not only the private links or the edit functions
  43. # username and password see above
  44. define("USE_PAGE_AUTH",false);
  45. # results per page
  46. define("RESULTS_PER_PAGE",12);
  47. # settings for importing from e-mail
  48. # SSL/TLS only
  49. # IMAP (reading), SMTP (sending)
  50. define('EMAIL_SERVER','');
  51. define('EMAIL_SERVER_USER','');
  52. define('EMAIL_SERVER_PASS','');
  53. define('EMAIL_SERVER_PORT_IMAP',993);
  54. define('EMAIL_SERVER_PORT_SMTP',465);
  55. define('EMAIL_SERVER_MAILBOX','INBOX'); # default INBOX
  56. define('EMAIL_MARKER','to-insipid- ');
  57. define('EMAIL_ARCHIVE_FOLDER','archive');
  58. define('EMAIL_REPORT_BACK',false);
  59. define('EMAIL_REPLY_BACK_VALID','');
  60. define('EMAIL_REPLY_BACK_ADDRESS','');
  61. define('EMAIL_REPLY_BACK_SUBJECT','Insipid email import response');