Support URL: https://inbuxa.org in the IMAP ID response and README

This commit is contained in:
2026-09-18 11:03:30 -07:00
parent 189f688768
commit 5ce033e10c
3 changed files with 11 additions and 0 deletions
+2
View File
@@ -72,6 +72,8 @@ impl<T: SessionStream> Session<T> {
types::brand!(),
"\" \"version\" \"1.0.0\" \"vendor\" \"",
types::brand!(),
"\" \"support-url\" \"",
types::brand_url!(),
"\")\r\n"
)
.as_bytes()
+8
View File
@@ -37,3 +37,11 @@ macro_rules! brand_prodid {
concat!("-//", $crate::brand!(), "//", $crate::brand_server!(), "//EN")
};
}
/// The project's website, given to clients as the support URL (IMAP `ID`).
#[macro_export]
macro_rules! brand_url {
() => {
"https://inbuxa.org"
};
}