/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:
parent
091ec4b21e
commit
28938de6ea
@ -15,6 +15,9 @@ offlineimap (3.2.1) unstable; urgency=low
|
|||||||
faster navigation.
|
faster navigation.
|
||||||
* Fix for account name interpolation in dot warning from 3.2.0 from
|
* Fix for account name interpolation in dot warning from 3.2.0 from
|
||||||
Martijn Pieters.
|
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
|
-- John Goerzen <jgoerzen@complete.org> Wed, 24 Jul 2002 17:04:04 -0500
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ if '-P' in options:
|
|||||||
profiledir = options['-P']
|
profiledir = options['-P']
|
||||||
os.mkdir(profiledir)
|
os.mkdir(profiledir)
|
||||||
threadutil.setprofiledir(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.
|
# asking for passwords simultaneously.
|
||||||
|
|
||||||
for account in accounts:
|
for account in accounts:
|
||||||
if '.' in account:
|
#if '.' in account:
|
||||||
raise ValueError, "Account '%s' contains a dot; dots are not " \
|
# raise ValueError, "Account '%s' contains a dot; dots are not " \
|
||||||
"allowed in account names." % account
|
# "allowed in account names." % account
|
||||||
if config.has_option(account, "preauthtunnel"):
|
if config.has_option(account, "preauthtunnel"):
|
||||||
tunnels[account] = config.get(account, "preauthtunnel")
|
tunnels[account] = config.get(account, "preauthtunnel")
|
||||||
elif config.has_option(account, "remotepass"):
|
elif config.has_option(account, "remotepass"):
|
||||||
|
Loading…
Reference in New Issue
Block a user