I am using django-allauth together with an LDAP-backend.
So whenever a users logs in, the mail address is set to the mail address stored in our directory server.
I was able to disable email confirmation by setting
ACCOUNT_EMAIL_VERIFICATION = "none"
But now those users have an unconfirmed mail address attached to their account. More specifically: I am trying to set up a mailman 3 including webUI and connect that to LDAP. Users having the mail address unconfirmed, causes them to not be able to use this address to subscribe to mailing lists.
Can I maybe somehow modify the AccountAdapter to automatically confirm mail addresses when a user logs in?