مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2026-03-03 14:24:06 +00:00
Compare commits
7 الالتزامات
| المؤلف | SHA1 | التاريخ | |
|---|---|---|---|
|
|
d0591ee94a | ||
|
|
93cbe31082 | ||
|
|
48f6494240 | ||
|
|
e8e44f54b0 | ||
|
|
454d86734d | ||
|
|
7fd538d6c4 | ||
|
|
6dd6e29929 |
2
.github/workflows/ci.yml
مباع
2
.github/workflows/ci.yml
مباع
@@ -115,4 +115,4 @@ jobs:
|
||||
target: full
|
||||
build-args: |
|
||||
VERSION=${{ needs.release-please.outputs.version }}
|
||||
platforms: linux/amd64,linux/arm64/v8
|
||||
platforms: linux/amd64
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "3.0.0"
|
||||
".": "3.0.2"
|
||||
}
|
||||
|
||||
19
CHANGELOG.md
19
CHANGELOG.md
@@ -2,6 +2,25 @@
|
||||
|
||||
This file contains all the latest changes and updates to Postal.
|
||||
|
||||
## [3.0.2](https://github.com/postalserver/postal/compare/3.0.1...3.0.2) (2024-03-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* default to listening on all addresses when using legacy config ([48f6494](https://github.com/postalserver/postal/commit/48f6494240eb0374d5f865425b362e6f306b2653))
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* removing arm64 support until we can get a reasonable build pipeline sorted ([e8e44f5](https://github.com/postalserver/postal/commit/e8e44f54b09426c8a04e466bc037851a0833d124))
|
||||
|
||||
## [3.0.1](https://github.com/postalserver/postal/compare/3.0.0...3.0.1) (2024-03-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* fix issue with sending mail when smtp relays are configured ([6dd6e29](https://github.com/postalserver/postal/commit/6dd6e29929c70eaa8b9d3b33c184996b0b6abb82))
|
||||
|
||||
## [3.0.0](https://github.com/postalserver/postal/compare/2.3.2...3.0.0) (2024-03-04)
|
||||
|
||||
This version of Postal introduces a number of larger changes. Please be sure to follow the [upgrade guide](https://docs.postalserver.io/getting-started/upgrade-to-v3) when upgrading to Postal v3. Highlights include:
|
||||
|
||||
@@ -250,7 +250,7 @@ class SMTPSender < BaseSender
|
||||
SMTPClient::Server.new(relay.host, relay.port, ssl_mode: relay.ssl_mode)
|
||||
end.compact
|
||||
|
||||
@smtp_relays = hosts.empty? ? nil : hosts
|
||||
@smtp_relays = relays.empty? ? nil : relays
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -53,7 +53,7 @@ module Postal
|
||||
"gelf.facility" => -> (c) { c.dig("logging", "graylog", "facility") },
|
||||
|
||||
"smtp_server.default_port" => -> (c) { c.dig("smtp_server", "port") },
|
||||
"smtp_server.default_bind_address" => -> (c) { c.dig("smtp_server", "bind_address") },
|
||||
"smtp_server.default_bind_address" => -> (c) { c.dig("smtp_server", "bind_address") || "::" },
|
||||
"smtp_server.tls_enabled" => -> (c) { c.dig("smtp_server", "tls_enabled") },
|
||||
"smtp_server.tls_certificate_path" => -> (c) { c.dig("smtp_server", "tls_certificate_path") },
|
||||
"smtp_server.tls_private_key_path" => -> (c) { c.dig("smtp_server", "tls_private_key_path") },
|
||||
|
||||
المرجع في مشكلة جديدة
حظر مستخدم