LDAP clients - searching with national chars

Moderator: crythias

Locked
andy17d
Znuny newbie
Posts: 78
Joined: 30 Jan 2014, 15:27
Znuny Version: 4.0.19
Location: Poland
Contact:

LDAP clients - searching with national chars

Post by andy17d »

Hello
I use LDAP to storage clients data. When I create a new ticket by "new phone ticket" I can type begining of name client and otrs begin to search match clients.
My language is polish. My charset is UTF-8.
In whole otrs polish chars are showed corrected.
Unfortunately searching doesn't work when I type client's name contains polish char.
What can I do to enable this option?
OTRS 4.0.19/6.0.26, openSUSE 12, MySQL 5.5

KodIT Usługi Informatyczne - Odzyskiwanie danych Poznań - Serwis Komputerowy
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: LDAP clients - searching with national chars

Post by crythias »

What version, what OS?
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
andy17d
Znuny newbie
Posts: 78
Joined: 30 Jan 2014, 15:27
Znuny Version: 4.0.19
Location: Poland
Contact:

Re: LDAP clients - searching with national chars

Post by andy17d »

OTRS 3.0.10, OpenSuse 12
OTRS 4.0.19/6.0.26, openSUSE 12, MySQL 5.5

KodIT Usługi Informatyczne - Odzyskiwanie danych Poznań - Serwis Komputerowy
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: LDAP clients - searching with national chars

Post by crythias »

Some documentation might help. Check the charsets.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
andy17d
Znuny newbie
Posts: 78
Joined: 30 Jan 2014, 15:27
Znuny Version: 4.0.19
Location: Poland
Contact:

Re: LDAP clients - searching with national chars

Post by andy17d »

LDAP's charset is UTF8.

Fragment of my config.pl

Code: Select all

$Self->{CustomerUser} = {
                Name => 'LDAP Backend',
                Module => 'Kernel::System::CustomerUser::LDAP',
                Params => {
                        Host => 'xxxx.xxx.xxx.xxx',
                        BaseDN => 'dc=xxx,dc=xxx,dc=xxx',
                        SSCOPE => 'sub',
                        UserDN => 'cn=xxx,ou=xxx,dc=xxx,dc=xxx,dc=xxx',
                        UserPw => 'xxx',
                        AlwaysFilter => '',
                        SourceCharset => 'utf-8',
                        DestCharset => 'utf-8',
                        Params => {
                                port => 389,
                                timeout => 120,
                                async => 0,
                                version => 3,
                        },
                },
OTRS 4.0.19/6.0.26, openSUSE 12, MySQL 5.5

KodIT Usługi Informatyczne - Odzyskiwanie danych Poznań - Serwis Komputerowy
Locked