Are there any java or clojure mail libraries out there that do what lamson does? In particular, the mail routing features of lamson are very cool http://verpa.wordpress.com/2010/11/13/making-your-webapp-react-to-emails-with-lamson-pt-2/ are there any thing like that for the jvm?
Asked
Active
Viewed 397 times
4
-
Do you want it specifically for Clojure or for the jvm so Clojure could access it? – octopusgrabbus Jun 14 '12 at 12:41
-
It could be for either, as long as Clojure can access the libraries... I can write a wrapper for it. – zcaudate Jun 14 '12 at 13:10
1 Answers
3
JavaMail is rather sophisticated and can send mail via STMP and receive using POP3 and IMAP. You can build a layer to route mails yourself. Maybe Apache JAMES is useful for you too.

ordnungswidrig
- 3,140
- 1
- 18
- 29
-
1apache james is pretty cool. the mailets toolkit does a similar job to lamson – zcaudate Oct 10 '12 at 07:15