Community Articles

Find and share helpful community-sourced technical articles.
Announcements
Celebrating as our community reaches 100,000 members! Thank you!
Labels (1)
avatar
Master Guru

With Apache NiFi 1.0 you can now act as a simple SMTP server (though it is recommended to sit behind a real SMTP MTA and just get mail forwards). It makes for an easy way to ingest mail, headers and attachments.

The first thing you will notice is the awesome new UI, which is much cleaner and a joy to use.'

6538-nifi1.png

First add a processor, ListenSMTP, this will be your mail gateway/SMTP server. As you can see there's also processors for extracting attachments and headers from Email.

6558-nifi1d.png

You need to make sure you set Listening Port, SMTP hostname and Max. # of Connections.

6540-nifi1c.png

6551-mail1.png

The entire flow for mail processing is pretty simple, but easy to follow. We listen for SMTP over TCP Port (I chose 2025, but with Root access you could run on 25). I send the original flow file right to HDFS. I extract the attachments and put them in a separate HDFS directory and finally pull out the email headers and also send them to an HDFS file. I have a little test flow in the bottom to read a file and send email to our ListenSMTP for testing.

If you are running this on an HDP 2.4 sandbox, you will need to install Java 8 and set it as an alternative JDK.

http://tecadmin.net/install-java-8-on-centos-rhel-and-fedora/

alternatives --config java

Pick Java 8

I added Java 8 as an alternative and specified Java_HOME in top of bin/nifi.sh so I could run with Java 8 which is required now.

To send a test SMTP message from the command line:

telnet localhost 2025
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 sandbox.hortonworks.com ESMTP Apache NiFi
ehlo sandbox
250-sandbox.hortonworks.com
250-8BITMIME
250-SIZE 67108864
250 Ok
MAIL
FROM: <tim@sparkdeveloper.com>
250 Ok
RCPT TO: <tspann@hortonworks.com>
250 Ok
DATA

354 End data with
<CR><LF>.<CR><LF>
hello

.
250 Ok

A better way to test SMTP is with SWAKS See: https://debian-administration.org/article/633/Testing_SMTP_servers_with_SWAKS

From Mac: brew install swaks

From Centos/RHEL: sudo yum -y install swaks

Test Send Email:

swaks --to tspann@hortonworks.com --server localhost:2025
Received: from hw13125.home (localhost [127.0.0.1])  
by sandbox.hortonworks.com  with SMTP (Apache NiFi) id IRPEF4WI  
for tspann@hortonworks.com;  Wed, 10 Aug 2016 17:19:12 -0400 (EDT)
Date: Wed, 10 Aug 2016 17:19:12 -0400To:
tspann@hortonworks.com
From: tspann@hw13125.home
Subject: test Wed,
10 Aug 2016 17:19:12 -0400
X-Mailer: swaks v20130209.0 jetmore.org/john/code/swaks/
MIME-Version: 1.0
Content-Type: multipart/mixed; 
boundary="----=_MIME_BOUNDARY_000_98059"------=_MIME_BOUNDARY_000_98059
Content-Type: text/plain
This is a test mailing
------=_MIME_BOUNDARY_000_98059
Content-Type: application/octet-stream
Content-Disposition: attachment
Content-Transfer-Encoding:
BASE64
------=_MIME_BOUNDARY_000_98059--

6552-mail2.png

It is very easy to configure send an email message to our server you need to put in a hostname and port.

6553-mail3.png

6554-createatemplate.png

Once your down building your flow, make sure you create a template and save the XML off to version control.

6555-mail5.png

Creating a template has now moved to the Operate control.

If you get lost on what you are working for you can use the search feature from the top right.

6556-mail6.png

Remember this is a beta product, not yet ready for production. Wait for HDF 2.0 for supported production usage.


mail4.png
3,944 Views