From cebcb74c9b7fd89a7ccee194d1b33adc1a23c059 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 7 Dec 2006 07:10:33 +0000 Subject: [PATCH] recognize x-tlen type from tlen transports. fixes #2756 --- src/common/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/logger.py b/src/common/logger.py index 9de23a017..7e70457ed 100644 --- a/src/common/logger.py +++ b/src/common/logger.py @@ -232,7 +232,7 @@ class Logger: return constants.TYPE_SMS if type_ == 'smtp': return constants.TYPE_SMTP - if type_ == 'tlen': + if type_ in ('tlen', 'x-tlen'): return constants.TYPE_TLEN if type_ == 'yahoo': return constants.TYPE_YAHOO