remotehost should not be required if transporttunnel is used
If the config option `transporttunnel` is used the option `remotehost` is not needed, because the tunnel provide the IMAP connection. Signed-off-by: Thomas Merkel <tm@core.io> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
4b18ffd5e3
commit
1ce596d713
@ -92,7 +92,7 @@ class IMAPServer(object):
|
|||||||
self.af = socket.AF_INET
|
self.af = socket.AF_INET
|
||||||
else:
|
else:
|
||||||
self.af = socket.AF_UNSPEC
|
self.af = socket.AF_UNSPEC
|
||||||
self.hostname = None if self.preauth_tunnel else repos.gethost()
|
self.hostname = None if self.transport_tunnel else repos.gethost()
|
||||||
self.port = repos.getport()
|
self.port = repos.getport()
|
||||||
if self.port is None:
|
if self.port is None:
|
||||||
self.port = 993 if self.usessl else 143
|
self.port = 993 if self.usessl else 143
|
||||||
|
Loading…
Reference in New Issue
Block a user