Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. # Add a MX record to wherever this docker container is hosted and run
  2.  
  3. version: '2'
  4. services:
  5. email:
  6. image: zixia/simple-mail-forwarder
  7. restart: always
  8. ports:
  9. - "25:25"
  10. environment:
  11. SMF_CONFIG: 'YOUR CONFIG HERE'
  12. # Ex: the following will redirect anything to domain.com and send it to your.email@gmail.com
  13. # @domain.com:your.email@gmail.com
  14. # Ex: This will redirect only emails sent to user@domain.com to your.email@gmail.com
  15. # user@domain.com:your.email@gmail.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement