Problem Connecting To Python Mail Server From Java Camel Application
I have a simple email server implemented using the Python language aiosmtpd package (https://github.com/aio-libs/aiosmtpd). I also have an Apache Camel application with a route tha
Solution 1:
aiosmtpd
is SMTP server. SMTP protocol is used to send, relay or forward messages, but you cannot use it to receive messages. You would need to combine your mailbox application with some implementation of IMAP
or POP3
.
Post a Comment for "Problem Connecting To Python Mail Server From Java Camel Application"