chatmaild: allow echobot to receive unencrypted messages by default

This commit is contained in:
missytake
2025-04-11 15:07:38 +02:00
parent 15244f6462
commit b4af6df55c
2 changed files with 6 additions and 1 deletions

View File

@@ -58,7 +58,8 @@ class User:
if not self.addr.startswith("echo@"):
logging.error(f"could not write password for: {self.addr}")
raise
self.enforce_E2EE_path.touch()
if not self.addr.startswith("echo@"):
self.enforce_E2EE_path.touch()
def set_last_login_timestamp(self, timestamp):
"""Track login time with daily granularity