mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
fix to_header
This commit is contained in:
parent
8bb485997c
commit
5585173583
1 changed files with 2 additions and 2 deletions
|
@ -342,9 +342,9 @@ def handle_forward(envelope, smtp: SMTP, msg: Message, rcpt_to: str) -> str:
|
|||
if should_append_alias(msg, alias.email):
|
||||
LOG.d("append alias %s to TO header %s", alias, msg["To"])
|
||||
if msg["To"]:
|
||||
to_header = msg["To"] + "," + alias
|
||||
to_header = msg["To"] + "," + alias.email
|
||||
else:
|
||||
to_header = alias
|
||||
to_header = alias.email
|
||||
|
||||
add_or_replace_header(msg, "To", to_header)
|
||||
|
||||
|
|
Loading…
Reference in a new issue