mirror of
https://github.com/wheelybird/ldap-user-manager.git
synced 2025-04-04 16:26:06 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
ce92321285 | ||
|
41c5ac3626 |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.idea
|
||||
ldap-user-manager.iml
|
20
README.md
20
README.md
@ -182,6 +182,8 @@ To send emails you'll need to use an existing SMTP server. Email sending will b
|
||||
|
||||
* `SMTP_HOST_PORT` (default: *25*): The SMTP port on the SMTP server.
|
||||
|
||||
* `SMTP_HELO_HOST` (no default): The hostname to send with the HELO/EHLO command.
|
||||
|
||||
* `SMTP_USERNAME` (no default): The username to use when the SMTP server requires authentication.
|
||||
|
||||
* `SMTP_PASSWORD` (no default): The password to use when the SMTP server requires authentication.
|
||||
@ -208,6 +210,24 @@ To send emails you'll need to use an existing SMTP server. Email sending will b
|
||||
* `ACCOUNT_REQUESTS_EMAIL` (default: *{EMAIL_FROM_ADDRESS}*): This is the email address that any requests for a new account are sent to.
|
||||
|
||||
|
||||
#### Website customization
|
||||
|
||||
* `$CUSTOM_LOGO` (default: *FALSE*)*: If this is defined with path to image file, then this image will be displayed in header. You need also mount volume with this file.
|
||||
|
||||
* `$CUSTOM_STYLES` (default: *FALSE*)*: If this is defined with path to css file, then this style will be used in header. Also helps vith logo positioninig. You need also mount volume with this file.
|
||||
|
||||
docker-compose.yml example:
|
||||
|
||||
```yaml
|
||||
ldap-user-manager:
|
||||
environment:
|
||||
CUSTOM_LOGO: "../gfx/logo.svg"
|
||||
CUSTOM_STYLES: "../css/custom.css"
|
||||
volumes:
|
||||
- '/opt/openldap/www/gfx:/opt/ldap_user_manager/gfx'
|
||||
- '/opt/openldap/www/css:/opt/ldap_user_manager/css'
|
||||
```
|
||||
|
||||
#### Debugging settings
|
||||
|
||||
* `LDAP_DEBUG` (default: *FALSE*): Set to TRUE to increase the logging level for LDAP requests. This will output passwords to the error log - don't enable this in a production environment. This is for information on problems updating LDAP records and such. To debug problems connecting to the LDAP server in the first place use `LDAP_VERBOSE_CONNECTION_LOGS`.
|
||||
|
@ -134,6 +134,7 @@
|
||||
$SMTP['user'] = (getenv('SMTP_USERNAME') ? getenv('SMTP_USERNAME') : NULL);
|
||||
$SMTP['pass'] = (getenv('SMTP_PASSWORD') ? getenv('SMTP_PASSWORD') : NULL);
|
||||
$SMTP['port'] = (getenv('SMTP_HOST_PORT') ? getenv('SMTP_HOST_PORT') : 25);
|
||||
$SMTP['helo'] = (getenv('SMTP_HELO_HOST') ? getenv('SMTP_HELO_HOST') : NULL);
|
||||
$SMTP['ssl'] = ((strcasecmp(getenv('SMTP_USE_SSL'),'TRUE') == 0) ? TRUE : FALSE);
|
||||
$SMTP['tls'] = ((strcasecmp(getenv('SMTP_USE_TLS'),'TRUE') == 0) ? TRUE : FALSE);
|
||||
if ($SMTP['tls'] == TRUE) { $SMTP['ssl'] = FALSE; }
|
||||
@ -168,6 +169,9 @@
|
||||
|
||||
# Sanity checking
|
||||
|
||||
$CUSTOM_LOGO = (getenv('CUSTOM_LOGO') ? getenv('CUSTOM_LOGO') : FALSE);
|
||||
$CUSTOM_STYLES = (getenv('CUSTOM_STYLES') ? getenv('CUSTOM_STYLES') : FALSE);
|
||||
|
||||
$errors = "";
|
||||
|
||||
if (empty($LDAP['uri'])) {
|
||||
|
@ -55,6 +55,10 @@ function send_email($recipient_email,$recipient_name,$subject,$body) {
|
||||
$mail->Host = $SMTP['host'];
|
||||
$mail->Port = $SMTP['port'];
|
||||
|
||||
if (isset($SMTP['helo'])) {
|
||||
$mail->Helo = $SMTP['helo'];
|
||||
}
|
||||
|
||||
if (isset($SMTP['user'])) {
|
||||
$mail->SMTPAuth = true;
|
||||
$mail->Username = $SMTP['user'];
|
||||
|
@ -247,7 +247,7 @@ function log_out($method='normal') {
|
||||
|
||||
function render_header($title="",$menu=TRUE) {
|
||||
|
||||
global $SITE_NAME, $IS_ADMIN, $SENT_HEADERS, $SERVER_PATH;
|
||||
global $SITE_NAME, $IS_ADMIN, $SENT_HEADERS, $SERVER_PATH, $CUSTOM_STYLES;
|
||||
|
||||
if (empty($title)) { $title = $SITE_NAME; }
|
||||
|
||||
@ -260,6 +260,7 @@ function render_header($title="",$menu=TRUE) {
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="<?php print $SERVER_PATH; ?>bootstrap/css/bootstrap.min.css">
|
||||
<?php if ($CUSTOM_STYLES) echo '<link rel="stylesheet" href="'.$CUSTOM_STYLES.'">' ?>
|
||||
<script src="<?php print $SERVER_PATH; ?>js/jquery-3.6.0.min.js"></script>
|
||||
<script src="<?php print $SERVER_PATH; ?>bootstrap/js/bootstrap.min.js"></script>
|
||||
</HEAD>
|
||||
@ -295,14 +296,15 @@ function render_menu() {
|
||||
#Render the navigation menu.
|
||||
#The menu is dynamically rendered the $MODULES hash
|
||||
|
||||
global $SITE_NAME, $MODULES, $THIS_MODULE, $VALIDATED, $IS_ADMIN, $USER_ID, $SERVER_PATH;
|
||||
global $SITE_NAME, $MODULES, $THIS_MODULE, $VALIDATED, $IS_ADMIN, $USER_ID, $SERVER_PATH, $CUSTOM_LOGO;
|
||||
|
||||
?>
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<a class="navbar-brand" href="#"><?php print $SITE_NAME ?></a>
|
||||
</div>
|
||||
<div class="navbar-header"><?php
|
||||
if ($CUSTOM_LOGO) echo '<span class="navbar-brand"><img src="'.$CUSTOM_LOGO.'" class="logo" alt="logo"></span>'
|
||||
?><a class="navbar-brand" href="./"><?php print $SITE_NAME ?></a>
|
||||
</div>
|
||||
<ul class="nav navbar-nav">
|
||||
<?php
|
||||
foreach ($MODULES as $module => $access) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user