From cf94665c05d8cf1a45f4e08c2765e9054fdc9615 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 4 Oct 2007 17:25:49 +0000 Subject: [PATCH] Monotone-Parent: 9159a1e2f94d0a238a52c1da53f62a1e2996469e Monotone-Revision: dc2b0827f3e72cd80a1a6e0907d7f31d9eabcdf3 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2007-10-04T17:25:49 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ Main/SOGo.m | 3 --- NEWS | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76a8e6e74..686d455f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-04 Francis Lachapelle + + * Main/SOGo.m ([SOGo -isUserName:_keyinContext:_ctx]): removed + the constraint that a username can't start with a digit. + 2007-10-02 Francis Lachapelle * Moved SOPE/sope-gdl1/GDLContentStore from the default trunk diff --git a/Main/SOGo.m b/Main/SOGo.m index 3bc17f590..15b568dd5 100644 --- a/Main/SOGo.m +++ b/Main/SOGo.m @@ -254,9 +254,6 @@ static BOOL debugObjectAllocation = NO; if ([_key length] < 1) return NO; - if (isdigit([_key characterAtIndex:0])) - return NO; - return YES; } diff --git a/NEWS b/NEWS index a92a5b705..a61bbec9c 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ - implemented cookie-based identification in the web interface; - fixed a bug where a false positive happening whenever a wrong user login was given during an indirect bind; +- remove the constraint that a username can't begin with a digit; - deleting a message no longer expunges its parent folder; - implemented support for multiple calendars; - it is now possible to rename folders;