mirror of https://github.com/caronc/apprise
Added support for Yandex Email (#303)
parent
b83bc37522
commit
c732b16d43
|
@ -106,6 +106,21 @@ EMAIL_TEMPLATES = (
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
||||||
|
# Yandex
|
||||||
|
(
|
||||||
|
'Yandex',
|
||||||
|
re.compile(
|
||||||
|
r'^((?P<label>[^+]+)\+)?(?P<id>[^@]+)@'
|
||||||
|
r'(?P<domain>yandex\.(com|ru|ua|by|kz|uz|tr|fr))$', re.I),
|
||||||
|
{
|
||||||
|
'port': 465,
|
||||||
|
'smtp_host': 'smtp.yandex.ru',
|
||||||
|
'secure': True,
|
||||||
|
'secure_mode': SecureMailMode.SSL,
|
||||||
|
'login_type': (WebBaseLogin.USERID, )
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
# Microsoft Hotmail
|
# Microsoft Hotmail
|
||||||
(
|
(
|
||||||
'Microsoft Hotmail',
|
'Microsoft Hotmail',
|
||||||
|
@ -285,7 +300,7 @@ class NotifyEmail(NotifyBase):
|
||||||
default_secure_mode = SecureMailMode.STARTTLS
|
default_secure_mode = SecureMailMode.STARTTLS
|
||||||
|
|
||||||
# Default SMTP Timeout (in seconds)
|
# Default SMTP Timeout (in seconds)
|
||||||
connect_timeout = 15
|
socket_connect_timeout = 15
|
||||||
|
|
||||||
# Define object templates
|
# Define object templates
|
||||||
templates = (
|
templates = (
|
||||||
|
@ -366,15 +381,9 @@ class NotifyEmail(NotifyBase):
|
||||||
'default': SecureMailMode.STARTTLS,
|
'default': SecureMailMode.STARTTLS,
|
||||||
'map_to': 'secure_mode',
|
'map_to': 'secure_mode',
|
||||||
},
|
},
|
||||||
'timeout': {
|
|
||||||
'name': _('Server Timeout'),
|
|
||||||
'type': 'int',
|
|
||||||
'default': 15,
|
|
||||||
'min': 5,
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
||||||
def __init__(self, timeout=15, smtp_host=None, from_name=None,
|
def __init__(self, smtp_host=None, from_name=None,
|
||||||
from_addr=None, secure_mode=None, targets=None, cc=None,
|
from_addr=None, secure_mode=None, targets=None, cc=None,
|
||||||
bcc=None, **kwargs):
|
bcc=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
|
@ -393,13 +402,6 @@ class NotifyEmail(NotifyBase):
|
||||||
else:
|
else:
|
||||||
self.port = self.default_port
|
self.port = self.default_port
|
||||||
|
|
||||||
# Email SMTP Server Timeout
|
|
||||||
try:
|
|
||||||
self.timeout = int(timeout)
|
|
||||||
|
|
||||||
except (ValueError, TypeError):
|
|
||||||
self.timeout = self.connect_timeout
|
|
||||||
|
|
||||||
# Acquire Email 'To'
|
# Acquire Email 'To'
|
||||||
self.targets = list()
|
self.targets = list()
|
||||||
|
|
||||||
|
@ -714,7 +716,7 @@ class NotifyEmail(NotifyBase):
|
||||||
self.smtp_host,
|
self.smtp_host,
|
||||||
self.port,
|
self.port,
|
||||||
None,
|
None,
|
||||||
timeout=self.timeout,
|
timeout=self.socket_connect_timeout,
|
||||||
)
|
)
|
||||||
|
|
||||||
if self.secure and self.secure_mode == SecureMailMode.STARTTLS:
|
if self.secure and self.secure_mode == SecureMailMode.STARTTLS:
|
||||||
|
@ -762,7 +764,6 @@ class NotifyEmail(NotifyBase):
|
||||||
'from': self.from_addr,
|
'from': self.from_addr,
|
||||||
'mode': self.secure_mode,
|
'mode': self.secure_mode,
|
||||||
'smtp': self.smtp_host,
|
'smtp': self.smtp_host,
|
||||||
'timeout': self.timeout,
|
|
||||||
'user': self.user,
|
'user': self.user,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -864,8 +865,11 @@ class NotifyEmail(NotifyBase):
|
||||||
results['from_name'] = NotifyEmail.unquote(results['qsd']['name'])
|
results['from_name'] = NotifyEmail.unquote(results['qsd']['name'])
|
||||||
|
|
||||||
if 'timeout' in results['qsd'] and len(results['qsd']['timeout']):
|
if 'timeout' in results['qsd'] and len(results['qsd']['timeout']):
|
||||||
# Extract the timeout to associate with smtp server
|
# Deprecated in favor of cto= flag
|
||||||
results['timeout'] = results['qsd']['timeout']
|
NotifyBase.logger.deprecate(
|
||||||
|
"timeout= argument is deprecated; use cto= instead.")
|
||||||
|
results['qsd']['cto'] = results['qsd']['timeout']
|
||||||
|
del results['qsd']['timeout']
|
||||||
|
|
||||||
# Store SMTP Host if specified
|
# Store SMTP Host if specified
|
||||||
if 'smtp' in results['qsd'] and len(results['qsd']['smtp']):
|
if 'smtp' in results['qsd'] and len(results['qsd']['smtp']):
|
||||||
|
|
|
@ -89,6 +89,17 @@ TEST_URLS = (
|
||||||
'instance': plugins.NotifyEmail,
|
'instance': plugins.NotifyEmail,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
# Yandex
|
||||||
|
('mailto://user:pass@yandex.com', {
|
||||||
|
'instance': plugins.NotifyEmail,
|
||||||
|
}),
|
||||||
|
('mailto://user:pass@yandex.ru', {
|
||||||
|
'instance': plugins.NotifyEmail,
|
||||||
|
}),
|
||||||
|
('mailto://user:pass@yandex.fr', {
|
||||||
|
'instance': plugins.NotifyEmail,
|
||||||
|
}),
|
||||||
|
|
||||||
# Custom Emails
|
# Custom Emails
|
||||||
('mailtos://user:pass@nuxref.com:567', {
|
('mailtos://user:pass@nuxref.com:567', {
|
||||||
'instance': plugins.NotifyEmail,
|
'instance': plugins.NotifyEmail,
|
||||||
|
|
Loading…
Reference in New Issue