Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Nightly MassChecks by Uploading your Corpora


Corpus uploads are not used anymore due to resource and privacy reasons.


How to participate in NightlyMassCheck runs by uploading your email.

If you rsync up your corpus to our server, as described here, it can be mass-checked there. Unfortunately you have to share your mail corpus with whoever might have access to that machine. It's not expected that anyone will ever actually look, but it's there nonetheless. If you are very concerned about privacy, you may be advised to strip out the more private mails before uploading, or mass-check on your own machine instead

The uploaded corpora on Buildbot

There are two ways to perform MassChecks on HandClassifiedCorpora; one, by downloading the SpamAssassin SVN trunk to your machine and running them locally, and two, by uploading your corpora to "buildbot", our mass-check server, as described in this document.

It is possible to mass-check these corpora nightly ; results also at http://bbmass.spamassassin.org:8011/ .

...

No Format
/home/bbmass/uploadedcorpora/WHO/TYPE/FOLDER

"WHO" is the person who submitted it via rsync, e.g. "doc", "jm", "zmi".your username.

Under that, we have "TYPE", which is either "ham" or "spam".

...

How to get your corpus up there

This is done via rsync.

Give somebody on the PMC a shout, since they have privileges to create an rsync area for you to upload stuff to. The easiest way is to mail the dev list. (If you're on the PMC, just SSH in and copy over a tarball yourself! or create yourself an rsync account using a random password.)

Send an email to private@spamassassin.apache.org requesting an rsync account for uploading corpora.

They'll send you a username and password. You Once they've done this, they'll send you the username and password; you can then sync your files like so:

No Format
  export RSYNC_PASSWORD=$YOURPASS
  rsync -vr /path/to/your/files \
      rsync://$YOURUSER@rsync.spamassassin.org/mailcorpus_$YOURUSER

...

It's important that you have 2 dirs in the /path/to/your/files directory,
ham and spam. Any files ending in .mbox inside those dirs will be treated as UNIX mbox-format files; any other files will be treated as individual messages (one message per file).

...

Uploaded corpora are not considered public knowledge. The people with accounts on that machine should treat the uploaded messages responsibly, and respect the uploader's privacy. If you are concerned about the privacy of these messages, you may be advised to remove the more private mails before uploading, or mass-check on your own machine instead.

...

How we create a new rsync area for someone to upload corpora

...

Some stuff for PMC people hacking on this...

...

No Format
[mailcorpus_CORPUSUSER]
        path = /home/bbmass/uploadedcorpora/CORPUSUSER
        read only = false
        auth users = CORPUSUSER
        secrets file = /home/corpus-rsync/secrets
        incoming chmod = a+r


No Format
CORPUSUSER="[username you want to give out]"
cd /home/bbmass/uploadedcorpora/
mkdir $CORPUSUSER
chmod 1777 $CORPUSUSER
#PERMISSIONS CHANGED ON NEW SPAMASSASSIN-VM BOX
chown rsync.rsync $CORPUSUSER

Then create a random password string, and add a line to /home/corpus-rsync/secrets with $CORPUSUSER and that password.

...