diff --git a/src/paperless/urls.py b/src/paperless/urls.py
index e5a6065be..fa237fe5c 100644
--- a/src/paperless/urls.py
+++ b/src/paperless/urls.py
@@ -305,6 +305,11 @@ urlpatterns = [
                         ],
                     ),
                 ),
+                re_path(
+                    r"^confirm-email/(?P<key>[-:\w]+)/$",
+                    allauth_account_views.ConfirmEmailView.as_view(),
+                    name="account_confirm_email",
+                ),
                 re_path(
                     r"^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$",
                     allauth_account_views.password_reset_from_key,