我想用户使用我们的学院邮件服务器登录我的django网络应用程序。 但是这段代码允许在本地主机上使用机构邮件登录,但不允许在服务器上登录。
我试过pythonanywhere django提供了shell:
from imaplib import IMAP4
c = IMAP4('newmailhost.cc.iitk.ac.in')
错误出现在Web服务器中,但不在本地主机shell中。
socket.gaierror: [Errno -2] Name or service not known
在mylib / backend.py
中from django.contrib.auth.models import User
from imaplib import IMAP4
class MyCustomBackend:
# Create an authentication method
# This is called by the standard Django login procedure
def authenticate(self, username=None, password=None):
try:
# Check if this user is valid on the mail server
c = IMAP4('newmailhost.cc.iitk.ac.in')
c.login(username, password)
except:
return None
user, created = User.objects.get_or_create(username=username)
return user
# Required for your backend to work properly - unchanged in most scenarios
def get_user(self, user_id):
try:
return User.objects.get(pk=user_id)
except User.DoesNotExist:
return None
在setting.py
中AUTHENTICATION_BACKENDS = (
'mylib.backend.MyCustomBackend',
'django.contrib.auth.backends.ModelBackend',
)
答案 0 :(得分:1)
该DNS名称无法解析为我所看到的地址。所以我的猜测是它是一个私人服务器,在你的网络之外不存在。