/offlineimap/head: changeset 190

Lots of updates; see changelog
This commit is contained in:
jgoerzen
2002-07-25 05:46:27 +01:00
parent c8442d9a68
commit eb790cd78c
4 changed files with 76 additions and 5 deletions

View File

@ -63,6 +63,18 @@ class UIBase:
if s.verbose >= 0:
s._msg(offlineimap.version.banner)
def connecting(s, hostname, port):
if s.verbose < 0:
return
if hostname == None:
hostname = ''
if port != None:
port = ":%d" % port
displaystr = ' to %s%s.' % (hostname, port)
if hostname == '' and port == None:
displaystr = '.'
s._msg("Establishing connection" + displaystr)
def acct(s, accountname):
if s.verbose >= 0:
s._msg("***** Processing account %s" % accountname)