ScriptMakeInboxInvisible
From 40tude Dialog Wiki
Thanks go out to Eggs Zachtly for this script. It's purpose is to make Inboxes invisible for those of us that don't use them.
program OnNewsgroupListPaint;
function OnNewsgroupListPaint(PaintString:widestring;ColumnIndex:integer):widestring;
begin
paintstring := StringReplace(paintstring,'Inbox','',[rfReplaceAll])
result:=paintstring;
end;