This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-10-06
Channels
- # aleph (70)
- # announcements (9)
- # babashka (43)
- # babashka-sci-dev (6)
- # beginners (97)
- # cider (2)
- # clj-commons (3)
- # clj-kondo (41)
- # clojure (88)
- # clojure-europe (44)
- # clojure-nl (2)
- # clojure-spec (22)
- # clojurescript (65)
- # community-development (6)
- # conjure (10)
- # cursive (6)
- # datahike (13)
- # datomic (4)
- # eastwood (11)
- # events (1)
- # fulcro (45)
- # graalvm (1)
- # graphql (3)
- # hyperfiddle (3)
- # integrant (7)
- # jobs (1)
- # lambdaisland (1)
- # lsp (58)
- # nbb (4)
- # nrepl (3)
- # pathom (15)
- # shadow-cljs (27)
- # tools-deps (1)
Hello everyone. I'm trying to compile a small website that has a form that sends emails from the backend. I usually use https://github.com/toyokumo/tarayo but bumped into the Random/SplittableRandom limitation of GraalVM (https://foivos.zakkak.net/tutorials/working-with-randoms-native-images/) because of a dependency of the lib that uses this class. I switched to https://github.com/drewr/postal which compiles without problem. But then, when I try the form from the compiled version of the website, the piece of code that usually blocks ~1 second before sending the email, returns instantly without sending any email. The postal lib relies on the jakarta mail library. Is it a known behaviour ? Is there a way to debug and/or fix this kind of problem with specific compilation options or code instructions ? Thanks a lot.