Skip to content

Commit

Permalink
Feat: E-Mail support (and boy is it pretty, IMO)
Browse files Browse the repository at this point in the history
Feat: Password forgotten support
TODO: Password forgotten -> Force password change
  • Loading branch information
TobiasDeBruijn committed Dec 30, 2024
1 parent 6a8bc0e commit ddfe7a2
Show file tree
Hide file tree
Showing 29 changed files with 1,463 additions and 57 deletions.
10 changes: 10 additions & 0 deletions email_banner.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div class="banner">
<table>
<tr>
<td>
<img src="https://public.svsticky.nl/logos/logo_compact_outline_wit.png" height="40" width="80" alt="Logo"
title="Logo" style="display:block;" />
</td>
</tr>
</table>
</div>
7 changes: 6 additions & 1 deletion sample_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@
},
"oidc_signing_key": "../test_oidc_key.pem",
"oidc_public_key": "../test_oidc_key.pem.pub",
"oidc_issuer": "http://localhost:2521"
"oidc_issuer": "http://localhost:2521",
"email": {
"smtp": "smtp-relay.gmail.com",
"from": "Wilford <[email protected]>",
"banner_file": "../email_banner.hbs"
}
}
7 changes: 6 additions & 1 deletion sample_config_docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@
},
"oidc_signing_key": "/test_oidc_key.pem",
"oidc_public_key": "/test_oidc_key.pem.pub",
"oidc_issuer": "http://localhost:2521"
"oidc_issuer": "http://localhost:2521",
"email": {
"smtp": "smtp-relay.gmail.com",
"from": "Wilford <[email protected]>",
"banner_file": "../email_banner.hbs"
}
}
Loading

0 comments on commit ddfe7a2

Please sign in to comment.