Is it possible to tag, private message (pm) or notify another user?

Is it possible to tag, private message (pm) or notify another user?



I looked around a bit but i was unable to find such a function, and with this question i wanted to verify if there really was no way or if i missed something obvious.

PS:
I do not intend to spam anyone. I only found someone (per chance) which is very likely to have a answer / solution to a question, and i would like to politly ask him if he could take a look and provide some feedback.
(Its about this Question: Is it planned to make the AppImage update method work?)

There’s no way to PM someone here on Ask site (the engine likely does not provide the functionality, or maybe disabled by admins…).

You may use the person’s name to notify the user though: using the user name prepended with @ - like @igorlius. This would make the usual red notification for that user; see Ask/Getting Started - The Document Foundation Wiki.

@mikekaganski: in an ancient post, a trick was given to resolve duplicates or prefix ambiguity but I don’t remember it. @igorlius tries to ring an Antonio Faccioli (user 29553 ) but there exists also an Antonio straight (user 2768) which seems to take precedence over the former. I tried to tweak the encoding with <a href="en/users/29553/…"> but I still get reference to user 2768. See comment in question 253483.

@ajlittoz: IIUC, there’s no workaround for the site’s problems with notifying wrong people. Or had you discovered the correct syntax? I wasn’t able to figure from the discussion what was the trick?

Basically, I looked at the generated HTML and tried variants. The problem is the space in the user name. When you write @not-user1, this translates to <a href="en/users/123/user">@not-user1</a>". The difficulty appears when a full name is used like Mike Kaganski. The technical username becomes mike-kaganski, i.e. all lowercase and space replaced by hyphen. But using it with a relative link does not work. You must code the link as absolute. And this is not sufficient. Typing @mikekaganski as the element content will point to user Mike despite the absolute link. The culprit is the space.

The solution is:

<a href="https://ask.libreoffice.org/u/lifewoutmilk">@first&nbsp;name</a>

Hovering over it points to the right user.

However I don’t know if this direct HTML triggers the notification system.

However I don’t know if this direct HTML triggers the notification system

As far as I understand, it does not. The hyperlink just creates a visible link; while the notification is created by the engine when parsing the @ + username part - which would be independent form the outer hyperlink iiuc.

Thank you @ajlittoz,

it was as simple as prefixing the username with an @ symbol.

Update:
If the username contains spaces it gets a bit tricky,

Please see the comments on this post on how to handle it.

I think the best way for a notification to reach the correct user is by copying their username, and pasting it after the @.