Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add sid to next_link for email validation #6097

Merged
merged 3 commits into from
Sep 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/6097.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add sid to next_link for email validation.
10 changes: 10 additions & 0 deletions synapse/handlers/identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"""Utilities for interacting with Identity Servers"""

import logging
import urllib

from canonicaljson import json

Expand Down Expand Up @@ -328,6 +329,15 @@ def send_threepid_validation(
# Generate a session id
session_id = random_string(16)

if next_link:
# Manipulate the next_link to add the sid, because the caller won't get
# it until we send a response, by which time we've sent the mail.
if "?" in next_link:
next_link += "&"
else:
next_link += "?"
next_link += "sid=" + urllib.parse.quote(session_id)

# Generate a new validation token
token = random_string(32)

Expand Down