mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
feat: prefix server-url in info
without the prefix, it looks as if it is part of the Message-ID, esp. if Message-ID is longer, a break on different delimiters may look exactly the same. see #6329 for some screenshots that initially confused me :)
This commit is contained in:
@@ -348,7 +348,7 @@ impl MsgId {
|
||||
let server_urls = Self::get_info_server_urls(context, msg.rfc724_mid).await?;
|
||||
for server_url in server_urls {
|
||||
// Format as RFC 5092 relative IMAP URL.
|
||||
ret += &format!("\n{server_url}");
|
||||
ret += &format!("\nServer-URL: {server_url}");
|
||||
}
|
||||
}
|
||||
let hop_info = self.hop_info(context).await?;
|
||||
|
||||
Reference in New Issue
Block a user