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 support for additional configuration options #271

Closed
wants to merge 10 commits into from

Commits on Jan 11, 2024

  1. Add three additional configuration options

    Adds support for additional configuration options.
    
    LDAP_AUTH_TLS_CA_CERTS_FILE
    LDAP_AUTH_TLS_VALIDATE_CERT
    LDAP_AUTH_TLS_CIPHERS
    LDAP_AUTH_ATTRIBUTES
    
    It may be wise to set the default of LDAP_AUTH_TLS_VALIDATE_CERT  to ssl.CERT_REQUIRED in the future, however this would be a breaking change.
    mmmduft committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    45d22ed View commit details
    Browse the repository at this point in the history
  2. Update README.rst

    Fix typo
    mmmduft committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    74075ae View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2024

  1. Remove unrequired import

    mmmduft committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    02aefba View commit details
    Browse the repository at this point in the history
  2. Handling empty attributes specified in LDAP_AUTH_SYNC_ATTRIBUTES

    Attributes listed in LDAP_AUTH_SYNC_ATTRIBUTES without values are returned as empty lists. Prevent IndexError
    mmmduft committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    923f51f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    10535db View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2024

  1. Update README.rst

    Add documentation for  LDAP_AUTH_TLS_CA_CERTS_FILE
    mmmduft committed Jan 14, 2024
    Configuration menu
    Copy the full SHA
    b789672 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Change handling of TLS validate .

    Do set validate=None when LDAP_AUTH_TLS_VALIDATE_CERT is not set.  Removed log message, as this may not be right place for configuration checks.
    mmmduft committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    4327331 View commit details
    Browse the repository at this point in the history
  2. Update tests.py

    Remove incorrect test.
    mmmduft committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    c7d204e View commit details
    Browse the repository at this point in the history
  3. Fixing README formatting

    etianen committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    7b18cb3 View commit details
    Browse the repository at this point in the history
  4. Fixing lints

    etianen committed Jan 15, 2024
    Configuration menu
    Copy the full SHA
    23a228e View commit details
    Browse the repository at this point in the history