User Tools

Site Tools


userdoc:lore

This is an old revision of the document!


Adding list archives to lore.kernel.org

We collect kernel archives on lore.kernel.org using software called public-inbox. While any mailing list that is used for Linux kernel development can qualify, we give priority to mailing lists served via vger.kernel.org.

Since vger.kernel.org has existed for over 20 years, there is one important caveat we require before adding an existing list to lore.kernel.org – you must provide as complete of an archive as possible. This wiki page describes the best procedure to follow.

Requesting archival of an existing list

  1. Send a request to helpdesk@kernel.org stating that you would like to have a mailing list added to lore.kernel.org.
  2. Wait till you receive a response, indicating that:
    1. Your request is approved
    2. We have subscribed the collector to the list and started collecting preliminary messages

Collecting archive donations

You will need to provide an as-complete-as-possible archive of list messages. If you have been subscribed to the list for a while, you can start with your own archives.

Exporting archives from GMail

If you've been subscribed to the list via GMail, it is very easy to collect the initial set of archives.

  1. Start by creating a label
    1. Gear→Settings
    2. Select the "Labels" tab
    3. Click "Add label"
    4. Give it a name like "export-[listname]"
  2. Switch to "Filters and blocked addresses" tab
    1. Click "Create a new filter"
    2. In the pop-up window, put the list address in the "To" field
      1. This is better than using the "List-Id" because that will exclude your own messages sent to that list
    3. Click the "Search" button to make sure this looks sane
    4. Click the dropdown arrow in the search field to bring up the popup again
    5. Choose "Create filter"
    6. Check the box "Apply the label"
      1. Choose the label you created in the previous step
      2. MAKE SURE you check "also apply filter to matching conversations"
    7. Click "Create filter"
    8. Wait till you get "Your filter was created" response (big lists will take a while)
  3. Go to Google's Data takeout
    1. Click "Select none" to uncheck everything
    2. Locate the "Mail" entry and enable it
    3. Click on "All mail" and choose "Select labels"
    4. Uncheck all labels except the one you created in the previous step
    5. Scroll to the bottom of the page and choose "Next"
    6. Choose the archive format you prefer (probably ".tar.gz")
    7. The maximum size doesn't really matter, so leave it at the default setting
    8. Choose "Send download link via email"
    9. Click "Create archive"

Wait till you receive the download link email (may take a while) and follow the instructions you receive. The archive should contain one or several files in .mbox format that you need. Extract them and proceed to the next section.

Sanitizing the archive

We provide a list-archive-maker script that will remove unnecessary headers from the mbox file and make sure that all messages in it belong to the mailing list.

  1. Download the list-archive-maker script:
    1. it should work with most versions of python3 and doesn't require special libraries
  2. Run it on any file in .mbox format to make a sanitized archive broken down by month

Example with linux-kernel-announce@vger.kernel.org:

mkdir ~/linux-kernel-announce
./list-archive-maker.py -s export-linux-kernel-announce.mbox \
    -e ~/linux-kernel-announce \
    -k ~/linux-kernel-announce-known-ids.txt \
    -l linux-kernel-announce.vger.kernel.org

This will sanitize the archives and put them into ~/linux-kernel-announce in your home directory.

Soliciting archives from others

Once you have your initial archive, you can solicit donated archives from others, who may have been subscribed to the list for longer, or have messages that did not get delivered to you for some reason.

You will need the know-ids.txt file from the previous step, to make sure that others don't send you messages you already have.

Send a message to the list, something like this (edit to your liking):

Hi, everyone:

I'm working to add this list to lore.kernel.org. As one of prerequisites
they require that we provide full existing archives of all list messages
(or, at least, as complete as possible). I've collected mine already, but 
would really appreciate if you could pitch in from your own collection.

Just follow the instructions on this page:
https://korg.wiki.kernel.org/userdoc/lore

I've attached the list of message-ids that I already have. You'll need it
during the archive sanitization process to pass to the -k switch.

Please tar up and xz -9 the resulting directory with mbox files and send 
the archive to me so I can add it to what I already have.

Thanks!

Merging multiple archives into one

If you receive any archives, you can merge them with what you already have using the same script. Make sure you're pointing at the same known-ids.txt file as the one you attached to the solicitation email, otherwise you will have unnecessary duplicate entries.

./list-archive-maker.py -s dir-with-mbox-files/* \
    -e ~/linux-kernel-announce \
    -k ~/linux-kernel-announce-known-ids.txt \
    -l linux-kernel-announce.vger.kernel.org

Send the archive to helpdesk

Once you've done your best collecting archives, tar them up and compress them:

tar full-archives.tar dir-with-mbox-files
xz -9 full-archives.tar

If the resulting file is smaller than a few MB, you can attach them to follow-up email to helpdesk@kernel.org. If the archive is larger than that, please upload it to a file sharing service, such as Google Drive:

  1. Upload the .tar.xz file to drive.google.com
  2. Right-click on the file name and choose "Get shareable link"
  3. Click on "Sharing settings" and make sure that it is set to "Anyone with the link"
  4. Paste the link in the email response to helpdesk@kernel.org.

The kernel.org administrators will combine the archive they receive from you with the messages they have pre-collected, to make sure there is no interruption between when your archive collection was completed and when public-inbox starts receiving new messages. You will be notified when the mailing list is ready to be accessed via lore.kernel.org.

userdoc/lore.1536870064.txt.gz · Last modified: 2018-09-13 20:21 by mricon