Stalwart Mail Server is now just Stalwart
This commit is contained in:
10
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
10
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -1,12 +1,12 @@
|
||||
name: I think I found a bug
|
||||
description: File a bug report issue. If you have a question or are experiencing a problem, please start a [new discussion](https://github.com/stalwartlabs/mail-server/discussions/new?category=q-a) instead.
|
||||
description: File a bug report issue. If you have a question or are experiencing a problem, please start a [new discussion](https://github.com/stalwartlabs/stalwart/discussions/new?category=q-a) instead.
|
||||
title: "🐛: "
|
||||
labels: ["bug"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to fill out this bug report! Use this form only for reporting bugs. If you have a question or problem, please use the [Q&A discussion](https://github.com/stalwartlabs/mail-server/discussions/new?category=q-a).
|
||||
Thanks for taking the time to fill out this bug report! Use this form only for reporting bugs. If you have a question or problem, please use the [Q&A discussion](https://github.com/stalwartlabs/stalwart/discussions/new?category=q-a).
|
||||
- type: textarea
|
||||
id: what-happened
|
||||
attributes:
|
||||
@@ -31,9 +31,9 @@ body:
|
||||
label: Version
|
||||
description: What version of our software are you running?
|
||||
options:
|
||||
- v0.12.x
|
||||
- v0.11.x
|
||||
- v0.10.x
|
||||
- v0.9.x or lower
|
||||
- v0.10.x or lower
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
@@ -67,6 +67,7 @@ body:
|
||||
- Internal
|
||||
- SQL
|
||||
- LDAP
|
||||
- OIDC
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
@@ -75,6 +76,7 @@ body:
|
||||
- Linux
|
||||
- Docker
|
||||
- MacOS
|
||||
- NixOS
|
||||
- FreeBSD
|
||||
- Windows
|
||||
- type: textarea
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/config.yml
vendored
2
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -4,7 +4,7 @@ contact_links:
|
||||
url: https://stalw.art/docs/
|
||||
about: Read the documentation, use the search bar to find answers to your questions.
|
||||
- name: I have a question or problem not covered in the documentation
|
||||
url: https://github.com/stalwartlabs/mail-server/discussions/new?category=q-a
|
||||
url: https://github.com/stalwartlabs/stalwart/discussions/new?category=q-a
|
||||
about: Open a Q&A discussion
|
||||
- name: Join Stalwart's Reddit
|
||||
url: https://www.reddit.com/r/stalwartlabs
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
2
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
@@ -6,7 +6,7 @@ body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to fill out this feature request form! Use this form only for requesting new features. If you have a question or problem, please use the [Q&A discussion](https://github.com/stalwartlabs/mail-server/discussions/new?category=q-a).
|
||||
Thanks for taking the time to fill out this feature request form! Use this form only for requesting new features. If you have a question or problem, please use the [Q&A discussion](https://github.com/stalwartlabs/stalwart/discussions/new?category=q-a).
|
||||
- type: textarea
|
||||
id: request
|
||||
attributes:
|
||||
|
||||
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@@ -311,10 +311,10 @@ jobs:
|
||||
- name: Build
|
||||
run: |
|
||||
rustup target add ${{matrix.target}}
|
||||
cargo build --release --target ${{matrix.target}} -p mail-server --no-default-features --features "sqlite postgres mysql rocks elastic s3 redis azure nats enterprise"
|
||||
cargo build --release --target ${{matrix.target}} -p stalwart --no-default-features --features "sqlite postgres mysql rocks elastic s3 redis azure nats enterprise"
|
||||
cargo build --release --target ${{matrix.target}} -p stalwart-cli
|
||||
mkdir -p artifacts
|
||||
mv ./target/${{matrix.target}}/release/stalwart-mail.exe ./artifacts/stalwart-mail.exe
|
||||
mv ./target/${{matrix.target}}/release/stalwart.exe ./artifacts/stalwart.exe
|
||||
mv ./target/${{matrix.target}}/release/stalwart-cli.exe ./artifacts/stalwart-cli.exe
|
||||
|
||||
- name: Upload Artifacts
|
||||
@@ -349,17 +349,17 @@ jobs:
|
||||
# Get latest FoundationDB installer
|
||||
curl --retry 5 -Lso foundationdb.pkg "$(gh api -X GET /repos/apple/foundationdb/releases --jq '.[] | select(.prerelease == false) | .assets[] | select(.name | test("${{startsWith(matrix.target, 'x86') && 'x86_64' || 'arm64'}}" + ".pkg$")) | .browser_download_url' | head -n1)"
|
||||
sudo installer -allowUntrusted -dumplog -pkg foundationdb.pkg -target /
|
||||
cargo build --release --target ${{matrix.target}} -p mail-server --no-default-features --features "foundationdb elastic s3 redis nats enterprise"
|
||||
cargo build --release --target ${{matrix.target}} -p stalwart --no-default-features --features "foundationdb elastic s3 redis nats enterprise"
|
||||
mkdir -p artifacts
|
||||
mv ./target/${{matrix.target}}/release/stalwart-mail ./artifacts/stalwart-mail-foundationdb
|
||||
mv ./target/${{matrix.target}}/release/stalwart ./artifacts/stalwart-foundationdb
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
rustup target add ${{matrix.target}}
|
||||
cargo build --release --target ${{matrix.target}} -p mail-server --no-default-features --features "sqlite postgres mysql rocks elastic s3 redis azure nats enterprise"
|
||||
cargo build --release --target ${{matrix.target}} -p stalwart --no-default-features --features "sqlite postgres mysql rocks elastic s3 redis azure nats enterprise"
|
||||
cargo build --release --target ${{matrix.target}} -p stalwart-cli
|
||||
mkdir -p artifacts
|
||||
mv ./target/${{matrix.target}}/release/stalwart-mail ./artifacts/stalwart-mail
|
||||
mv ./target/${{matrix.target}}/release/stalwart ./artifacts/stalwart
|
||||
mv ./target/${{matrix.target}}/release/stalwart-cli ./artifacts/stalwart-cli
|
||||
|
||||
- name: Upload Artifacts
|
||||
|
||||
Reference in New Issue
Block a user