Drew Raines

Results 29 comments of Drew Raines

This is great, thanks @ljosa! Left a question but otherwise looks good.

Many thanks @poenneby for tracking this down and updating the docs! I think we could also add some helpers in Postal for popular services like Gmail and SES. If someone...

This appears to be a limitation in JavaMail's `InternetAddress` parser. `1.5.0-b1` behaves the same way. ``` clojure postal.message> (.getAddress (InternetAddress. "pépé@example.com" "pépé")) "pépé@example.com" postal.message> (.getPersonal (InternetAddress. "Pépé ")) AddressException Local...

These cases work now with Jakarta Mail (née JavaMail) 1.6.5: ``` postal.message> (.getPersonal (InternetAddress. "Pépé ")) "Pépé" postal.message> (make-address "té[email protected]" "Tést" "utf-8") #object[javax.mail.internet.InternetAddress 0x353d19a4 "=?utf-8?Q?T=C3=A9st?= "] postal.message> (make-address "té[email protected]" "utf-8")...

Hey @CoryBarney! What deps conflicts are you getting?

Just an update on my end I don't have any bandwidth to implement this, but I could probably manage a review. Any takers? ❤️

This is definitely some lame code. We need to decide what to do with paths that don't really have a "filename." I'd like to either use `(:file-name part)` or a...

Yeah this is why I asked if it's Windows. As Charles mentioned it has to do with GC and dangling references. There are various workarounds you can try. I've found...

Yes! PR welcome. The packaging is very old and needs to be redone. I use a `version.txt` file in `resources/` in other projects which works with uberjars too. Will do...