Hello, I am using the docker-compose to test ory w...
# ory-selfhosting
f
Hello, I am using the docker-compose to test ory within an control environment. I am using mailslurper to get the email as in the docker compose provided by ory. However there is not mail that reach the server. Have you some advise to get more logs in the kratos server about it to debug?
Copy code
"ory.sh/kratos": {
            "credentials": {
              "password": {
                "identifier": true
              }
            },
kratos.yaml:
Copy code
courier:
  smtp:
    connection_uri: <smtp://mailslurper:1025/?skip_ssl_verify=true>
Fixed
s
how did you fix? @freezing-dress-69350
f
I used the playground of ory to generate a working configuration and I got this modification:
Copy code
courier:
 delivery_strategy: smtp
 smtp:
  connection_uri: <smtp://test:test@mailslurper:1025/?disable_starttls=true>