@hackage postie0.6.0.2
SMTP server library to receive emails from within Haskell programs.
Categories
License
BSD-3-Clause
Maintainer
alex.biehl@gmail.com
Links
Versions
Installation
Dependencies (10)
- attoparsec >=0.13.2 && <0.14
- base >=4.13.0 && <4.14
- bytestring >=0.10.10 && <0.11
- data-default-class >=0.1.2 && <0.2
- mtl >=2.2.2 && <2.3
- network >=3.1.1 && <3.2 Show all…
Dependents (1)
@hackage/acme-everything
Package Flags
examples
(off by default)
Build examples
postie is a little smtp server library for receiving emails. It is currently
in a very early stage and not yet fully standard compatible although the standard
protocol is already supported.
At the time of writing parameters on smtp commands can not be parsed.
Handler functions need to return more detailed information to cancel a transaction.
postie supportes hooks on key commands in an smtp session like
on connection open and close
on MAIL FROM command e.g. to intercept transaction if sender is blacklisted
on RCPT TO command e.g. to check if recipient is existent on your server
and many more
To run postie you only need to supply a function which takes a Mail and
return Accepted or Rejected. mailBody is a pipes Producer which
streams the encoded body directly to your application code. The body is not
parsed by postie since it depends on what the application wants to do with
the mail data. Eventually I will create a seperate package for parsing mime
messages with `pipes-parse` when postie becomes more stable and standard compliant.