As was suggested, I will rephrase my previous question, which is not confined in a coffin.
As @MartinScharrer rightly points out, I am asking how to optically align text at the margins after linebreaking, more specifically when you do not know in advance the content.
This is the case in templates, where the text is provided by a user.
Since TeX compose with boxes, the sidebearings are always there, but they become more noticeable when using large size fonts in title pages or posters.
Working with xelatex I solved this problem for single line sentences, but failed to do so with multiline paragraphs. (Again, text unknown in advance.)
Perfect alignment, single sentence, text unknown in advance.
Variable right gaps in a multiple line title.

The way I would like, (done by hand, known text)
\documentclass{article}
\RequirePackage{xcolor}
\RequirePackage{xstring}
%% scrapping sidebearing both L & R
\newcommand\shaveLR[1]{%
\if\relax\detokenize{#1}\relax\else% check empty
\StrLeft{#1}{1}[\tempi]% the first char
\StrRight{#1}{1}[\tempii]% the last char
\kern-\XeTeXglyphbounds1 \the\XeTeXcharglyph\expandafter`\tempi% first char L un-kernig
#1% input string
\kern-\XeTeXglyphbounds3 \the\XeTeXcharglyph\expandafter`\tempii% last char R un-kernig
\fi}
\newcommand{\hairlineiv}[1][green]{%
\leavevmode%
\kern-0.1pt %
\smash{\color{#1}\vrule height 4\baselineskip depth 5pt width 0.1pt}%
\kern-0.1pt}
\newcommand{\hairlinei}[1][red]{%
\leavevmode\kern-0.1pt %
\smash{\color{#1}\vrule height 35pt depth 15pt width 0.1pt}%
\kern-0.1pt}
\newcommand{\byauthor}{}
\newcommand{\longtitles}{}
\begin{document}
\pagestyle{empty}
\renewcommand{\byauthor}{Your Name} % put your name here
\renewcommand{\longtitles}{Long titles must be exactly align with the vertical green bar.}% the main title
%%%% examples
\newcommand{\thislongtitleR}{%
\shaveLR{Long titles must be}\\%
\shaveLR{exactly align with}\\%
\shaveLR{the vertical green}\\%
\shaveLR{bar.}}
\Large \flushright
Note the gap between\\ the red line and the 'e'.
\vspace{\baselineskip}
{\sffamily\fontsize{60}{60}\selectfont
by \byauthor\hairlinei}
\vspace{\baselineskip}
No gap here after\\ zeroing the kern.
\vspace{1\baselineskip}
{\sffamily\fontsize{60}{60}\selectfont
by \shaveLR{\byauthor}\hairlinei}
\vspace{2\baselineskip}
\newpage
\Large \flushright The way it is:
\vspace{1\baselineskip}
\begin{minipage}{1.3\textwidth}
\raggedleft\sffamily\fontsize{50}{60}\selectfont\bfseries \longtitles\hairlineiv\par
\end{minipage}
\vspace{2\baselineskip}
\Large \flushright The way it should be:
\vspace{1\baselineskip}
\begin{minipage}{1.3\textwidth}
\raggedleft\sffamily\fontsize{50}{60}\selectfont\bfseries \thislongtitleR\hairlineiv
\end{minipage}
\end{document}


xcoffins? They are after all the ones to implement your suggestions... – remco Apr 17 '18 at 18:52xcoffins, but rather a 'regular' question, then. I think it is important to point out that this site is not appropriate for feature requests and bug reports because it might not always reach the developer(s) (admittedly in this case the chances are not too bad). But I agree that if you strip the very first sentence and the last sentence before the enumeration of the questions, the question would be OK. – moewe Apr 18 '18 at 14:38