{"id":15564261,"url":"https://github.com/hatamiarash7/fakesmtp","last_synced_at":"2025-10-28T03:32:12.002Z","repository":{"id":40481164,"uuid":"230005216","full_name":"hatamiarash7/FakeSMTP","owner":"hatamiarash7","description":"Fake SMTP Server","archived":false,"fork":false,"pushed_at":"2024-10-23T17:37:03.000Z","size":1698,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-20T09:22:00.555Z","etag":null,"topics":["docker","email","fake-smtp-server","hacktoberfest","imap","mail","mailserver","smtp","smtp-mail","smtp-server"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hatamiarash7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"ko_fi":"hatamiarash7","custom":["https://payping.ir/@hatamiarash7"]}},"created_at":"2019-12-24T21:28:07.000Z","updated_at":"2022-04-21T19:34:32.000Z","dependencies_parsed_at":"2024-12-20T09:31:46.650Z","dependency_job_id":null,"html_url":"https://github.com/hatamiarash7/FakeSMTP","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatamiarash7%2FFakeSMTP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatamiarash7%2FFakeSMTP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatamiarash7%2FFakeSMTP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatamiarash7%2FFakeSMTP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hatamiarash7","download_url":"https://codeload.github.com/hatamiarash7/FakeSMTP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238590602,"owners_count":19497350,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["docker","email","fake-smtp-server","hacktoberfest","imap","mail","mailserver","smtp","smtp-mail","smtp-server"],"created_at":"2024-10-02T16:40:24.440Z","updated_at":"2025-10-28T03:32:11.508Z","avatar_url":"https://github.com/hatamiarash7.png","language":"Dockerfile","funding_links":["https://ko-fi.com/hatamiarash7","https://payping.ir/@hatamiarash7","https://ko-fi.com/D1D1WGU9"],"categories":[],"sub_categories":[],"readme":"# Fake SMTP server\n\n[![Publish](https://github.com/hatamiarash7/FakeSMTP/actions/workflows/publish.yml/badge.svg)](https://github.com/hatamiarash7/FakeSMTP/actions/workflows/publish.yml) ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hatamiarash7/fake-smtp/latest)\n\nIs a wrapper around the FakeSMTP java app running on alpine linux with openjdk 11's JRE ( based on \u003chttps://github.com/Nilhcem/FakeSMTP\u003e )\n\n## Start with docker\n\nThis will start an instance that puts the emails in `/tmp/fakemail` and listens on port `1025`\n\n```bash\ndocker run -d --name fakesmtp -p 1025:25 -v /tmp/fakemail:/output hatamiarash7/fake-smtp:master\n```\n\n## Docker Compose\n\nThis will start an instance that listens on port `1025` and saves the emails in the `email` folder in the project\n\n```yaml\nversion: \"3.9\"\n\nservices:\n  fakesmtp:\n    image: hatamiarash7/fake-smtp:latest\n    ports:\n      - 1025:25\n    volumes:\n      - /tmp/fakemail:/output\n```\n\n## Simple test\n\nTo test the SMTP service, follow these steps:\n\nOn a client computer running Windows Server or Windows 10 **( with telnet client installed )**, type\n`Telnet` at a command prompt, and then press ENTER.\n\nAt the telnet prompt, type `set LocalEcho`, press ENTER, and then type `open \u003cmachinename\u003e 25`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 220 computername.microsoft.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2651.58) ready\n\n---\n\nType `hello me`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 250 OK\n\n---\n\nType `mail from:email@domain.com`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 250 OK - mail from \u003cemail@domain.com\u003e\n\n---\n\nType `rcpt to:youremail@yourdomain.com`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 250 OK - Recipient \u003cyouremail@yourdomain.com\u003e\n\n---\n\nType `Data`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 354 Send data. End with CRLF.CRLF\n\n---\n\nType `Subject:This is a test`, and then press ENTER two times.\nType `Testing`, and then press ENTER.\nPress ENTER, type a period (.), and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 250 OK\n\n---\n\nType `quit`, and then press ENTER.\n\nThe output resembles the following:\n\n\u003e 221 Closing Port / Mail queued for delivery\n\n---\n\n## Support\n\n[![Donate with Bitcoin](https://en.cryptobadges.io/badge/micro/3GhT2ABRuHuXGNzP6DH5KvLZRTXCBKkx2y)](https://en.cryptobadges.io/donate/3GhT2ABRuHuXGNzP6DH5KvLZRTXCBKkx2y) [![Donate with Ethereum](https://en.cryptobadges.io/badge/micro/0x4832fd8e2cfade141dc4873cc00cf77de604edde)](https://en.cryptobadges.io/donate/0x4832fd8e2cfade141dc4873cc00cf77de604edde)\n\n[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/D1D1WGU9)\n\n\u003cdiv\u003e\u003ca href=\"https://payping.ir/@hatamiarash7\"\u003e\u003cimg src=\"https://cdn.payping.ir/statics/Payping-logo/Trust/blue.svg\" height=\"128\" width=\"128\"\u003e\u003c/a\u003e\u003c/div\u003e\n\n## Contributing\n\n1. Fork it !\n2. Create your feature branch : `git checkout -b my-new-feature`\n3. Commit your changes : `git commit -am 'Add some feature'`\n4. Push to the branch : `git push origin my-new-feature`\n5. Submit a pull request 😃\n\n## Issues\n\nEach project may have many problems. Contributing to the better development of this project by reporting them.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatamiarash7%2Ffakesmtp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhatamiarash7%2Ffakesmtp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatamiarash7%2Ffakesmtp/lists"}