Ok, looking through previous messages I found that this problem has already
been spotted. Try the patch below. If the mailer mangles the formatting you
should still be able to apply changes by hand:
--------------------------------------------------------------------------------------------------------
diff -ur webui.old/cgi-bin/dspam.cgi webui/cgi-bin/dspam.cgi
--- webui.old/cgi-bin/dspam.cgi 2006-06-01 15:14:14.000000000 -0400
+++ webui/cgi-bin/dspam.cgi 2007-03-26 13:05:54.288962984 -0400
@@ -698,7 +698,7 @@
}
open(FILE, "<$MAILBOX");
while(<FILE>) {
- chomp;
+ s/\r?\n//;
push(@buffer, $_);
}
close(FILE);
@@ -759,7 +759,7 @@
open(FILE, "<$MAILBOX");
while(<FILE>) {
- chomp;
+ s/\r?\n//;
push(@buffer, $_);
}
close(FILE);
@@ -839,7 +839,7 @@
open(FILE, "<$MAILBOX");
while(<FILE>) {
- chomp;
+ s/\r?\n//;
push(@buffer, $_);
}
close(FILE);
@@ -907,7 +907,7 @@
}
open(FILE, "<$MAILBOX");
while(<FILE>) {
- chomp;
+ s/\r?\n//;
push(@buffer, $_);
}
close(FILE);
@@ -980,7 +980,7 @@
$rowclass="rowEven";
open(FILE, "<$MAILBOX");
while(<FILE>) {
- chomp;
+ s/\r?\n//;
if ($_ ne "") {
if ($mode eq "") {
if ($_ =~ /^From /) {
---------------------------------------------------------------------------------------------------------
Quoting Lance Cotton <[EMAIL PROTECTED]>:
> on 3/23/2007 12:43 PM Sunando Sen said the following:
>> There seems to be a serious problem in 3.8.0 unofficial. I cannot
>> view, deliver or delete individual messages in the quarantine. But
>> "delete all" works. Dropping down to 3.8.0 CVS version fixed the
>> problem:
>
> I am also seeing this problem with the 3.8.0 unofficial release. Are
> we the only ones?
>
> The viewmessage page shows an empty textarea box where the message
> would be and "Deliver" button does not work.
>
> -Lance
>
> --
> Lance Cotton
> Conference Management Services
> College Station, TX
> +1-979-846-6800
> [EMAIL PROTECTED]
>
> !DSPAM:4607d90a221342009769694!
>
>
>
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.