From b67189253f405b9d22dd5fe7e3045cdaebda1a52 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Thu, 30 Sep 2021 09:06:35 +0900 Subject: [PATCH] chg: [doc] Updated readme --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a4c3178..48873c1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/MISP/mail_to_misp.svg?branch=main)](https://travis-ci.org/MISP/mail_to_misp) +[![Build Status](https://travis-ci.com/MISP/mail_to_misp.svg?branch=main)](https://travis-ci.org/MISP/mail_to_misp) [![codecov](https://codecov.io/gh/MISP/mail_to_misp/branch/main/graph/badge.svg)](https://codecov.io/gh/MISP/mail_to_misp) # mail_to_misp @@ -106,9 +106,18 @@ If you want to process all incoming junk mails automatically and collect the con 2. ln -s mail_to_misp_config.py fake_smtp_config.py -3. Run fake_smtp.py (as root) +3. Make port 25 accessible to normal users -`$ sudo python3 fake_smtp.py` +``` +$ sudo apt install authbind +$ sudo touch /etc/authbind/byport/25 +$ sudo chown misp:misp /etc/authbind/byport/25 +$ sudo chmod 770 /etc/authbind/byport/25 +``` + +4. Run fake_smtp.py + +`$ python3 fake_smtp.py` ### Apple Mail [unmaintained]