https://[bucket].[endpoint] ; true => https://[endpoint]/[bucket] public $s3Region = ''; // S3 region public $s3FolderName = ''; // Foldername within S3 (can be emtpy) public $s3EndPoint = null; // S3 EndPoint S3 Compatible (https://sfo2.digitaloceanspaces.com) /* Sessions */ public $sessionPassword = '3evBlq9zdUEuzKvVJHWWx3QzsQhturBApxwcws2m'; // Salting sessions. Replace with a strong password public $sessionExpiration = 28800; // How many seconds after inactivity should we logout? 28800seconds = 8hours /* Email */ public $email = ''; // Return email address public $useSMTP = false; // Use SMTP? If set to false, the default php mail() function will be used public $smtpHosts = ''; // SMTP host public $smtpAuth = true; // SMTP use user/password authentication public $smtpUsername = ''; // SMTP username public $smtpPassword = ''; // SMTP password public $smtpAutoTLS = true; // SMTP Enable TLS encryption automatically if a server supports it public $smtpSecure = ''; // SMTP Security protocol (usually one of: TLS, SSL, STARTTLS) public $smtpSSLNoverify = false; // SMTP Allow insecure SSL: Don't verify certificate, accept self-signed, etc. public $smtpPort = ''; // Port (usually one of 25, 465, 587, 2526) /* LDAP default settings (can be changed in company settings) */ public $useLdap = false; // Set to true if you want to use LDAP public $ldapType = 'OL'; // Select the correct directory type. Currently Supported: OL - OpenLdap, AD - Active Directory public $ldapHost = ''; // FQDN public $ldapPort = 389; // Default Port public $ldapDn = ''; // Location of users, example: CN=users,DC=example,DC=com // Default LDAP keys in your directory. // Works for OL public $ldapKeys = '{ "username":"uid", "groups":"memberof", "email":"mail", "firstname":"displayname", "lastname":"", "phone":"", "jobTitle":"title", "jobLevel":"level", "department":"department" }'; // For AD use /* public $ldapKeys = '{ "username":"cn", "groups":"memberof", "email":"mail", "firstname":"givenname", "lastname":"sn", "phone":"", "jobTitle":"title", "jobLevel":"level", "department":"department" }'; */ // Default role assignments upon first login. (Optional) Can be updated in user settings for each user public $ldapLtGroupAssignments = '{ "5": { "ltRole":"readonly", "ldapRole":"" }, "10": { "ltRole":"commenter", "ldapRole":"" }, "20": { "ltRole":"editor", "ldapRole":"" }, "30": { "ltRole":"manager", "ldapRole":"" }, "40": { "ltRole":"admin", "ldapRole":"" }, "50": { "ltRole":"owner", "ldapRole":"administrators" } }'; public $ldapDefaultRoleKey = 20; // Default Leantime Role on creation. (set to editor) }