I'm new on this forum and English is my second language. I apologize for my writing mistakes.
I was wondering if there is a way to filter incoming emails by its comment in customer information, or by ldap group. I have successfully connected customer backend ldap on my otrs. We have some OU on our AD and lots of Groups so I have to connect by OU and filter by mail address, I copy my Kernel/Config.pm:
Code: Select all
$Self->{CustomerUser} = {
Name => 'LDAP Data Source',
Module => 'Kernel::System::CustomerUser::LDAP',
Params => {
Host => 'ad.dominio.com',
BaseDN => 'ou=BAS,ou=Usuarios,dc=dominio,dc=com',
SSCOPE => 'sub',
UserDN => 'dominio\usuario',
UserPw => 'password',
AlwaysFilter => '(mail=*)',
SourceCharset => 'utf-8',
DestCharset => 'utf-8',
Params => {
port => 389,
timeout => 120,
async => 0,
version => 3,
},
},
$Self->{CustomerUser1} = {
Name => 'LDAP Data Source 2',
Module => 'Kernel::System::CustomerUser::LDAP',
Params => {
Host => 'ad.dominio.com',
BaseDN => 'ou=BAS,ou=Usuarios,dc=dominio,dc=com',
SSCOPE => 'sub',
UserDN => 'dominio\usuario',
UserPw => 'password',
AlwaysFilter => '(mail=*)',
SourceCharset => 'utf-8',
DestCharset => 'utf-8',
Params => {
port => 389,
timeout => 120,
async => 0,
version => 3,
},
},
I don't have an idea if its relevant or its just impossible to do it.
Thanks.
Marcelo