mirror of
https://github.com/chatmail/relay.git
synced 2026-05-21 05:18:04 +00:00
Compare commits
4 Commits
hpk/change
...
hpk/persis
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcd9d615d4 | ||
|
|
d820644f66 | ||
|
|
4e97e4dc3d | ||
|
|
92a27983be |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -1,22 +0,0 @@
|
|||||||
# Changelog for chatmail deployment
|
|
||||||
|
|
||||||
## unreleased
|
|
||||||
|
|
||||||
### Changes since March 15th, 2024
|
|
||||||
|
|
||||||
- Fix various tests to pass again with "cmdeploy test".
|
|
||||||
([#245](https://github.com/deltachat/chatmail/pull/245),
|
|
||||||
[#242](https://github.com/deltachat/chatmail/pull/242)
|
|
||||||
|
|
||||||
- Ensure lets-encrypt certificates are reloaded after renewal
|
|
||||||
([#244]) https://github.com/deltachat/chatmail/pull/244
|
|
||||||
|
|
||||||
- Persist tokens to avoid iOS users loosing push-notifications when the
|
|
||||||
chatmail metadata service is restarted (happens regularly during deploys)
|
|
||||||
([#238](https://github.com/deltachat/chatmail/pull/239)
|
|
||||||
|
|
||||||
- Fix failing sieve-script compile errors on incoming messages
|
|
||||||
([#237](https://github.com/deltachat/chatmail/pull/239)
|
|
||||||
|
|
||||||
- Fix quota reporting after expunging of old mails
|
|
||||||
([#233](https://github.com/deltachat/chatmail/pull/239)
|
|
||||||
@@ -359,13 +359,6 @@ def _configure_dovecot(config: Config, debug: bool = False) -> bool:
|
|||||||
mode="644",
|
mode="644",
|
||||||
)
|
)
|
||||||
need_restart |= sieve_script.changed
|
need_restart |= sieve_script.changed
|
||||||
if sieve_script.changed:
|
|
||||||
server.shell(
|
|
||||||
name=f"compile sieve script",
|
|
||||||
commands=[
|
|
||||||
f"/usr/bin/sievec /etc/dovecot/default.sieve"
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
files.template(
|
files.template(
|
||||||
src=importlib.resources.files(__package__).joinpath("dovecot/expunge.cron.j2"),
|
src=importlib.resources.files(__package__).joinpath("dovecot/expunge.cron.j2"),
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
require ["imap4flags"];
|
require ["imap4flags"];
|
||||||
|
|
||||||
# flag the message so it doesn't cause a push notification
|
|
||||||
|
|
||||||
if header :is ["Auto-Submitted"] ["auto-replied", "auto-generated"] {
|
if header :is ["Auto-Submitted"] ["auto-replied", "auto-generated"] {
|
||||||
addflag "$Auto";
|
addflag "$Auto";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user