This action will delete this post on this instance and on all federated instances, and it cannot be undone. Are you certain you want to delete this post?
This action will delete this post on this instance and on all federated instances, and it cannot be undone. Are you certain you want to delete this post?
This action will block this actor and hide all of their past and future posts. Are you certain you want to block this actor?
This action will block this object. Are you certain you want to block this object?
Are you sure you want to delete the OAuth client [Client Name]? This action cannot be undone and will revoke all access tokens for this client.
Are you sure you want to revoke the OAuth token [Token ID]? This action cannot be undone and will immediately revoke access for this token.

As I want to have this account available under my "usual" handle already used for mail and jabber, I needed some kind of redirection. Other protocols have different methods to find out which server should be contacted to handle "@domainname.tld":
_xmpp-server._tcp IN SRV 5269 jabber.kro.hn. tells the client to reach out to jabber@kro.hn on port 5269 to reach *@kro.hn accountsMastodon and other fediverse-implentations use the "webfinger" URL to obtain details about an account:
GET /.well-known/webfinger?resource=acct:felix@kro.hn
To create a redirect to ${HERE} there are the following possibilities:
cat .well-known/.htaccess
RewriteEngine On
RewriteBase /.well-known/webfinger
RewriteCond %{QUERY_STRING} ^resource=acct%3A@?[fF][eE][lL][iI][xX].* [OR]
RewriteCond %{QUERY_STRING} ^resource=acct:@?[fF][eE][lL][iI][xX].*
RewriteRule ^(.*)$ https://sozial.dezern.at/.well-known/webfinger?resource=acct:felix@sozial.dezern.at [R=301,L]