recognize x-tlen type from tlen transports. fixes #2756
This commit is contained in:
parent
f89ccfe441
commit
cebcb74c9b
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ class Logger:
|
||||||
return constants.TYPE_SMS
|
return constants.TYPE_SMS
|
||||||
if type_ == 'smtp':
|
if type_ == 'smtp':
|
||||||
return constants.TYPE_SMTP
|
return constants.TYPE_SMTP
|
||||||
if type_ == 'tlen':
|
if type_ in ('tlen', 'x-tlen'):
|
||||||
return constants.TYPE_TLEN
|
return constants.TYPE_TLEN
|
||||||
if type_ == 'yahoo':
|
if type_ == 'yahoo':
|
||||||
return constants.TYPE_YAHOO
|
return constants.TYPE_YAHOO
|
||||||
|
|
Loading…
Add table
Reference in a new issue