{"id":20612755,"url":"https://github.com/phlummox/assumpta-core","last_synced_at":"2026-06-08T05:31:08.755Z","repository":{"id":59151010,"uuid":"236558721","full_name":"phlummox/assumpta-core","owner":"phlummox","description":"A  Haskell library for constructing SMTP clients, providing a monad transformer and mtl-style class for communicating with an SMTP server","archived":false,"fork":false,"pushed_at":"2020-04-14T08:11:28.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-22T20:12:12.097Z","etag":null,"topics":["email-sender","haskell","networking","smtp","smtp-client","smtp-protocol"],"latest_commit_sha":null,"homepage":"https://hackage.haskell.org/package/assumpta-core","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phlummox.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-27T18:12:18.000Z","updated_at":"2020-01-29T04:36:37.000Z","dependencies_parsed_at":"2022-09-14T04:01:05.440Z","dependency_job_id":null,"html_url":"https://github.com/phlummox/assumpta-core","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/phlummox/assumpta-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlummox%2Fassumpta-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlummox%2Fassumpta-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlummox%2Fassumpta-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlummox%2Fassumpta-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phlummox","download_url":"https://codeload.github.com/phlummox/assumpta-core/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phlummox%2Fassumpta-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34050225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email-sender","haskell","networking","smtp","smtp-client","smtp-protocol"],"created_at":"2024-11-16T11:07:48.895Z","updated_at":"2026-06-08T05:31:08.726Z","avatar_url":"https://github.com/phlummox.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# assumpta-core [![Hackage version](https://img.shields.io/hackage/v/assumpta-core.svg?label=Hackage)](https://hackage.haskell.org/package/assumpta-core) [![Linux Build Status](https://img.shields.io/travis/com/phlummox/assumpta-core.svg?label=Linux%20build)](https://travis-ci.com/phlummox/assumpta-core) [![phlummox](https://circleci.com/gh/phlummox/assumpta-core.svg?style=svg)](https://circleci.com/gh/phlummox/assumpta-core)\n\nA library for constructing SMTP clients, which provides the core functionality\nfor [assumpta](https://hackage.haskell.org/package/assumpta).\nIt provides a monad transformer and an mtl-style class for sending SMTP\ncommands (including `STARTTLS`) to a server and checking for expected\nresponses, over some abstract connection type.\n\nIt does not provide a concrete implementation\nwhich can actually be used to communicate over\na network - for that, see the\n[assumpta](https://hackage.haskell.org/package/assumpta) package.\n\n## Installation\n\n`assumpta-core` can be installed in the standard way using `stack`\nor `cabal` (e.g. `stack install assumpta-core`).\n\n## Usage\n\nSee the [assumpta](https://hackage.haskell.org/package/assumpta) package\nfor examples of usage.\n\nTypically, you will want to:\n\n-   write an instance of the `Connection` class in\n    [Network.Mail.Assumpta.Connection](http://hackage.haskell.org/package/assumpta/docs/Network-Mail-Assumpta-Connection.html),\n    providing a concrete implementation in terms of some networking\n    library.\n    ([assumpta](https://hackage.haskell.org/package/assumpta) contains\n    one based on \n    [connection](https://hackage.haskell.org/package/connection).)\n-   for convenience, write a type synonym for the `SmtpT` transformer,\n    specialized over your new `Connection` instance\n    (`MySmtpT = SmtpT MyConnection`).\n-   And that should be enough for you to start communicating\n    with a server. See the examples in\n    [assumpta](https://hackage.haskell.org/package/assumpta) for more\n    details.\n\n## FAQ\n\n-   Q. Why the name 'Assumpta'?\n\n    A. Dunno, I just like it as a name. It means \"assumption\" you know.\n    I find I make many of those when programming.    \n\n## Acknowledgements\n\nMany thanks to \n[Alexander Vieth](https://github.com/avieth)\n(author of [smtp-mail-ng](http://hackage.haskell.org/package/smtp-mail-ng)),\nand to [Jason Hickner](https://github.com/jhickner) and\n[Matt Parsons](https://github.com/parsonsmatt)\n(authors of [smtp-mail](http://hackage.haskell.org/package/smtp-mail)),\nwhose packages provided the original basis for the\nassumpta-core code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphlummox%2Fassumpta-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphlummox%2Fassumpta-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphlummox%2Fassumpta-core/lists"}