Replies: 1 comment
-
For reference, this discussion is being addressed in the associated issue #4098 Status so far is that a minimal setup cannot reproduce the problem. @unlucio has not confirmed yet if either of these reproductions below work for them, so it is unclear if it's due to their config or deployment environment. Docker CLI$ docker run --rm -it --hostname mail.example.test --name dms mailserver/docker-mailserver:edge
# In another terminal, shell into the DMS container to attempt reproduction:
$ docker exec -it dms bash
$ setup email add hello@example.test secret
$ doveadm auth test hello@example.test secret
passdb: hello@example.test auth succeeded
extra fields:
user=hello@example.test Docker Composeservices:
test:
image: mailserver/docker-mailserver:edge
container_name: dms
hostname: example.test $ docker compose up -d
$ docker exec -it dms bash
# In the DMS container now:
$ setup email add hello@example.test secret
$ doveadm auth test hello@example.test secret
passdb: hello@example.test auth succeeded
extra fields:
user=hello@example.test |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While trying to debug this problem,
doveadm auth test
fails for a user added bysetup dovecot-master add
orsetup email add
.It looks like dovecot doesn't like users added by setup?:
Bug report: #4098
Beta Was this translation helpful? Give feedback.
All reactions