Merge branch 'master' into revert-macos-logic

This commit is contained in:
Casper 2022-03-09 10:39:15 +01:00 committed by GitHub
commit 45068ff2a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 25 additions and 23 deletions

View File

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: delete-old-branch needs: delete-old-branch
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Create contributors-update branch - name: Create contributors-update branch
uses: peterjgrainger/action-create-branch@v2.1.0 uses: peterjgrainger/action-create-branch@v2.1.0

View File

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive
@ -62,7 +62,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive
@ -97,13 +97,13 @@ jobs:
${{ runner.os }}-buildx- ${{ runner.os }}-buildx-
- name: Login to DockerHub - name: Login to DockerHub
uses: docker/login-action@v1.14.0 uses: docker/login-action@v1.14.1
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v1.14.0 uses: docker/login-action@v1.14.1
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}

View File

@ -26,7 +26,7 @@ jobs:
NETLIFY_SITE_PREFIX: pullrequest-${{ github.event.pull_request.number }} NETLIFY_SITE_PREFIX: pullrequest-${{ github.event.pull_request.number }}
NETLIFY_SITE_NAME: dms-doc-previews NETLIFY_SITE_NAME: dms-doc-previews
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v3
- name: 'Build with mkdocs-material via Docker' - name: 'Build with mkdocs-material via Docker'
working-directory: docs working-directory: docs

View File

@ -26,7 +26,7 @@ jobs:
name: 'Deploy Docs' name: 'Deploy Docs'
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v3
- name: 'Check if deploy is for a `v<major>.<minor>` tag version instead of `edge`' - name: 'Check if deploy is for a `v<major>.<minor>` tag version instead of `edge`'
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
@ -75,10 +75,10 @@ jobs:
needs: deploy needs: deploy
steps: steps:
- name: 'Checkout the tagged commit (shallow clone)' - name: 'Checkout the tagged commit (shallow clone)'
uses: actions/checkout@v2.4.0 uses: actions/checkout@v3
- name: 'Checkout the docs deployment branch to a subdirectory' - name: 'Checkout the docs deployment branch to a subdirectory'
uses: actions/checkout@v2.4.0 uses: actions/checkout@v3
with: with:
ref: gh-pages ref: gh-pages
path: gh-pages path: gh-pages

View File

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive
@ -31,13 +31,13 @@ jobs:
id: buildx id: buildx
- name: Login to DockerHub - name: Login to DockerHub
uses: docker/login-action@v1.14.0 uses: docker/login-action@v1.14.1
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v1.14.0 uses: docker/login-action@v1.14.1
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}

View File

@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.4 uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive

View File

@ -317,11 +317,11 @@ Defines who sends reports (if they are enabled).
##### LOGROTATE_INTERVAL ##### LOGROTATE_INTERVAL
Changes the interval in which a report is being sent. Changes the interval in which log files are rotated.
- **weekly** => Rotate weekly. - **weekly** => Rotate log files weekly
- daily => Rotate daily. - daily => Rotate log files daily
- monthly => Rotate monthly. - monthly => Rotate log files monthly
!!! note !!! note

View File

@ -233,17 +233,19 @@ REPORT_RECIPIENT=
# => Specify the sender address # => Specify the sender address
REPORT_SENDER= REPORT_SENDER=
# Changes the interval in which a report is being sent. # Changes the interval in which log files are rotated
# **weekly** => Send a report every week # **weekly** => Rotate log files weekly
# daily => Send a daily report # daily => Rotate log files daily
# monthly => Send a report every month # monthly => Rotate log files monthly
# #
# Note: This Variable actually controls logrotate inside the container # Note: This Variable actually controls logrotate inside the container
# and rotates the log depending on this setting. The main log output is # and rotates the log files depending on this setting. The main log output is
# still available in its entirety via `docker logs mail` (Or your # still available in its entirety via `docker logs mail` (Or your
# respective container name). If you want to control logrotation for # respective container name). If you want to control logrotation for
# the Docker-generated logfile see: # the Docker-generated logfile see:
# https://docs.docker.com/config/containers/logging/configure/ # https://docs.docker.com/config/containers/logging/configure/
#
# Note: This variable can also determine the interval for Postfix's log summary reports, see [`PFLOGSUMM_TRIGGER`](#pflogsumm_trigger).
LOGROTATE_INTERVAL=weekly LOGROTATE_INTERVAL=weekly
# Choose TCP/IP protocols for postfix to use # Choose TCP/IP protocols for postfix to use