cabal-version: 3.0
name: delivery-status-notification
version: 0.1.0.0
synopsis: Parse bounce messages per RFC3464, RFC3463
description:
delivery-status-notification seeks to aid in understanding bounce e-mails. The
library will be guided by RFC3464 and RFC3463 (and any other relevant RFCs I
find), but in practice will prioritise being useful over being correct, since
DSNs in practice seem to have a reputation for being inconsistent.
homepage: https://github.com/bmillwood/delivery-status-notification
license: BSD-3-Clause
license-file: LICENSE
author: Ben Millwood
maintainer: thebenmachine+git@gmail.com
copyright: 2024 Ben Millwood
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
source-repository head
type: git
location: git://github.com/bmillwood/delivery-status-notification.git
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Email.StatusCode
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.18.2.1
hs-source-dirs: src
default-language: GHC2021
test-suite delivery-status-notification-test
import: warnings
default-language: GHC2021
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.18.2.1,
delivery-status-notification