Search found 6 matches

by sigmapie
28 Jan 2009, 20:10
Forum: General Discussion
Topic: MD5 & LDAP using to auth
Replies: 1
Views: 2309

Re: MD5 & LDAP using to auth

by sigmapie
28 Jan 2009, 20:04
Forum: Help
Topic: LDAP
Replies: 2
Views: 2030

Re: LDAP

No, no data loss will occur as long as the LDAP username and the mantis username are the exact same. The users will not even notice the difference.

If the LDAP username is different than your mantis one, you can go into mantis and alter the username of users.
by sigmapie
31 Oct 2008, 23:05
Forum: Help
Topic: Mantis SSL with Gmail
Replies: 2
Views: 8421

Re: Mantis SSL with Gmail

They fixed this in the 1.2.x stream, so the email_api.php file in that ticket will NOT work for 1.1.2. If you would like to use it in 1.1.2 you must edit your email_api.php file. At line 781, add the following: if ( ! is_blank( config_get( 'smtp_connection_mode' ) ) ) { $mail->SMTPSecure = config_ge...
by sigmapie
08 Oct 2008, 20:31
Forum: Help
Topic: LDAP integration for Mantis
Replies: 6
Views: 9671

Re: LDAP integration for Mantis

In the config_inc.php, is where you put your LDAP settings. Here is a copy and paste (with some stuff added and passwords/domain changed of course) from my mantis setup. I am using LDAP. # LDAP $g_login_method = LDAP; $g_ldap_server = 'ldap://localhost'; # I'm pretty sure just 'localhost' works too ...
by sigmapie
08 Oct 2008, 20:26
Forum: Help
Topic: Trying to connect to a Active Directory using LDAP
Replies: 1
Views: 3840

Re: Trying to connect to a Active Directory using LDAP

I have not tried mantis with AD. But I think the $g_ldap_bind_dn = ''; is supposed to be a user name, and not a Distinguished Name. Maybe something like: $g_ldap_bind_dn = 'johndoe'; I know on regular LDAP $g_ldap_bind_dn is the full Distinguished Name: $g_ldap_bind_dn = 'cn=admin,dc=example,dc=com'...