mirror of
https://github.com/mjl-/mox.git
synced 2025-01-14 01:06:27 +03:00
webmail: don't have two spaces between header and address(es) (e.g. for From/To)
because outlook.com will reformat the message and then fail to verify the message. proton.me also reformats and invalidates the dkim signature, but seemingly after it verifies the dkim signature.
This commit is contained in:
parent
1ccc5d0177
commit
80547df6ee
1 changed files with 1 additions and 1 deletions
|
@ -391,7 +391,7 @@ func (w Webmail) MessageSubmit(ctx context.Context, m SubmitMessage) {
|
|||
if v != "" && linelen+1+len(s) > 77 {
|
||||
v += "\r\n\t"
|
||||
linelen = 1
|
||||
} else {
|
||||
} else if v != "" {
|
||||
v += " "
|
||||
linelen++
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue