Skip to content
Snippets Groups Projects
Select Git revision
  • 30ff3ccb145def2b1ff498bcd4b068528f7e5a98
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2507-aims
  • Issue/2431-fixesInNotificationFooter
  • Issue/2309-docs
  • Hotfix/2354-emailNotificationPID
  • Issue/2263-changeMailingDomain
  • Issue/2158-emailServicedesk
  • Issue/1910-MigrationtoNET6.0
  • Sprint/2022-01
  • Sprint/2021-23
  • Issue/1746-ApplicationProfileStoringMethod
  • Sprint/2021-08
  • Product/202-userInvitation
  • Topic/1453-userInvitation
  • Sprint/2021-04
  • Product/789-userContactEmail
  • Topic/1294-contactChangeFunctionality
  • Sprint/2021-03
  • v2.7.0
  • v2.6.0
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.0
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.0
  • v1.6.0
  • v1.5.0
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.0
37 results

NotificationConfiguration.Test.csproj

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    config.py.example 612 B
    DEBUG = True
    SQLITE_DB = "db/db.sqlite"
    SECRET_KEY = "jsue51SlySVPpg1ClE4ogVpjw0mljJjxYZdR2nGfKa5UvbIUe7Eumy2iRBcMASMl"
    MAX_CONTENT_LENGTH = 4*1024*1024
    ACTIVATE_LDAP = False
    LDAP_SERVER = "ldaps://ldap.example.org/"
    LDAP_BINDSTRING_USER = "cn={},dc=foo,dc=example,dc=org"
    LDAP_GROUPS = "ou=groups,dc=foo,dc=example,dc=org"
    LDAP_GROUP_FILTER = "(cn=some_group)"
    LDAP_GROUP_MEMBERS_ATTRIBUTE = "memberCn"
    ADMIN_USERNAME = ""
    ADMIN_PASSWORD = ""
    ACTIVATE_SMTP = False
    SMTPSERVER = "mail.example.org"
    BASIC_AUTH_USERNAME = ""
    BASIC_AUTH_PASSWORD = ""
    BASIC_AUTH_FORCE = False
    URL_PREFIX = "/"
    
    
    # vim: et ts=4 sw=4