[MOD] Use <pre>, be a little more stringent on oID

This commit is contained in:
LDA 2024-07-23 18:36:30 +02:00
commit 9e34ffe665
4 changed files with 10 additions and 9 deletions

View file

@ -211,7 +211,7 @@ ParseeGetBridgedUserI(ParseeData *data, XMLElement *stanza, char *force)
if (!is_chat)
{
has_anon = ServerHasXEP421(data, xmpp_from);
is_anon = has_anon;// && StrEquals(xmpp_from, decode_from);
is_anon = has_anon && StrEquals(xmpp_from, decode_from);
}
if (is_anon || force)

View file

@ -74,7 +74,12 @@ PEPVCardEvent(PEPManager *m, XMLElement *stanza, XMLElement *item)
AddURIField(vcard, "url", REPOSITORY);
AddURIField(vcard, "url", "https://kappach.at/parsee");
AddTextField(vcard, "note", "This is the Parsee user account.");
AddTextField(vcard,
"note",
"This is the Parsee system account. " "\n"
"Admins may execute ad-hoc commands through this "
"account."
);
}
else
{