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.

25 lines
788 B

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. # Catch all, this will route any request into the controller path
  12. #
  13. # **** WARNING ****
  14. # Enabling this exposes any controller and function to the web.
  15. # ** This is a serious security issue if used online **
  16. #
  17. # For rapid development uncomment the following to add new controller.action endpoints
  18. # without having to add them to the routes table.
  19. # * /:controller/:action :controller.:action