私のdjangoアプリでは、django-registrationアプリを使用しています。私は数ヶ月前に登録をテストしていましたが、うまくいきました。それ以来、django-registration で何も編集していませんが、どういうわけかもう機能していません。登録メールに適切なリンクが含まれていません:
Someone, hopefully you, signed up for a new account at domain.com using this email address. If it was you, and you'd like to activate and use your account, click the link below or copy and paste it into your web browser's address bar:
:///accounts/activate/3789be99f7426ab3e332d252900479b59a400d45/
If you didn't request this, you don't need to do anything; you won't receive any more email from us, and the account will expire automatically in seven days.
これは私のactivation_email.txtです
{% load humanize %}
Someone, hopefully you, signed up for a new account at domain.com using this email address. If it was you, and you'd like to activate and use your account, click the link below or copy and paste it into your web browser's address bar:
{{ protocol }}://{{ domain }}/accounts/activate/{{ activation_key }}/
If you didn't request this, you don't need to do anything; you won't receive any more email from us, and the account will expire automatically in {{ expiration_days|apnumber }} days.
したがって、プロトコルとドメイン変数は渡されません。どこに設定すればよいですか?