Hermes is an open-source E-Mail tracking solution that is written in Go. It tracks emails using a tracking pixel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
843 B

4 years ago
4 years ago
4 years ago
  1. # Routes Config
  2. #
  3. # This file defines all application routes (Higher priority routes first)
  4. #
  5. module:testrunner
  6. # module:jobs
  7. GET / Hermes.Index
  8. # Ignore favicon requests
  9. GET /favicon.ico 404
  10. GET /read/:user/:title/:recipient/:provided_hash/ Hermes.Read
  11. GET /public/*filepath Static.Serve("public")
  12. # Catch all, this will route any request into the controller path
  13. #
  14. # **** WARNING ****
  15. # Enabling this exposes any controller and function to the web.
  16. # ** This is a serious security issue if used online **
  17. #
  18. # For rapid development uncomment the following to add new controller.action endpoints
  19. # without having to add them to the routes table.
  20. # * /:controller/:action :controller.:action