I just rebuilt qmail-queue with the following lines in qmail-queue.c changed:
else
{
i = fmt_str(s,"by uid "); len += i; if (s) s += i;
i = fmt_ulong(s,uid); len += i; if (s) s += i;
}
to
else
{
i = fmt_str(s,"by user"); len += i; if (s) s += i;
/* i = fmt_ulong(s,uid); len += i; if (s) s += i; */
}
I think I am aware of the advantages and disadvantages of doing so. :)
I moved it into /var/qmail/bin, set the ownership and permissions, and
it seems to work fine.
I just would like to make sure I'm not breaking anything else in the
qmail roundup by changing this. From what I can tell, nothing else
depends on the format of this string. Can anyone tell me if I'm right?
Thanks.