0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-18 18:51:29 -05:00

Minor fixes.

This commit is contained in:
Andrey Antukh 2020-11-11 10:54:10 +01:00 committed by Hirunatan
parent 5b9c596170
commit 15545d0b2f
4 changed files with 2 additions and 13 deletions

View file

@ -83,7 +83,7 @@
:fullname (str "Profile " index)
:password "123123"
:demo? true
:email (str "profile" index ".test@penpot.io")})
:email (str "profile" index ".test@penpot.app")})
team-id (:default-team-id prof)
owner-id id]
(let [project-ids (collect (partial create-project conn team-id owner-id)

View file

@ -28,16 +28,6 @@
(println "******** end email "(:id email) "**********"))]
(log/info out))))
(defn adapt-config
[cfg]
{:host (:smtp-host cfg "localhost")
:port (:smtp-port cfg 25)
:default-reply-to (:smtp-default-reply-to cfg)
:default-from (:smtp-default-from cfg)
:tls (:smtp-tls cfg)
:username (:smtp-username cfg)
:password (:smtp-password cfg)})
(defn handler
{:app.tasks/name "sendmail"}
[{:keys [props] :as task}]

View file

@ -172,7 +172,6 @@
[{:keys [debug] :or {debug false} :as opts}]
(let [props (opts->props opts)
session (Session/getInstance props)]
(prn "kaka" props)
(.setDebug session debug)
session))

View file

@ -4,7 +4,7 @@ LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
ARG DEBIAN_FRONTEND=noninteractive
ARG EXTERNAL_UID=1000
ENV NODE_VERSION=v12.19.0 \
ENV NODE_VERSION=v14.15.0 \
CLOJURE_VERSION=1.10.1.727 \
LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8