Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add use_tls, ssl, version etc to valid LDAP options in Scenario.pm #95

Merged
merged 1 commit into from
Oct 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib/Sympa/Scenario.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1805,7 +1805,9 @@ sub _load_ldap_configuration {
return;
}

my @valid_options = qw(host suffix filter scope bind_dn bind_password);
my @valid_options = qw(host suffix filter scope bind_dn bind_password
use_tls ssl_version ssl_ciphers ssl_cert ssl_key
ca_verify ca_path ca_file);
my @required_options = qw(host suffix filter);

my %valid_options = map { $_ => 1 } @valid_options;
Expand Down