0

I want to read an email using pop3s protocol in nifi.

Currently nifi has a pop3 email consumer does not have an option to specify to use pop3s.

When I use this processor, I am getting the below error.

I searched for the error here where it says that I should pop3s protocol.

I have a java application which uses pop3s protocol and was able to read the email.

enter image description here

Can some one advise me how to configure pop3s in NiFi.

Aravind
  • 1,145
  • 6
  • 18
  • 44

1 Answers1

0

After adding, the below attributes, the pop3s protocol is automatically achieved.

mail.debug - true
mail.pop3.socketFactory.class - mail.pop3.socketFactory.fallback
javax.net.ssl.SSLSocketFactory - false

Nifi Configuration

Aravind
  • 1,145
  • 6
  • 18
  • 44