mirror of
https://github.com/chatmail/relay.git
synced 2026-06-10 05:31:08 +00:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a91aa39ec1 | |||
| 3a50d82657 | |||
| c640087498 | |||
| 2089f3ab58 | |||
| cbaa6924c1 | |||
| 6ab3e9657d | |||
| 16f237dc60 | |||
| 554c33423f | |||
| 5d5e2b199c | |||
| 989ce70f97 | |||
| f5dc4cb71e | |||
| 76512dfa2d | |||
| 850112502f | |||
| 888fa88aa3 | |||
| 15e7458666 | |||
| 0a93c76e66 | |||
| 312f86223c | |||
| 27a60418ad | |||
| 46d31a91da | |||
| a8765d8847 | |||
| 8ee6ca1b80 | |||
| 1a2b73a862 | |||
| c44f4efced |
+5
-2
@@ -1,8 +1,11 @@
|
|||||||
# Changelog for chatmail deployment
|
# Changelog for chatmail deployment
|
||||||
|
|
||||||
## unreleased
|
## 1.1.0 - 2024-03-28
|
||||||
|
|
||||||
### Changes since March 15th, 2024
|
### The changelog starts to record changes from March 15th, 2024
|
||||||
|
|
||||||
|
- Move systemd unit templates to cmdeploy package
|
||||||
|
([#255](https://github.com/deltachat/chatmail/pull/255))
|
||||||
|
|
||||||
- Persist push tokens and support multiple device per address
|
- Persist push tokens and support multiple device per address
|
||||||
([#254](https://github.com/deltachat/chatmail/pull/254))
|
([#254](https://github.com/deltachat/chatmail/pull/254))
|
||||||
|
|||||||
@@ -110,7 +110,9 @@ def _install_remote_venv_with_chatmaild(config) -> None:
|
|||||||
remote_venv_dir=remote_venv_dir,
|
remote_venv_dir=remote_venv_dir,
|
||||||
mail_domain=config.mail_domain,
|
mail_domain=config.mail_domain,
|
||||||
)
|
)
|
||||||
source_path = importlib.resources.files("chatmaild").joinpath(f"{fn}.service.f")
|
source_path = importlib.resources.files(__package__).joinpath(
|
||||||
|
"service", f"{fn}.service.f"
|
||||||
|
)
|
||||||
content = source_path.read_text().format(**params).encode()
|
content = source_path.read_text().format(**params).encode()
|
||||||
|
|
||||||
files.put(
|
files.put(
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Chatmail Postfix BeforeQeue filter
|
Description=Chatmail Postfix before queue filter
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart={execpath} {config_path}
|
ExecStart={execpath} {config_path}
|
||||||
Reference in New Issue
Block a user