Another issue I've run into...
If an NNTP user has not provided a display name (at least in Outlook Express), the "From" field in his posts is "<name@domain.tld>" and the
from_name function in functions_nntp.php returns an empty string.
My workaround is to add this:
Code:
if(!$from_name)
$from_name = from_email($from_raw);
Just before this:
Then I made the email obfusication mods described here:
https://vborg.vbsupport.ru/showpost....&postcount=209
... so that only the "name" portion of the e-mail address is displayed.
Hopefully, the maintainer of this code can add this to the official version
David