Skip to content
Snippets Groups Projects
Commit 20883e44 authored by rswindell's avatar rswindell
Browse files

Bugfix: multiple messages per area could not be exported since we were removing

the servers from the area line for each message. Using a copy of the area line.
parent 684c5ab2
No related branches found
No related tags found
No related merge requests found
...@@ -159,9 +159,10 @@ for(i in area) { ...@@ -159,9 +159,10 @@ for(i in area) {
delete hdr.thread_next; delete hdr.thread_next;
delete hdr.thread_first; delete hdr.thread_first;
while(area[i].length) { /* For each list server... */ var listservers = area[i];
while(listservers.length) { /* For each list server... */
listserv=area[i].shift(); listserv=listservers.shift();
/* Address message to list server e-mail address */ /* Address message to list server e-mail address */
hdr.to_net_addr = listserv; hdr.to_net_addr = listserv;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment