URI.hs 629 B

123456789101112131415161718192021
  1. {- |
  2. fCMTP URIs.
  3. Those are also URLs, and have the following format:
  4. > fcmtp://account.name@host.name/path/to/resource:revision
  5. Very similar to HTTP, with an added optional revision.
  6. Path to resource is also optional, but a revision can only
  7. come in URIs with a path.
  8. URIs that don't specify a path resolve to the account's
  9. default path (what is implementation dependent),
  10. and the ones that don't specify a revision resolve to the
  11. aggregate of all the head revisions of the path.
  12. -}
  13. module Data.SMTP.URI (module Data.SMTP.Types.URI, module Data.SMTP.Parser.URI) where
  14. import Data.SMTP.Types.URI
  15. import Data.SMTP.Parser.URI