Sign inSign up

fametec/postfix

By fametec

Updated over 4 years ago

Postfix SMTP Relay

Image
0

3.7K

fametec/postfix repository overview

postfix

FOSSA Status

Images

  • fametec/postfix:latest
  • fametec/postfix:mailgun
  • fametec/postfix:mailgun-europe
  • fametec/postfix:ses
  • fametec/postfix:gmail
  • fametec/postfix:office365
  • fametec/postfix:sendgrid
  • fametec/postfix:locaweb

Postfix SMTP Relay

run

docker run --rm -d --name postfix \
-e RELAY_USER=postmaster@domain \
-e RELAY_PASS=xxxxxxxxx \
-e RELAY_HOST=smtp.mailgun.org \
fametec/postfix:latest

docker-compose

version: '3.2'
#
### Services
#
services:
#
# MAILGUN
#
  relay:
    image: fametec/postfix:latest
    restart: unless-stopped
    volumes: 
     - postfix-volume:/var/spool/postfix
    ports:
     - "30025:25"
    environment:
     RELAY_USER: postmaster@XXXXXXXXXXXXXXXX
     RELAY_PASS: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
     RELAY_HOST: smtp.mailgun.org
     
#
### Volumes
#
volumes:
  postfix-volume:
  
  

testing

echo "Email Test" | mail -s "This is a simple test" [email protected]

or

sendmail -f [email protected] [email protected]
From: Sender Name <[email protected]>
Subject: Amazon SES Test                
This message was sent using Amazon SES.                
.

License

FOSSA Status

Tag summary

Content type

Image

Digest

Size

8.9 MB

Last updated

over 4 years ago

docker pull fametec/postfix