search for: newmbox

Displaying 1 result from an estimated 1 matches for "newmbox".

Did you mean: newbox
2003 Dec 17
0
Patch to fix vmail.cgi forwarding problem
...ng messages with vmail.cgi. Bug submitted with patch on bugs.digium.com. -sb --- /usr/src/asterisk/vmail.cgi.orig 2003-12-17 14:21:47.000000000 -0500 +++ /usr/src/asterisk/vmail.cgi 2003-12-17 15:07:36.000000000 -0500 @@ -672,7 +672,7 @@ sub message_copy() { - my ($mbox, $oldfolder, $old, $newmbox, $new) = @_; + my ($mbox, $newmbox, $oldfolder, $old, $new) = @_; my $oldfile, $newfile; return if ($mbox eq $newmbox); @@ -788,7 +788,7 @@ # print header; foreach $msg (@msgs) { # print "Forwarding $msg from $mbox to $newmbox<BR>\n"; - &message_copy($context, $...