|
|
OK, this one is a really simple fix in mailer.c which fixes a problem with forward; basically, inside of
the iDirt mailer, you cannot forward any message numbered 10 or higher. This is easily corrected though.
In mailer.c, look for the function send_forward. In the function you should find a line, near the
beginning, which reads like:
if (param[pos] == '\0' || pos >= strlen (buffer)) {
Change the line to read like:
if (param[pos] == '\0' || pos >= sizeof (buffer)) {
Yep, that's it. Since the buffer is empty, the strlen of the buffer is going to always return as 0, so it
exits out pretty fast.
|