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>
This commit is contained in:
Thomas Merkel 2017-09-20 13:40:34 +02:00
parent e4bee74dad
commit 4248fb6c25
No known key found for this signature in database
GPG Key ID: 12AE4593D7A63833
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class IMAPServer(object):
self.af = socket.AF_INET
else:
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()
if self.port is None:
self.port = 993 if self.usessl else 143