Author: rabbi
Date: 2004-01-21 01:47:21 +0100 (Wed, 21 Jan 2004)
New Revision: 710
Modified:
trunk/Mix/COPYRIGHT
trunk/Mix/HISTORY
trunk/Mix/Install
trunk/Mix/README
trunk/Mix/Src/buffers.c
trunk/Mix/Src/chain.c
trunk/Mix/Src/chain1.c
trunk/Mix/Src/chain2.c
trunk/Mix/Src/compress.c
trunk/Mix/Src/config.h
trunk/Mix/Src/crypto.c
trunk/Mix/Src/crypto.h
trunk/Mix/Src/dllmain.c
trunk/Mix/Src/keymgt.c
trunk/Mix/Src/mail.c
trunk/Mix/Src/maildir.c
trunk/Mix/Src/main.c
trunk/Mix/Src/menu.c
trunk/Mix/Src/menu.h
trunk/Mix/Src/menunym.c
trunk/Mix/Src/menusend.c
trunk/Mix/Src/menuutil.c
trunk/Mix/Src/mime.c
trunk/Mix/Src/mix.c
trunk/Mix/Src/mix.h
trunk/Mix/Src/mix3.h
trunk/Mix/Src/mpgp.c
trunk/Mix/Src/nym.c
trunk/Mix/Src/pgp.c
trunk/Mix/Src/pgp.h
trunk/Mix/Src/pgpcreat.c
trunk/Mix/Src/pgpdata.c
trunk/Mix/Src/pgpdb.c
trunk/Mix/Src/pgpget.c
trunk/Mix/Src/pool.c
trunk/Mix/Src/random.c
trunk/Mix/Src/rem.c
trunk/Mix/Src/rem1.c
trunk/Mix/Src/rem2.c
trunk/Mix/Src/remailer.c
trunk/Mix/Src/rfc822.c
trunk/Mix/Src/rndseed.c
trunk/Mix/Src/stats.c
trunk/Mix/Src/util.c
trunk/Mix/conf/dest.alw
trunk/Mix/conf/mix.cfg.ex
trunk/Mix/mixmaster.1
Log:
Updated copyright dates, doc issues, misc fixes.
Modified: trunk/Mix/COPYRIGHT
===================================================================
--- trunk/Mix/COPYRIGHT 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/COPYRIGHT 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,3 +1,10 @@
+Copyright (c) 1999-2004 Anonymizer Inc.
+Copyright (c) 2000-2002 Ulf Moeller
+Copyright (c) 2001-2002 Janis Jagars
+Copyright (c) 2001-2004 Peter Palfrader
+Copyright (c) 2001-2003 Len Sassaman
+
+
MIXMASTER LICENSE AGREEMENT
1. Grant of License.
Modified: trunk/Mix/HISTORY
===================================================================
--- trunk/Mix/HISTORY 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/HISTORY 2004-01-21 00:47:21 UTC (rev 710)
@@ -392,9 +392,10 @@
Drop messages without timestamps and messages with
future timestamps. This abandons backwards
compatibility with Mixmaster 2.0.3 and earlier.
- Try to detect timeskews and refuse to run as a
- remailer if there is a problem suspected. Only
- applies to mixmaster in remailer mode.
+ Mixmaster attempts to detect system clock
+ misconfigurations and refuses to run as a
+ remailer if there is a problem suspected.
+ Only applies to Mixmaster in remailer mode.
BUG FIXES:
@@ -431,6 +432,8 @@
well.
Messages to more than one remailer are dropped.
Nym support is not compiled in by default anymore.
+ The OpenPGP module mpgp now includes a man
+ page (contributed by Trek).
Ignore 'No reliable remailers' problems when
randhopping messages in middleman mode.
That is better than dropping them.
@@ -444,4 +447,3 @@
If the total number of hops (which cannot be
known) exceeds 20 the message is damanged
and will fail at the 20th node.
-
Modified: trunk/Mix/Install
===================================================================
--- trunk/Mix/Install 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Install 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,5 +1,5 @@
#!/bin/sh
-# Mixmaster version 3.0 -- (C) 1999-2003 Anonymizer Inc. and others.
+# Mixmaster version 3.0 -- (C) 1999-2004 Anonymizer Inc. and others.
# Mixmaster may be redistributed and modified under certain conditions.
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
@@ -225,6 +225,9 @@
##########################################################################
umask 077
+#FIXME -- Mixmaster now should be installed as root, and Install should
+#create a remailer user. /var/spool/mixmaster is a good home.
+
if [ `whoami` = root ]
then
echo "Please create a new user, e.g, \`mix', and install Mixmaster under that
@@ -347,7 +350,7 @@
echo "You can either compile your secret passphrase into the binary
or you can set it in your config file. Note that the former does not
really increase security as the passphrase can still be discovered by
-running something like \`strings mix'."
+running something like \`strings mixmaster'."
echo ""
echo "Most users should answer \`n' to this question:"
echo ""
@@ -976,11 +979,15 @@
fi
fi
- echo "How many messages do you want to keep in the reordering pool?
-A larger pool is more secure, but also causes higher latency.
-0 means to remail immediately."
- readln "Pool size:" 20
- poolsize=$ans
+# Commented the poolsize question out, since poolsize is the least
+# important of the three pool parameters.
+#
+# echo "How many messages do you want to keep in the reordering pool?
+#A larger pool is more secure, but also causes higher latency.
+#0 means to remail immediately."
+# readln "Pool size:" 20
+# poolsize=$ans
+poolsize=25
mbox=
if [ -f ~/.forward ]
@@ -1055,11 +1062,11 @@
MID $mid
# Remailing strategy:
-SENDPOOLTIME 1h
+SENDPOOLTIME 10m
POOLSIZE $poolsize
-RATE 95
-INDUMMYP 20
-OUTDUMMYP 67
+RATE 30
+INDUMMYP 3
+OUTDUMMYP 10
IDEXP 7d
PACKETEXP 7d
@@ -1138,7 +1145,10 @@
umask 033
# Set .forward?
+#
set=y
+# FIXME -- Mixmastger should run in daemon mode, not from procmail
+# Make the Install script do that.
if grep procmail ~/.forward >/dev/null 2>/dev/null
then
@@ -1188,6 +1198,9 @@
fi
fi
+#FIXME -- we need a second script that can re-generate help files
+# when the conf changes.
+
if [ "$RMA" != "" ]
then
echo "
Modified: trunk/Mix/README
===================================================================
--- trunk/Mix/README 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/README 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,5 +1,5 @@
-Mixmaster version 3 -- anonymous remailer software -- (C) 1999 Anonymizer Inc.
-------------------------------------------------------------------------------
+Mixmaster 3.0 -- anonymous remailer software -- (C) 1999 - 2004 Anonymizer Inc.
+-------------------------------------------------------------------------------
PREVIEW VERSION --- WARNING: THIS SOFTWARE IS UNDER DEVELOPMENT!
@@ -51,7 +51,7 @@
Mixmaster uses lists of currently operating remailers and information
about their reliability. You can get the current remailer lists from
-http://stats.melontraffickers.com/ and http://anon.efga.org/ and via
+http://stats.melontraffickers.com/ and http://www.noreply.org/ and via
finger from nym.alias.net:
pubring.asc Type 1 remailer keys
Modified: trunk/Mix/Src/buffers.c
===================================================================
--- trunk/Mix/Src/buffers.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/buffers.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/chain.c
===================================================================
--- trunk/Mix/Src/chain.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/chain.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/chain1.c
===================================================================
--- trunk/Mix/Src/chain1.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/chain1.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/chain2.c
===================================================================
--- trunk/Mix/Src/chain2.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/chain2.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/compress.c
===================================================================
--- trunk/Mix/Src/compress.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/compress.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/config.h
===================================================================
--- trunk/Mix/Src/config.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/config.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/crypto.c
===================================================================
--- trunk/Mix/Src/crypto.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/crypto.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/crypto.h
===================================================================
--- trunk/Mix/Src/crypto.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/crypto.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/dllmain.c
===================================================================
--- trunk/Mix/Src/dllmain.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/dllmain.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/keymgt.c
===================================================================
--- trunk/Mix/Src/keymgt.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/keymgt.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mail.c
===================================================================
--- trunk/Mix/Src/mail.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mail.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/maildir.c
===================================================================
--- trunk/Mix/Src/maildir.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/maildir.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,3 +1,14 @@
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
+
+ Mixmaster may be redistributed and modified under certain conditions.
+ This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ ANY KIND, either express or implied. See the file COPYRIGHT for
+ details.
+
+ Maildir support routines
+ $Id: $ */
+
+
/* Maildir support for Mixmaster 3 - see
http://www.qmail.org/man/man5/maildir.html and
http://cr.yp.to/proto/maildir.html
@@ -2,3 +13,4 @@
- Added by drt@... - http://c0re.jp/
+ Added by and (C) 2001 Doobee R. Tzeck
+ drt@... - http://c0re.jp/
Modified: trunk/Mix/Src/main.c
===================================================================
--- trunk/Mix/Src/main.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/main.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/menu.c
===================================================================
--- trunk/Mix/Src/menu.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/menu.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/menu.h
===================================================================
--- trunk/Mix/Src/menu.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/menu.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/menunym.c
===================================================================
--- trunk/Mix/Src/menunym.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/menunym.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/menusend.c
===================================================================
--- trunk/Mix/Src/menusend.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/menusend.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/menuutil.c
===================================================================
--- trunk/Mix/Src/menuutil.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/menuutil.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mime.c
===================================================================
--- trunk/Mix/Src/mime.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mime.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mix.c
===================================================================
--- trunk/Mix/Src/mix.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mix.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mix.h
===================================================================
--- trunk/Mix/Src/mix.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mix.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mix3.h
===================================================================
--- trunk/Mix/Src/mix3.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mix3.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/mpgp.c
===================================================================
--- trunk/Mix/Src/mpgp.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/mpgp.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,9 +1,14 @@
-/* Test application for OpenPGP features */
+/* mpgp version 0.3.0 -- (C) 2000 - 2004 Ulf Moeller and others.
-/* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
+ mpgp may be redistributed and modified under certain conditions.
+ This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
ANY KIND, either express or implied. See the file COPYRIGHT for
- details. */
+ details.
+ Test application for OpenPGP features
+ $Id: mpgp.c $ */
+
+
#include "mix3.h"
#include "pgp.h"
#include <stdlib.h>
Modified: trunk/Mix/Src/nym.c
===================================================================
--- trunk/Mix/Src/nym.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/nym.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgp.c
===================================================================
--- trunk/Mix/Src/pgp.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgp.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgp.h
===================================================================
--- trunk/Mix/Src/pgp.h 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgp.h 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgpcreat.c
===================================================================
--- trunk/Mix/Src/pgpcreat.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgpcreat.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgpdata.c
===================================================================
--- trunk/Mix/Src/pgpdata.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgpdata.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgpdb.c
===================================================================
--- trunk/Mix/Src/pgpdb.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgpdb.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pgpget.c
===================================================================
--- trunk/Mix/Src/pgpget.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pgpget.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/pool.c
===================================================================
--- trunk/Mix/Src/pool.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/pool.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/random.c
===================================================================
--- trunk/Mix/Src/random.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/random.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/rem.c
===================================================================
--- trunk/Mix/Src/rem.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/rem.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/rem1.c
===================================================================
--- trunk/Mix/Src/rem1.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/rem1.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/rem2.c
===================================================================
--- trunk/Mix/Src/rem2.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/rem2.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/remailer.c
===================================================================
--- trunk/Mix/Src/remailer.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/remailer.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/rfc822.c
===================================================================
--- trunk/Mix/Src/rfc822.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/rfc822.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/rndseed.c
===================================================================
--- trunk/Mix/Src/rndseed.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/rndseed.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/stats.c
===================================================================
--- trunk/Mix/Src/stats.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/stats.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/Src/util.c
===================================================================
--- trunk/Mix/Src/util.c 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/Src/util.c 2004-01-21 00:47:21 UTC (rev 710)
@@ -1,4 +1,4 @@
-/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
+/* Mixmaster version 3.0 -- (C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
Modified: trunk/Mix/conf/dest.alw
===================================================================
--- trunk/Mix/conf/dest.alw 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/conf/dest.alw 2004-01-21 00:47:21 UTC (rev 710)
@@ -29,7 +29,6 @@
/@blackhole\.riot\.eu\.org$/
/@nym\.cryptofortress\.com$/
/@nym\.xganon\.com$/
-/@nym\.frogadmin\.yi\.org$/
/@rodent\.frell\.eu\.org$/
Modified: trunk/Mix/conf/mix.cfg.ex
===================================================================
--- trunk/Mix/conf/mix.cfg.ex 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/conf/mix.cfg.ex 2004-01-21 00:47:21 UTC (rev 710)
@@ -75,13 +75,13 @@
## Remailing strategy:
MAILINTIME 5m
-SENDPOOLTIME 1h
-POOLSIZE 20
-RATE 95
+SENDPOOLTIME 10m
+POOLSIZE 25
+RATE 30
## Dummy generation probabilities
-INDUMMYP 10
-OUTDUMMYP 30
+INDUMMYP 3
+OUTDUMMYP 10
## How long to store packet IDs and incomplete message parts
IDEXP 7d
Modified: trunk/Mix/mixmaster.1
===================================================================
--- trunk/Mix/mixmaster.1 2004-01-21 00:00:22 UTC (rev 709)
+++ trunk/Mix/mixmaster.1 2004-01-21 00:47:21 UTC (rev 710)
@@ -1058,7 +1058,7 @@
.BR procmail (1),
.BR sendmail (8).
.SH COPYRIGHT
-(C) 1999 Anonymizer Inc.
+(C) 1999 - 2004 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
ANY KIND, either express or implied. See the file COPYRIGHT for
|