added zoho.com email support

This commit is contained in:
Chris Caron 2018-12-20 22:18:17 -05:00
parent f8370c8624
commit 8928cfeaf4

View File

@ -131,6 +131,7 @@ WEBBASE_LOOKUP_TABLE = (
'login_type': (WebBaseLogin.EMAIL, )
},
),
# Fast Mail (Series 2)
(
'Fast Mail Extended Addresses',
@ -169,6 +170,21 @@ WEBBASE_LOOKUP_TABLE = (
},
),
# Zoho Mail
(
'Zoho Mail',
re.compile(
r'^((?P<label>[^+]+)\+)?(?P<id>[^@]+)@'
r'(?P<domain>zoho\.com)$', re.I),
{
'port': 465,
'smtp_host': 'smtp.zoho.com',
'secure': True,
'secure_mode': SecureMailMode.SSL,
'login_type': (WebBaseLogin.EMAIL, )
},
),
# Catch All
(
'Custom',