main.ini.default 748 B

12345678910111213141516171819202122232425262728
  1. # Port used by web interface server
  2. web_port = 65200
  3. # Port used by SASL authentication server
  4. sasl_port = 65201
  5. # Path to postfix service configuration.
  6. # Usualy placed in /etc/postfix/main.cf
  7. # If not set cause critical error.
  8. postfix_config = /etc/postfix/main.cf
  9. # Address of mongo database to store service data in following
  10. # format:
  11. # host:[port]
  12. # By default is localhost:27017.
  13. mongo_address = localhost:27017
  14. # User name to access mongo database. Empty by default.
  15. mongo_user =
  16. # Password to access mongo database. Empty by default.
  17. mongo_password =
  18. # Path to attachments storage. By dafault "./attachments".
  19. attachments_path = attachments
  20. # Enables registration functionality, disabled by default
  21. registration_enabled = false