プロジェクト

全般

プロフィール

Vote #67899

未完了

Support german umlauts and whitespaces in login string

Admin Redmine さんがほぼ2年前に追加. ほぼ2年前に更新.

ステータス:
New
優先度:
通常
担当者:
-
カテゴリ:
Accounts / authentication_7
対象バージョン:
-
開始日:
2010/08/18
期日:
進捗率:

0%

予定工数:
category_id:
7
version_id:
0
issue_org_id:
6166
author_id:
14685
assigned_to_id:
0
comments:
13
status_id:
1
tracker_id:
2
plus1:
3
affected_version:
closed_on:
affected_version_id:
ステータス-->[New]

説明

I am using redmine to authenticate with a Lotus Notes LDAP server. Unfortunately the validated login string can contain umlauts and whitespaces, like in the name "Max Müller". Redmine by default does neither allow non-ascii characters nor whitespaces in the login string.

If there is no other reason, why special characters must not be used, I think one could localize the validation pattern by extracting it into config/locales to be configured individually for each language.

For myself now, I changed app/models/user.rb

validates_format_of :login, :with => /^[a-z0-9_\-@\.]*$/i

to

validates_format_of :login, :with => /^[a-z0-9_ äüöéßÄÜÖ\-@\.]*$/iu

which suits my needs very well.

Please let me know, if this is a good idea.


journals

Upgrading to redmine 1.2.2 I created a patch for app/models/user.rb, which allows german umlauts and accent d'aigu in login names. The regexp pattern is extended with unicode quoted characters, so it should run also without requiring cp1232 or such.

Could you please integrate this into official redmine versions?
--------------------------------------------------------------------------------
+1
I ran into the same problem with 1.3.0 and used the same "hack" to fix it (I manually edited user.rb).
Why hasn't this patch been incorporated?
Why is that validation necessary, anyways?
--------------------------------------------------------------------------------
Just stumbled upon the same issue with danish characters. The name of this thread should maybe be changed to "national characters in login string" or something. Anyway the difference for me was that these national characters are not ASCII, and apparently the app/models/user.rb file in its unmodified form is ASCII encoded. So I needed to add the following code on the very top of the file:
<pre>
# -*- coding: utf-8 -*-
</pre>
otherwise it failed with an error (at least it did for me) when accessing Redmine.

--------------------------------------------------------------------------------
Well we encountered the same Problem. It would be great to have this enabled in the next release.
I currently disabled just the Loginname validation as we are using LDAP for our user management. But this way we just need to change some core code on every release to get this thing working.
--------------------------------------------------------------------------------
I just want to add myself as one more victim of this shortcoming. It's 2013 and we should be able to use proper usernames by now. Please consider to extend the allowable characters.
--------------------------------------------------------------------------------
I also just came across this issue where I was authenticating against LDAP.
This user had a german 'umlaut' in his user name and redmine always was rejecting a login with 'invalid user name'

The fix from Max Meier works for me in Redmine 2.6.3
So thanks to Max!
--------------------------------------------------------------------------------
It is not only login causing issues when containg umlauts.
I also get an Internal error
> An error occurred on the page you were trying to access.
> If you continue to experience problems please contact your Redmine administrator for assistance.
> If you are the Redmine administrator, check your log files for details about the error.
during account creation on first time login by LDAP.
This is also caused by umlauts in first name/Last name

account creation through normal register procedure is working, when first name/Last name contain umlauts.
--------------------------------------------------------------------------------
int redmine wrote:
> It is not only login causing issues when containg umlauts.
> I also get an Internal error

This is because of #21453.
--------------------------------------------------------------------------------
+1
I ran into the same problem with Redmine version 3.2.0 and successfully used the patch above to overcome the limitation I encountered.
I would appreciate if this issue could be addressed in a future version of Redmine.
--------------------------------------------------------------------------------
Here is a patch for r15144.
[:alnum:] covers umlauts.

<pre>
/\A[[:alnum:]_\-@\.]*\z/i
</pre>
--------------------------------------------------------------------------------

--------------------------------------------------------------------------------
More than 6 years later, I again ran into the same problem when updating my Redmine instance to version 4.2.4. Again, I successfully used the patch above to overcome the limitation I encountered.
I really would like to see this issue addressed in future Redmine versions.

Pleas note, that I'm not the only one, this "note":https://www.redmine.org/issues/35355#note-4

<pre>
https://www.redmine.org/issues/6166 is basically the same problem with german characters, but no one seems to be interested.
</pre>
--------------------------------------------------------------------------------
+1
--------------------------------------------------------------------------------


related_issues

relates,New,811,Username validation - allow spaces...
relates,Closed,21923,net-ldap 0.12.0 - 0.12.1 dropped support of UTF-8

Admin Redmine さんがほぼ2年前に更新

  • カテゴリAccounts / authentication_7 にセット

他の形式にエクスポート: Atom PDF

いいね!0
いいね!0