/offlineimap/head: changeset 195

Backed out check for . in account names for now. Will put it back in
when we have a consensus on what exactly to do. Doubt that anyone has
a foldername that would conflict with Blinkenlights anyway.
This commit is contained in:
jgoerzen 2002-07-25 08:41:56 +01:00
parent 091ec4b21e
commit 28938de6ea
2 changed files with 7 additions and 4 deletions

View File

@ -15,6 +15,9 @@ offlineimap (3.2.1) unstable; urgency=low
faster navigation.
* Fix for account name interpolation in dot warning from 3.2.0 from
Martijn Pieters.
* Backed out check for . in account names for now. Will put it back in
when we have a consensus on what exactly to do. Doubt that anyone
has a foldername that would conflict with Blinkenlights anyway.
-- John Goerzen <jgoerzen@complete.org> Wed, 24 Jul 2002 17:04:04 -0500

View File

@ -48,7 +48,7 @@ if '-P' in options:
profiledir = options['-P']
os.mkdir(profiledir)
threadutil.setprofiledir(profiledir)
sys.stderr.write("WARNING: profile mode engaged;\n{otentially large data will be created in " + profiledir + "\n")
sys.stderr.write("WARNING: profile mode engaged;\nPotentially large data will be created in " + profiledir + "\n")
@ -94,9 +94,9 @@ else:
# asking for passwords simultaneously.
for account in accounts:
if '.' in account:
raise ValueError, "Account '%s' contains a dot; dots are not " \
"allowed in account names." % account
#if '.' in account:
# raise ValueError, "Account '%s' contains a dot; dots are not " \
# "allowed in account names." % account
if config.has_option(account, "preauthtunnel"):
tunnels[account] = config.get(account, "preauthtunnel")
elif config.has_option(account, "remotepass"):