From 28938de6ea11784509a6dc3896299f127f5a23ff Mon Sep 17 00:00:00 2001 From: jgoerzen Date: Thu, 25 Jul 2002 08:41:56 +0100 Subject: [PATCH] /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. --- offlineimap/head/debian/changelog | 3 +++ offlineimap/head/offlineimap.py | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/offlineimap/head/debian/changelog b/offlineimap/head/debian/changelog index ffb7246..500d256 100644 --- a/offlineimap/head/debian/changelog +++ b/offlineimap/head/debian/changelog @@ -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 Wed, 24 Jul 2002 17:04:04 -0500 diff --git a/offlineimap/head/offlineimap.py b/offlineimap/head/offlineimap.py index 133b8d7..eb36bae 100644 --- a/offlineimap/head/offlineimap.py +++ b/offlineimap/head/offlineimap.py @@ -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"):