Closed DrMoriarty closed 6 years ago
I forget to write details about my system: mxisd version: 0.6.1 from debian package Linux matrix 4.9.0-5-amd64 #1 SMP Debian 4.9.65-3+deb9u2 (2018-01-04) x86_64 GNU/Linux I'm using proxy nginx which redirects requests to mxisd instance:
< redirect to sygnal >
location /_matrix/identity {
proxy_pass http://172.17.0.1:8090/_matrix/identity;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
}
< redirect to synapse >
This is a known bug and was fixed a coupled of days ago in PR #63. There will be a release today (0.7.0) including the fix. Stay tuned!
@maxidor Thank you very much!
@DrMoriarty v0.7.0 is out and contains your fix!
Hello! I'm using local sessions only config and set up
synapseSql
config section to my postgresql backend.When I add email it works pretty well. Only one verification email was sent with link to my own matrix.mobilap.ru server.
But when I add my phone number it generates one SMS with verification code, and then client (web riot) asks me for the second verification code. But there aren't any second SMS. The log:
I think that the message
Request POST http://matrix.mobilap.ru/_matrix/identity/api/v1/validate/msisdn/submitToken - Error M_FORBIDDEN
is the root of issue, but I have no idea how to fix the mxisd behaviour. May be I miss some config section for it?