|
|
@ -15,21 +15,15 @@ STATUSES = {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SERVER_MAP = {
|
|
|
|
|
|
|
|
"imap": ("imap", 143), # Connect to the generic IMAP port
|
|
|
|
|
|
|
|
"smtp": ("smtp", 10025) # Connect to the specific SMTP port
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def handle_authentication(headers):
|
|
|
|
def handle_authentication(headers):
|
|
|
|
""" Handle an HTTP nginx authentication request
|
|
|
|
""" Handle an HTTP nginx authentication request
|
|
|
|
See: http://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#protocol
|
|
|
|
See: http://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#protocol
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
method = headers["Auth-Method"]
|
|
|
|
method = headers["Auth-Method"]
|
|
|
|
protocol = headers["Auth-Protocol"]
|
|
|
|
protocol = headers["Auth-Protocol"]
|
|
|
|
server, port = get_server(headers["Auth-Protocol"])
|
|
|
|
|
|
|
|
# Incoming mail, no authentication
|
|
|
|
# Incoming mail, no authentication
|
|
|
|
if method == "none" and protocol == "smtp":
|
|
|
|
if method == "none" and protocol == "smtp":
|
|
|
|
|
|
|
|
server, port = get_server(headers["Auth-Protocol"], False)
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
"Auth-Status": "OK",
|
|
|
|
"Auth-Status": "OK",
|
|
|
|
"Auth-Server": server,
|
|
|
|
"Auth-Server": server,
|
|
|
@ -37,6 +31,7 @@ def handle_authentication(headers):
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# Authenticated user
|
|
|
|
# Authenticated user
|
|
|
|
elif method == "plain":
|
|
|
|
elif method == "plain":
|
|
|
|
|
|
|
|
server, port = get_server(headers["Auth-Protocol"], True)
|
|
|
|
user_email = urllib.parse.unquote(headers["Auth-User"])
|
|
|
|
user_email = urllib.parse.unquote(headers["Auth-User"])
|
|
|
|
password = urllib.parse.unquote(headers["Auth-Pass"])
|
|
|
|
password = urllib.parse.unquote(headers["Auth-Pass"])
|
|
|
|
user = models.User.query.get(user_email)
|
|
|
|
user = models.User.query.get(user_email)
|
|
|
@ -65,7 +60,13 @@ def get_status(protocol, status):
|
|
|
|
return status, codes[protocol]
|
|
|
|
return status, codes[protocol]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_server(protocol):
|
|
|
|
def get_server(protocol, authenticated=False):
|
|
|
|
hostname, port = SERVER_MAP[protocol]
|
|
|
|
if protocol == "imap":
|
|
|
|
|
|
|
|
hostname, port = "imap", 143
|
|
|
|
|
|
|
|
elif protocol == "pop3":
|
|
|
|
|
|
|
|
hostname, port = "imap", 110
|
|
|
|
|
|
|
|
elif protocol == "smtp":
|
|
|
|
|
|
|
|
hostname = "smtp"
|
|
|
|
|
|
|
|
port = 10025 if authenticated else 25
|
|
|
|
address = socket.gethostbyname(hostname)
|
|
|
|
address = socket.gethostbyname(hostname)
|
|
|
|
return address, port
|
|
|
|
return address, port
|
|
|
|