On 11/30/2015 01:22 PM, Dave Arndt wrote: > > I did not do the rebuild myself - but I would assume they just ran bin/arch > > How would the text re-appear if it was removed, as per step #1? > > in other words, How would the text still be in the file after removing > it, and it doesn't appear with grep?
If you have an existing HTML archive and the corresponding .mbox, and you run bin/arch without --wipe, every message in the mbox will be added to the HTML archive, but they won't be indexed because the Message-IDs are duplicates. For example if there are a total of 10 messages in the archive, the HTML messages will have names like 000000.html, 000001.html, ..., 000009.html. If you then run bin/arch without --wipe, you will add files 000010.html, 000011,html, ..., 000019.html which may or may not be a bit different if you modified the mbox. Now, when the archiver added say 000010.html, its Message-ID is the same as that of 000000.html, so it won't be indexed and the index will still point to 000000.html. The answer is if you want to rebuild and archive and not just add to it, you have to use --wipe to remove the existing HTML archive before adding. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
