mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-08-04 18:15:29 +02:00
Final Migration Step (#6)
* first migration steps * altered issue templates * altered README * removed .travis.yml * adjusting registry & repository, Dockerfile and compose.env * Close stale issues automatically * Integrated CI with Github Actions (#3) * feat: integrated ci with github actions * fix: use secrets for docker org and update image * docs: clarify why we use -t if no tty exists * fix: correct remaining references to old repo chore: prettier automatically updated markdown as well * fix: hardcode docker org * change testing image to just testing * ci: add armv7 as a supported platform * finished migration steps * corrected linting in build-push action * corrected linting in build-push action (2) * minor preps for PR * correcting push on pull request and minor details * adjusted workflows to adhere closer to @wernerfred's diagram * minor patches * adjusting Dockerfile's installation of base packages * adjusting schedule for stale issue action * reverting license text * improving CONTRIBUTING.md PR text * Update CONTRIBUTING.md * a bigger patch at the end * moved all scripts into one directory under target/scripts/ * moved the quota-warning.sh script into target/scripts/ and removed empty directory /target/dovecot/scripts * minor fixes here and there * adjusted workflows for use a fully qualified name (i.e. docker.io/...) * improved on the Dockerfile layer count * corrected local tests - now they (actually) work (fine)! * corrected start-mailserver.sh to make use of defaults consistently * removed very old, deprecated variables (actually only one) * various smaller improvements in the end * last commit before merging #6 * rearranging variables to use alphabetic order Co-authored-by: casperklein <casperklein@users.noreply.github.com> Co-authored-by: Nick Pappas <radicand@users.noreply.github.com> Co-authored-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
parent
66422cbcb0
commit
189e5376cc
57 changed files with 1644 additions and 1671 deletions
73
.github/ISSUE_TEMPLATE/bug_report.md
vendored
73
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -1,20 +1,16 @@
|
|||
---
|
||||
name: "\U0001F41E Bug report"
|
||||
about: Create a report about a reproducible bug
|
||||
title: ''
|
||||
labels: bug, needs triage
|
||||
assignees: ''
|
||||
|
||||
title: "[BUG]"
|
||||
labels: area/bug, meta/needs triage, priority/medium
|
||||
assignees: ""
|
||||
---
|
||||
<!--- Provide a general summary of the issue in the Title above -->
|
||||
|
||||
<!-- Thanks for the bug report! -->
|
||||
|
||||
|
||||
<!---
|
||||
## Possible answers to you issue
|
||||
Possible answers to your issue
|
||||
|
||||
* ClamAV keeps restarting:
|
||||
https://github.com/tomav/docker-mailserver#requirements
|
||||
https://github.com/docker-mailserver/docker-mailserver#requirements
|
||||
|
||||
* Email seen as spam:
|
||||
https://github.com/tomav/docker-mailserver/wiki/Configure-SPF
|
||||
|
@ -34,53 +30,52 @@ assignees: ''
|
|||
https://github.com/tomav/docker-mailserver/wiki
|
||||
|
||||
* Open issues
|
||||
https://github.com/tomav/docker-mailserver/issues
|
||||
https://github.com/docker-mailserver/docker-mailserver/issues
|
||||
-->
|
||||
|
||||
# Bug Report
|
||||
|
||||
## Context
|
||||
<!--- Provide a more detailed introduction to the issue itself -->
|
||||
<!--- How has this issue affected you? What were you trying to accomplish? -->
|
||||
|
||||
### *What* is affected by this bug?
|
||||
<!--- Provide a general summary of the bug -->
|
||||
|
||||
### What is affected by this bug?
|
||||
|
||||
### When does this occur?
|
||||
|
||||
### *When* does this occur?
|
||||
|
||||
|
||||
## *How* do we replicate the issue?
|
||||
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
|
||||
<!--- reproduce this issue include code to reproduce, if relevant -->
|
||||
### How do we replicate the issue?
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
4.
|
||||
|
||||
## Actual Behavior
|
||||
<!--- Tell us what happens instead -->
|
||||
## Behavior
|
||||
|
||||
## Expected behavior (i.e. solution)
|
||||
<!--- Tell us what should happen -->
|
||||
### Actual Behavior
|
||||
|
||||
### Expected Behavior
|
||||
|
||||
## Your Environment
|
||||
|
||||
<!--- Include as many relevant details about the environment you experienced the issue in -->
|
||||
* Amount of RAM available:
|
||||
* Mailserver version used:
|
||||
* Docker version used:
|
||||
* Environment settings relevant to the config:
|
||||
* Any relevant stack traces ("Full trace" preferred):
|
||||
|
||||
<!---
|
||||
Please remember to format code using triple backticks (`) so that it is neatly formatted when the issue is posted.
|
||||
- version: `v`
|
||||
- available RAM: `GB`
|
||||
- Docker version: `v`
|
||||
|
||||
Spoilers are recommended for readability:
|
||||
<details>
|
||||
<summary>Click me to expand </summary>
|
||||
```sh
|
||||
echo "hello world"
|
||||
```
|
||||
</details>
|
||||
### Environment Variables
|
||||
|
||||
-->
|
||||
```CFG
|
||||
|
||||
```
|
||||
|
||||
### Relevant Stack Traces
|
||||
|
||||
<!-- Remember to format code using triple backticks (`) so that it is neatly formatted when the issue is posted. -->
|
||||
|
||||
```BASH
|
||||
# BEGIN
|
||||
|
||||
# END
|
||||
```
|
||||
|
|
40
.github/ISSUE_TEMPLATE/feature_request.md
vendored
40
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -1,42 +1,48 @@
|
|||
---
|
||||
name: "\U0001F389 Feature request"
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: feature request, needs triage
|
||||
title: '[FR]'
|
||||
labels: area/enhancement, kind/feature request, meta/needs triage, priority/low
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Is your feature request related to a problem?
|
||||
<!-- A clear and concise description of what the problem is. -->
|
||||
# Feature Request
|
||||
|
||||
## Context
|
||||
|
||||
|
||||
|
||||
## Describe the solution you'd like
|
||||
<!-- A clear and concise description of what you want to happen. -->
|
||||
### Is your Feature Request related to a Problem?
|
||||
|
||||
|
||||
|
||||
## Alternatives you've considered
|
||||
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
|
||||
### Describe the Solution you'd like
|
||||
|
||||
|
||||
|
||||
## Who will that feature be useful to?
|
||||
<!-- Is it solving a common problem, or is it an improvement that all current users will benefit from? -->
|
||||
### Are you going to implement it?
|
||||
|
||||
<!-- Select one, remove the other and do not shorten the sentence -->
|
||||
|
||||
Yes, because I know the probability of someone else doing it is low and I can learn from it.
|
||||
|
||||
## What have you done already?
|
||||
<!-- If you already built a prototype or a complete implementation of that feature, where is it possible to see it? -->
|
||||
No, and I understand that it is highly likely no one will implement it. Furthermore, I understand that this issue will likely become stale and will be closed.
|
||||
|
||||
|
||||
|
||||
## What are you going to contribute?
|
||||
<!-- Besides testing volunteering work made by other people, what are you going to contribute in order to help have that feature implemented, tested and documented? -->
|
||||
### What are you going to contribute??
|
||||
|
||||
|
||||
|
||||
## Additional context
|
||||
<!-- Add any other context about the feature request here. -->
|
||||
|
||||
### Alternatives you've considered
|
||||
|
||||
|
||||
|
||||
### Who will that Feature be useful to?
|
||||
|
||||
|
||||
|
||||
### What have you done already?
|
||||
|
||||
|
||||
|
|
26
.github/ISSUE_TEMPLATE/questions.md
vendored
26
.github/ISSUE_TEMPLATE/questions.md
vendored
|
@ -1,21 +1,27 @@
|
|||
---
|
||||
name: "❓ Question"
|
||||
name: "❓ Question / Other"
|
||||
about: Ask a question about docker-mailserver
|
||||
title: ''
|
||||
labels: question, needs triage
|
||||
labels: kind/question, priority/low, meta/help wanted, meta/needs triage
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Subject
|
||||
<!-- Select one, remove the others: -->
|
||||
# Subject
|
||||
|
||||
* [ ] I would like to contribute to the project (code, documentation, advocacy, integration, ...)
|
||||
* [ ] I would like some help for integrating this container with another service (rainloop, PostFWD, ...)
|
||||
* [ ] I would like to configure a not documented mail server use case
|
||||
* [ ] I would like some feedback concerning a use case
|
||||
* [ ] I have questions about TLS/SSL/STARTTLS/OpenSSL
|
||||
* [ ] Other
|
||||
<!-- Select one, remove the others -->
|
||||
|
||||
I would like to contribute to the project
|
||||
I would like to configure a not documented mail server use case
|
||||
I would like some feedback concerning a use case
|
||||
I have questions about TLS/SSL/STARTTLS/OpenSSL
|
||||
Other
|
||||
|
||||
## Description
|
||||
|
||||
<!-- When copy/pasting code, format the code with tripe backticks (`) ! -->
|
||||
|
||||
``` BASH
|
||||
# CODE GOES HERE
|
||||
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue