Compare commits

..

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
71b1929755 chore: update upload-artifact from v6 to v7 for compatibility with download-artifact v8
Co-authored-by: nitnelave <796633+nitnelave@users.noreply.github.com>
2026-02-27 17:22:33 +00:00
copilot-swe-agent[bot]
59a11cd7ed Initial plan 2026-02-27 17:19:00 +00:00
dependabot[bot]
0513b28beb build(deps): bump actions/download-artifact from 7 to 8
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v7...v8)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '8'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-26 20:23:09 +00:00
3 changed files with 2 additions and 12 deletions

View File

@@ -520,7 +520,7 @@ jobs:
path: web
- name: Setup QEMU
uses: docker/setup-qemu-action@v4
uses: docker/setup-qemu-action@v3
- name: Setup buildx
uses: docker/setup-buildx-action@v3
with:

View File

@@ -108,7 +108,7 @@ jobs:
- name: Aggregate reports
run: cargo llvm-cov --no-run --lcov --output-path lcov.info
- name: Upload coverage to Codecov (main)
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v4
with:
files: lcov.info
fail_ci_if_error: true

View File

@@ -48,13 +48,3 @@ To integrate with LLDAP,
allow-invalid-certs = true
enable = false
```
## Email alias
If you want to enable [email aliases](https://stalw.art/docs/mta/inbound/rcpt/#catch-all-addresses), you have to create a new *User-defined attribute* under *User schema* of type string. Currently, LLDAP doesn't support multi-value filters. If you want multiple aliases, you will have to create multiple attributes (`mailAlias1`, `mailAlias2`, ..., `mailAliasN`), where `N` is the maximum number of aliases an account will have.
You also need to change your ldap filter for emails.
```toml
[directory.ldap.filter]
# Add one clause per alias attribute you created (example: mailAlias1..mailAlias3)
email = "(&(objectclass=person)(|(mail=?)(mailAlias1=?)(mailAlias2=?)(mailAlias3=?)))"
```