64f21d5b84
1478: Allow to enforce TLS for outbound r=mergify[bot] a=micw using OUTBOUND_TLS_LEVEL=encrypt (default is 'may') ## What type of PR? enhancement ## What does this PR do? Add an option to postfix to enforce outbound traffic to be TLS encrypted. ## Prerequistes Before we can consider review and merge, please make sure the following list is done and checked. If an entry in not applicable, you can check it or remove it from the list. - [x] In case of feature or enhancement: documentation updated accordingly - [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/guide.html#changelog) entry file. 1501: In setup/flavor, change DMARC RUA and RUF email default settings r=mergify[bot] a=ofthesun9 ## What type of PR? bug-fix ## What does this PR do? This PR changes the default value used to set DMARC_RUA and DMARC_RUF: DMARC_RUA and DMARC_RUF defaults will reuse the value defined for POSTMASTER, instead of 'admin' as previously. Please note that the setup tool doesn't allow (yet?) to define dmarc_rua nor dmarc_ruf, so the default value is indeed used for the time being. ### Related issue(s) closes #1463 ## Prerequistes - [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/guide.html#changelog) entry file. 1532: Replace SMPT with SMTP r=mergify[bot] a=dhoppe 1543: Disable Health checks on swarm mode r=mergify[bot] a=ofthesun9 ref: https://github.com/moby/moby/issues/35451 ## What type of PR? bug-fix ## What does this PR do? Modify the docker-compose.yml template used by setup (swarm flavor) to disable Health checks on swarm mode for each service ### Related issue(s) closes #1289 ## Prerequistes - [x] add [changelog](https://mailu.io/master/contributors/guide.html#changelog) entry file. Co-authored-by: Michael Wyraz <michael@wyraz.de> Co-authored-by: ofthesun9 <olivier@ofthesun.net> Co-authored-by: Dennis Hoppe <github@debian-solutions.de> |
5 years ago | |
---|---|---|
.. | ||
flavors | 5 years ago | |
static | 6 years ago | |
templates | 5 years ago | |
.env | 6 years ago | |
Dockerfile | 5 years ago | |
README.md | 6 years ago | |
docker-compose.yml | 6 years ago | |
main.py | 7 years ago | |
requirements.txt | 6 years ago | |
server.py | 6 years ago |
README.md
Adding more flavors/steps
(Everything will go under setup/ directory - using Kubernetes flavor as example)
Until this point, the app is working as it follows:
- when accesing the setup page it will display the flavors selection step (
templates/steps/flavor.html
) - after you choose your desired flavor it will iterare over the files in the flavor directory and building the page
(
templates/steps/config.html is general for all flavors
) - when you complete all required fields and press "Setup Mailu" button it will redirect you to the setup page (
flavors/choosen-flavor/setup.html
)
To add a new flavor you need to create a directory under templates/steps/
in which you are adding actual steps.
Eg: Adding a WIP step we'll create templates/steps/kubernetes/wip.html
Note that wizard.html is iterating over files in this directory and building the page. Files are prefixed with a number for sorting purposes.
wip.html will start with
{% call macros.panel("info", "Step X - Work in progress") %}
and end with
{% endcall %}
You store variable from front-page using the name attribute inside tag.
In the example below the string entered in the input field is stored in the variable named var_test
<input type="text" name="var_test">
In order to user the variable furter you use it like {{ var_test }}
In the setup page (flavors/kubernetes/setup.html
) you cand add steps by importing macros
{% import "macros.html" as macros %}
and start and end every step with
{% call macros.panel("info", "Step X - Title") %}
-------------------
{% endcall %}
Generating a file
Create the file template in flavors/kubernetes/
(eg. file.txt) in which you save your variables
ROOT = {{ root }}
MY_VAR = {{ var_test }}
When you submit to Setup Mailu the file will be generated. In order to get the file add the following command to setup.html
<p>curl {{ url_for('.file', uid=uid, filepath='file.txt', _external=True) }} > file.txt</p>