clojure-mail
clojure-mail copied to clipboard
A Clojure library for parsing, downloading and reading email from IMAP servers.
Commit b477e70 introduced a few functions in message.clj. Without the version number increase, one is unable to access those via clojars.
Depending upon time disconnected it will either just silently miss events during disconnection and resume working or silently fail to connect but report that it is still functioning. Is there...
as mentioned here: https://github.com/owainlewis/clojure-mail/issues/66 the issue appears to be with `javax/mail/mailapi/1.4.3` and the exception is ``` Caused by: java.lang.RuntimeException: Unable to find static field: SIZE in class javax.mail.FetchProfile$Item at clojure.lang.Util.runtimeException(Util.java:221)...
when using imaps, the 'port' in clojure-mail sets to 9**4**3. This is wrong and should be 9**9**3 for imaps: https://github.com/owainlewis/clojure-mail/blob/master/src/clojure_mail/core.clj#L69 This is slightly related to 'https://github.com/owainlewis/clojure-mail/issues/33'.
I mean here https://github.com/owainlewis/clojure-mail/blob/b73d63f/src/clojure_mail/message.clj#L158 return `[(msg->map part)]` in order to always be consistent. Since PersistentArrayMap is also sequable currently it may lead to error somewhere deep in stack. Downside: this...
Hi there, So, I don't claim to know a great deal about IMAPS so I'm willing to have my understanding amended. I found clojure-mail because I want to do some...
If you get this AuthenticationFailedException [ALERT] Please log in via your web browser: https://support.google.com/mail/accounts/answer/78754 (Failure) com.sun.mail.imap.IMAPStore.protocolConnect (IMAPStore.java:717) plz go to https://myaccount.google.com/u/4/lesssecureapps and allow.
Hi, Is there any need to do any memory cleanup to free the used memory? I'm suspecting a memory leak after using search-inbox many times, just checking if you have...
Greenmail helpers are in the test-directory. This means: they are not present in the maven repo. It would be really nice to have the helper functions for integration testing in...
Hi, It would be useful to be able to specify the server port when creating the `store`. As a nice byproduct, this will make possible to create integration tests with...