Emil Temirov

Results 2 comments of Emil Temirov

OK, I've found out how to fix that, I used the code from the `feature/Add-TLS` branch, but I'm sure the same things can be done on the code from the...

I had the same issue in `gen_ack`, my fix is ``` # this one does not work # t = request.headers["To"]["raw"].strip("") [to, *rest] = request.headers["To"]["raw"].split(';') t = ';'.join([to.strip(""), *rest]) ackMessage...