mirror of
https://github.com/caronc/apprise.git
synced 2024-11-26 01:53:10 +01:00
added zoho.com email support
This commit is contained in:
parent
f8370c8624
commit
8928cfeaf4
@ -131,6 +131,7 @@ WEBBASE_LOOKUP_TABLE = (
|
|||||||
'login_type': (WebBaseLogin.EMAIL, )
|
'login_type': (WebBaseLogin.EMAIL, )
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
||||||
# Fast Mail (Series 2)
|
# Fast Mail (Series 2)
|
||||||
(
|
(
|
||||||
'Fast Mail Extended Addresses',
|
'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
|
# Catch All
|
||||||
(
|
(
|
||||||
'Custom',
|
'Custom',
|
||||||
|
Loading…
Reference in New Issue
Block a user