Skip to content

A Postfix mail server using Docker. The mail server can be used by other services to send emails.

Notifications You must be signed in to change notification settings

daily-coding-problem/postfix-mail-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Postfix Mail Server

Docker Linux

This project sets up a Postfix mail server using Docker and mailtrap. The mail server can be used by other services to send emails.

Features

  • Lightweight Postfix mail server in a Docker container.
  • Configurable via main.cf.
  • Supports email routing using mailtrap.
  • Routes to all major email providers (@outlook, @gmail, @yahoo, etc.)

Prerequisites

  • Docker
  • Docker Compose (optional, for easy setup)

Getting Started

1. Clone the Repository

Clone this repository to your local machine:

git clone https://github.com/daily-coding-problem/postfix-mail-server.git
cd postfix-mail-server

2. Create postfix/sasl_passwd

Create the postfix/sasl_passwd file with your credentials from mailtrap.

3. Build the Docker Image

Build the Docker image using the Dockerfile:

docker compose build

4. Run the Docker Container

Run the Docker container with the built image:

docker compose up

5. Test Sending Emails

You can test sending emails by connecting to the mail server from another container or from your host machine using telnet:

telnet localhost 25

Once connected, use the following SMTP commands to send an email:

HELO localhost
MAIL FROM:<sender@example.com>
RCPT TO:<recipient@example.com>
DATA
Subject: Test Email

This is a test email.
.
QUIT

License

This project is licensed under the MIT License.

About

A Postfix mail server using Docker. The mail server can be used by other services to send emails.

Resources

Stars

Watchers

Forks