forked from merkinmuffley/mixmaster4096
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmixmaster.1
1144 lines (1137 loc) · 27.1 KB
/
mixmaster.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.TH MIXMASTER 1 "Mixmaster Version 3.1 alpha"
.\" $Id$
.SH NAME
mixmaster \- anonymous remailer software
.SH SYNOPSIS
.B mixmaster
[\fB\-hpmdSvT\fR]
[\fB\-t \fIuser@host\fR]
[\fB\-g \fInewsgroup\fR]
[\fB\-s \fIsubject\fR]
[\fB\-a \fIfilename\fR]
[\fB\-l \fImix1,mix2,mix3,...\fR]
[\fB\-c \fInum\fR]
[\fIuser@host\fR]
[\fIfilename\fR]
.PP
.B mixmaster
[\fB\-f\fR[\fBrfg\fR] \fIfilename\fR]
.PP
.B mixmaster \fR[\fB\-RGKSP\fR]
.SH DESCRIPTION
Mixmaster is an anonymous remailer. Remailers provide protection
against traffic analysis and allow sending mail anonymously or
pseudonymously.
.PP
In the non-interactive mode, Mixmaster reads a message from its
standard input or from a file. Destination address and input file can
be specified in the command line. If no address is given in the
command line, the input file is expected to contain a message complete
with mail headers.
.SH OPTIONS
.TP
.B "\-h, \-\-help"
Print a summary of command line options.
.TP
.B "\-V, \-\-version"
Print version information.
.TP
.B "\-\-about"
Print authorship and copyright information.
.TP
.B "\-\-config=\fIfilename"
Read configuration from an alternate file.
.TP
.B "\-t, \-\-to=\fIuser@host"
Add the destination address(es) to the message header. The input file
contains the message body without headers.
.TP
.B "\-g, \-\-post-to=\fInewsgroup"
Add the newsgroup(s) to the message header. The input file
contains the message body without headers.
.TP
.B
\-p, \-\-post
Post the message to Usenet.
.TP
.B
\-m, \-\-mail
Send the message as electronic mail. (This is the default.)
.TP
.B "\-s, \-\-subject=\fIsubject"
Add the
.I subject
to the message header.
.TP
.B "\-\-header=\fI'Header: text'
Add the header line to the message header.
.TP
.B "\-a, \-\-attachment=\fIfilename"
Attach
.I file
to the message.
.TP
.B \-\-encrypt
Encrypt the message using the OpenPGP format.
.TP
.B \-\-sign
Sign the message using the OpenPGP format.
.TP
.B "\-l, \-\-chain=\fImix1,mix2,mix3,..."
Use this remailer chain to send the message. Alternatively, the input
message may contain a pseudo-header
.BR Chain: .
If no chain is specified, Mixmaster will use a chain of four random
remailers.
.TP
.B "\-T, \-\-type\-list"
Display the contents of the
.BR type2.list
file.
.TP
.B "\-c, \-\-copies=\fInum"
Send
.I num
copies of the message to increase reliability.
.TP
.B \-d, \-\-dummy
Generate a dummy message as protection against traffic analysis.
.TP
.B \-S, \-\-send
Send the message(s) from the pool.
.TP
.B \-v, \-\-verbose
Output informational messages.
.TP
.B "\-f\fR [\fIfile\fR]"
Read a mail folder or news article. This function requires ncurses support.
.TP
.B "\-fr\fR [\fIfile\fR]"
Reply to a message.
.TP
.B "\-ff\fR [\fIfile\fR]"
Post a follow-up to a message.
.TP
.B "\-fg\fR [\fIfile\fR]"
Send a group reply to a message.
.TP
.B "\-\-update-pinger-list"
Download an updated all pingers list file.
.TP
.B "\-\-update-stats\fI[=source\fR]"
Download updated stats.
.SS Remailer options:
.TP
.B \-R, \-\-read\-mail
Read a remailer message from standard input and store it in the pool.
.TP
.B \-I, \-\-store\-mail
Read a remailer message from standard input and store it in the pool
without decrypting it immediately. It will be processed the next time
Mixmaster processes the queue (called with \fP-M\fP or in daemon mode).
.TP
.B \-P, \-\-pop-mail
Read mail from the POP3 servers listed in
.BR pop3.cfg .
.TP
.B \-M, \-\-remailer
Check if it is time to perform the regular remailer actions:
Send messages from the pool, get mail from POP3 servers and keep the
internal files up\-to\-date.
.TP
.B \-D, \-\-daemon
Detach from the console and process the pool, get mail and update the
internal files at regular intervals.
.TP
.B \-\-no-detach
Run as daemon but do not detach from the terminal (This option is
only useful together with \fB--daemon\fP).
.TP
.B -G, \-\-generate\-key
Generate a new remailer key. RSA key sizes 1024, 2048, 3072 and 4096 are possible (--size=2048).
Key lifetime in days may be specified (--lifetime=ndays). Expired secret keys are
automatically deleted next time mixmaster runs. Size 4096 is best then 1024; the
other sizes have no advantages.
.TP
.B \-K, \-\-update\-keys
Generate remailer keys if necessary.
.TP
.B \-S, \-\-send
Force sending the message(s) from the pool.
.TP
.B \-\-install\-svc
Install the Mixmaster Service on Win32.
.TP
.B \-\-remove\-svc
Remove the Mixmaster Service on Win32.
.TP
.B \-\-run\-svc
Run the Mixmaster Service on Win32.
.TP
.B \-\-redirect
Read a Mixmaster packet from stdin and route it through a chain given with
.B \-\-no\-ask\-passphrase
Do not ask for the remailer passphrase even if we don't have it compiled in,
don't have it in the config file, don't have it in the environment and we are
on a tty.
\fB\-\-chain\fP.
Note that this may corrupt the packet if there is not enough space in the
headers (that is, if there are more than 20 hops total). This function is
not normally needed but may come in handy in certain cases.
.SH CONFIGURATION
Mixmaster reads its configuration from the file
.B mix.cfg
in its working directory. The configuration file consists of lines of
the type
.PP
.I VARIABLE values
.PP
and of comments, which begin with a
.B #
character. The variables have reasonable default values, but it is
useful to create a configuration file using the
.B Install
script when setting up a remailer.
.PP
All configuration variables can be overridden from the command line,
e.g.
.B mixmaster -S --POOLSIZE=0 --RATE=100
will send all messages currently in the message pool.
.SS Client configuration:
.TP
.B ADDRESS
Your address for sending non-anonymous messages.
.TP
.B NAME
Your real name (used for sending non-anonymous messages).
.TP
.B MAILtoNEWS
Address of a mail-to-news gateway. Default:
.BR mail2news@nym.alias.net .
.TP
.B CHAIN
Default chain for anonymous messages to be sent.
.B CHAIN
is a comma-separated list of remailer names or addresses.
A
.B *
represents a random reliable remailer. Default:
.BR *,*,*,* .
.TP
.B NUMCOPIES
Number of redundant copies of an anonymous message to be
sent, unless specified otherwise on the command line.
Default:
.BR 1 .
.TP
.B DISTANCE
When selecting random remailers, the chain will contain
.I DISTANCE
other remailers between two occurrences of the
same remailer in the chain. Default:
.BR 2 .
.TP
.B MINREL
Only select remailers with a reliability of at least
.IR MINREL %.
Default:
.BR 98 .
.TP
.B RELFINAL
Only select a remailer with a reliability of at least
.IR RELFINAL %
as the final remailer. Default:
.BR 99 .
.TP
.B MAXLAT
Only select remailers with a latency of at most
.IR MAXLAT .
Default:
.BR 36h .
.TP
.B MINLAT
Only select remailers with a latency of at least
.IR MINLAT .
Default:
.BR 5m .
.TP
.B PGPPUBRING
Path to your public PGP key ring. Default:
.BR ~/.pgp/pubring.pkr .
(Windows default: PGP registry value.)
.TP
.B PGPSECRING
Path to your secret PGP key ring. Default:
.BR ~/.pgp/secring.skr .
(Windows default: PGP registry value.)
.TP
.B CLIENTAUTOFLUSH
If
.B REMAIL
is set to
.BR n
automatically flush the pool every time Mixmaster is run. Default:
.BR n .
.TP
.B SENDMAIL
Path to the
.BR sendmail (1)
program. If set to
.BR outfile ,
Mixmaster will create text files named
.BI out * .txt
in the
.B pool
directory instead of sending mail.
Default:
.BR "/usr/lib/sendmail -t" .
.TP
.B SMTPRELAY
Name of SMTP relay. If set, mail will be delivered to the relay
rather than by
.BR sendmail (1).
.TP
.B SMTPPORT
Port number to connect on when using SMTP delivery. Default:
.BR 25.
.TP
.B HELONAME
Host name used in the SMTP dialogue.
Default: The
.I ENVFROM
host name or the current network name associated with the socket.
.TP
.B SMTPUSERNAME
Some mail servers require authentication for sending mail. This is
the authenticated SMTP user name.
.B SMTPPASSWORD
Password for authenticated SMTP.
.TP
.B ENVFROM
Envelope from address used in the SMTP dialogue. (When the client is
used to send non-anonymous messages,
.I ADDRESSS
is used instead.)
Default:
.IR ANONADDR .
.TP
.B ALLPINGERSURL
URL from which to download the
.IR ALLPINGERSFILE .
Default:
.BR http://www.noreply.org/allpingers/allpingers.txt .
.TP
.B WGET
Define the http protocol download tool. Default:
.BR wget .
.SS Remailer configuration:
.TP
.B NEWS
Path to the news posting program, or address of a
mail-to-news gateway. Default: no news posting.
(When using a news posting program,
.I ORGANIZATION
contains
an Organization line for anonymous messages. Default:
.BR "Anonymous Posting Service" .)
.TP
.B SENDANONMAIL
Path to a program for sending anonymous mail. Default:
.IR SENDMAIL .
.B SENDANONMAIL
can be used to invoke an external mail filter for anonymized messages.
.TP
.B SHORTNAME
A short name for the remailer to be used in lists. Defaults to the host name.
.TP
.B REMAILERADDR
The remailer mail address.
.TP
.B ANONADDR
An address to be inserted in the
.B From:
line of anonymous messages. Default:
.IR REMAILERADDR .
.TP
.B REMAILERNAME
A name to be inserted in the
.B From:
line of remailer status
messages. Default:
.BR "Anonymous Remailer" .
.TP
.B ANONNAME
A name to be inserted in the
.B From:
line of anonymous messages.
Default:
.BR "Anonymous" .
.TP
.B COMPLAINTS
An address for complaints to be sent to. Default:
.IR REMAILERADDR .
.TP
.B ERRLOG
Name of a file to log error messages, or
.B stdout
or
.BR stderr .
Default:
.BR stderr .
(When run from a tty, Mixmaster will always print a copy of error
messages to
.BR stderr .)
.TP
.B MAILBOX
A generic mail folder for non-remailer messages that are not stored in
any of the following folders.
If
.B MAILBOX
begins with a
.BR | ,
it specifies the path to a program. If it contains an
.B @
sign, the message is forwarded to the given address (with an
.B X-Loop:
header to prevent mail loops). If it ends with a
.B /
it is treated as a Maildir, otherwise the message is appended
to the given file name or written to standard output if
.B MAILBOX
is
.BR stdout .
Default:
.BR mbox .
.TP
.B MAILABUSE
Mail folder for messages sent to the
.I COMPLAINTS
address.
Default:
.IR MAILBOX .
.TP
.B MAILBLOCK
Mail folder for messages sent to the remailer address with a
.B DESTINATION-BLOCK
line.
Default:
.IR MAILBOX .
.TP
.B MAILUSAGE
Mail folder for messages sent to the remailer address that do not
contain any valid remailer commands. Default:
.BR /dev/null .
.TP
.B MAILANON
Mail folder for replies sent to the
.I ANONADDR
address.
Default:
.BR /dev/null .
.TP
.B MAILERROR
Mail folder for messages that cannot be decrypted or contain other
errors. Default:
.BR /dev/null .
.TP
.B MAILBOUNCE
Mail folder for bounce messages. Default:
.IR MAILBOX .
.TP
.B MAILIN
If defined an additional mail folder where Mixmaster should read messages from
when processing its pool. If it ends with a
.B /
it is treated as a Maildir, otherwise a standard mbox format file
is expected. All messages are removed from the folder after reading.
.B MAILIN
is not set by default.
It is an incredibly bad idea to set this the same as \fBMAILBOX\fP.
.TP
.B VERBOSE
If
.B VERBOSE
is set to
.BR 0 ,
Mixmaster will log error
messages only. If it is set to
.BR 1 ,
error messages and warnings are logged. If
.B VERBOSE
is set to
.BR 2 ,
successful operation is logged as well.
If set to
.BR 3 ,
a log file entry is created whenever a message
enters or leaves the pool. Default:
.BR 2 .
.TP
.B PASSPHRASE
A passphrase used to protect the remailer secret keys from
casual attackers. This setting overrides the compile-time
defined
.B COMPILEDPASS
which is now deprecated.
This should
.I not
be the same as the client passphrase.
.TP
.B EXTFLAGS
Additional flags you want to set in the remailer's capabilities string.
Defaults to the empty string, which means none. Example:
.BR testing .
.TP
.B PRECEDENCE
Sets the header Precedence: to this value for all outgoing mail.
Defaults to the empty string, which means no such header is added.
Example:
.BR anon .
If you use this you might want to block user supplied precedence
headers in your header block file.
.PP
The following variables can be set to
.B y
or
.BR n :
.TP
.B REMAIL
Enable remailer functionality. Default:
.BR n .
.TP
.B MIDDLEMAN
Act as an intermediate hop only, forward anonymized
messages to another remailer. This mode can be used
where complaints about anonymous messages must be
avoided. (The variable
.B FORWARDTO
specifies the remailer
chain to be used; default:
.BR * .)
Default:
.BR n .
.TP
.B AUTOREPLY
Send help files in response to non-remailer messages. Explicit
.B remailer-help
requests are always served.
Default:
.BR n .
.TP
.B MIX
Accept Mixmaster messages. Default:
.BR y .
.TP
.B PGP
Accept OpenPGP-encrypted Cypherpunk remailer messages.
Default:
.BR n .
.TP
.B UNENCRYPTED
Accept unencrypted Cypherpunk remailer messages.
Default:
.BR n .
.TP
.B REMIX
Re-encrypt Type I messages to other remailers in the Mixmaster format
.RB ( x
= only when requested by user explicitly).
Default:
.BR y .
.TP
.B BINFILTER
Filter out binary attachments. Default:
.BR n .
.TP
.B LISTSUPPORTED
List known remailers and their keys in remailer-conf reply. Default:
.BR y .
.TP
.B MID
Use a hash of the message body as Message-ID, to avoid
Usenet spam. Default:
.BR y .
If
.B MID
is set to a string
beginning with
.BR @ ,
that string is used as the domain part of the message ID.
.TP
.B AUTOBLOCK
Allow users to add their address to the
.B dest.blk
file by sending the remailer a message containing the line
.BR destination-block .
Default:
.BR y .
.TP
.B STATSDETAILS
List statistics on intermediate vs. final delivery in remailer-stats.
Default:
.BR y .
.PP
The following variables have numeric values:
.TP
.B POOLSIZE
The size of the Mixmaster reordering pool. Larger sizes
imply higher security and longer delays. Remailer default:
.BR 45 .
Client default:
.BR 0 .
.TP
.B RATE
Percentage of messages from the pool to be sent. Remailer default:
.BR 65 .
Client default:
.BR 100 .
Lower values cause the pool to increase in size when
many messages are received at a time, reducing the effect
of flooding attacks.
.TP
.B INDUMMYP
Probability that Mixmaster will generate dummy messages upon
receipt of incoming mail. Larger numbers mean more dummy
messages on average. For instance,
.B 10
means that on average one in nine incoming messages will trigger
a dummy generation, and
.B 20
means that one in four will.
.B 0
means no dummy messages. Remailer default:
.BR 10 .
Client default:
.BR 3 .
.TP
.B OUTDUMMYP
Probability that Mixmaster will generate dummy messages at
.B SENDPOOL
time. If the pool is processed frequently, this should be a lower value
than if there are long intervals between pool processing. Examples:
.B 50
means on average, one dummy message will be generated per pool
processing.
.B 80
means four will be generated.
.B 0
means no dummy messages. Remailer default:
.BR 90 .
Client default:
.BR 3 .
.TP
.B SIZELIMIT
Maximum size for anonymous messages in kB.
.B 0
means no limit.
Default:
.BR 0 .
.TP
.B POP3SIZELIMIT
Maximum size for incoming messages in kB when using POP3.
.B 0
means no limit.
Default:
.BR 0 .
Larger messages are deleted unread if
.B POP3DEL
is set to
.BR y ,
and left on the server otherwise.
.TP
.B INFLATEMAX
Maximum size for
.B Inflate:
padding in kB.
.B 0
means padding is not allowed.
Default:
.B 50
.BR kB .
.TP
.B MAXRANDHOPS
Maximum chain length for message forwarding requested by
.B Rand-Hop
directives.
Default:
.BR 4 .
.TP
.B MAXRECIPIENTS
limits the number of allowed recipients in outgoing mail. Anything that exceeds this
number is dropped silently. Default:
.BR 5 .
.TP
.B TEMP_FAIL
exit with this exit code when a timeskew problem is suspected. Also see
.BR TIMESKEW_BACK
and
.BR TIMESKEW_FORWARD .
The default of
.B 75
should cause your MTA to requeue the message if you are running
mixmaster from a
.BR .forward
file.
.TP
.B STATSAUTOUPDATE
Set non-zero to enable Daemon stats download mode. Default:
.BR 0 .
.PP
The following are time variables. They can be given as years (
.BR y
), months (
.BR b
), days (
.BR d
), hours (
.BR h
), minutes (
.BR m
), or seconds (
.BR s
).
.TP
.B SENDPOOLTIME
How often Mixmaster should check the pool for messages
to be sent. Remailer default:
.BR 15m .
Client default:
.BR 0h .
.TP
.B POP3TIME
How often Mixmaster should check the POP3 accounts
listed in
.B pop3.cfg
for new mail.
Default:
.BR 1h .
.TP
.B MAILINTIME
How often Mixmaster should read mail from
.BR MAILIN
and process mails fetched via POP3. Processing here means to
answer remailer-xxx requests and decrypt messages to the Mixmaster
and place them in the pool. No other processing of the pool is
done. This action is always performed sending out messages from the pool (at
.BR SENDPOOLTIME
intervals) or receiving mail via POP3 (at
.BR POP3TIME
intervals). Default:
.BR 5m .
.TP
.B PACKETEXP
How long to store parts of incomplete multipart messages and other
temporary pool files.
Default:
.BR 7d .
.TP
.B IDEXP
Mixmaster keeps a log of packet IDs to prevent replay
attacks.
.B IDEXP
specifies after which period of time old
IDs are expired. Default:
.BR 7d ,
minimum:
.BR 5d .
If set to
.BR 0 ,
no log is kept.
.TP
.B KEYLIFETIME
Mixmaster sets an expiration date on its remailer keys
.B KEYLIFETIME
after the key creation date. Default:
.BR 13b .
.TP
.B KEYGRACEPERIOD
Mixmaster will continue to decrypt messages encrypted to an expired key
for
.B KEYGRACEPERIOD
period of time after the expiration. This is done to ensure that messages
already injected into the network are allowed to exit. Do not change this
value unless you know what you are doing, or you will risk partitioning
attacks. Default:
.BR 7d .
.TP
.B KEYOVERLAPPERIOD
Mixmaster will generate and advertise a new key
.BR KEYOVERLAPPERIOD
period of time before the expiration of the key. Clients should always use
the most recently created valid key. Clients that deviate from this
recommended behavior risk partitioning attacks. Default:
.BR 7d .
.TP
.B TIMESKEW_BACK
Allow going back up to
.BR TIMESKEW_BACK
in time. If the time moved further back mixmaster will assume
there is a problem with your clock and refuse to start as a remailer.
This is done by comparing the latest timestamp in
.BR time.log
with the current timestamp. If set to
.BR 0
then this test is skipped. If the system time is indeed correct, simply
remove
.BR time.log .
Default:
.BR 12h .
.TP
.B TIMESKEW_FORWARD
Similar to
.BR TIMESKEW_BACK
but allow jumping this far into the future.
Default:
.BR 2w .
.TP
.B STATSINTERVAL
Time interval between daemon downloads of stats files. Enabled by
.BR STATSAUTOUPDATE .
Default:
.BR 2h .
.PP
The following strings must be specified at compile-time in
.BR config.h .
It is not usually necessary to modify any of these:
.TP
.B
DISCLAIMER
A default string to be inserted in the header of all anonymous
messages if no
.B disclaim.txt
file is available. If
.B DISCLAIMER
contains the substring
.BR "%s" ,
it will be substituted with the
.I COMPLAINTS
address.
.TP
.B FROMDISCLAIMER
A default string to be inserted at the top of the message body
if an anonymous message contains a user-supplied
.B From:
line and no
.B fromdscl.txt
file is available.
.TP
.B MSGFOOTER
A default string to be inserted at the bottom of the message body
of all anonymous messages if no
.B footer.txt
file is available.
.TP
.B BINDISCLAIMER
A string to replace the body of a binary attachment when
the remailer is configured to filter out binaries.
.TP
.B CHARSET
The character set used for MIME-encoded header lines.
.TP
.B DESTBLOCK
A quoted list of files that contain blocked addresses.
Files must be separated by one space. Mixmaster will choose
the first file for writing if
.B AUTOBLOCK
is enabled.
.PP
The following variables can be set in the
.B Makefile
or in
.BR config.h :
.TP
.B COMPILEDPASS
A passphrase used to protect the remailer secret keys from
casual attackers. You can use
.B `make PASS="\fIyour passphrase\fB"'
to set a passphrase. This should
.I not
be the same as the client passphrase. This option is now deprecated in
favor of the configuration file option
.BR PASSPHRASE .
.TP
.B SPOOL
Set
.B SPOOL
if you want to use a default directory other than
.B ~/Mix
or if Mixmaster is run in an environment where
.B $HOME
is not set, e.g. when invoked via
.BR .forward .
This value can be overridden by use of the environment variable
.BR $MIXPATH .
.TP
.B USE_SSLEAY
Use the SSLeay/OpenSSL cryptographic library. Currently this is the
only cryptographic library supported by Mixmaster.
.TP
.B USE_IDEA
Use the IDEA encryption algorithm. A license is required to use IDEA
for commercial purposes. See file
.B idea.txt
for details.
.TP
.B USE_PGP
Support the OpenPGP encryption format. Mixmaster does not call any
external encryption program.
.TP
.B USE_PCRE
Use the regular expression library.
.TP
.B USE_ZLIB
Use the
.B zlib
compression library.
.TP
.B USE_NCURSES
Use the
.B ncurses
library.
.TP
.B USE_SOCK
Use sockets to transfer mail by POP3 and SMTP.
.TP
.B USE_WINGUI
Use the
.B Win32
GUI.
.TP
.B HAVE_GETDOMAINNAME
The
.BR getdomainname (2)
function is available.
.SH FILES
These filenames can be overridden by setting the corresponding configuration
option (given in parentheses).
.TP
.B mix.cfg
Mixmaster configuration file.
.TP
.B pubring.asc
Type 1 remailer keys (\fBPGPREMPUBASC\fP).
.TP
.B pubring.mix
Type 2 remailer keys (\fBPUBRING\fP).
.TP
.B rlist.txt
List of reliable type 1 remailers (\fBTYPE1LIST\fP).
.TP
.B mlist.txt
List of reliable type 2 remailers (\fBTYPE2REL\fP).
.TP
.B type2.list
List of known type 2 remailers (optional) (\fBTYPE2LIST\fP).
.TP
.B starex.txt
List of remailers which should not be used in randomly generated
remailer chains (\fBSTAREX\fP).
.SS Remailer files:
.TP
.B disclaim.txt
A string to be inserted in the header of all anonymous
messages (\fBDISCLAIMFILE\fP).
.TP
.B fromdscl.txt
A string to be inserted at the top of the message body
if an anonymous message contains a user-supplied
.B From:
line (\fBFROMDSCLFILE\fP).
.TP
.TP
.B footer.txt
A string to be inserted at the bottom of the message body
of all anonymous messages (\fBMSGFOOTERFILE\fP).
.TP
.B help.txt
Help file sent in response to
.B remailer-help
requests (\fBHELPFILE\fP).
.TP
.B adminkey.txt
The PGP key of the remailer operator sent in response to
.B remailer-adminkey
requests (\fBADMKEYFILE\fP).
.TP
.B abuse.txt
File sent in response to mail to the
.I COMPLAINTS
address if
.B AUTOREPLY
is set (\fBABUSEFILE\fP).
.TP
.B reply.txt
Help file sent in response to replies to anonymous messages if
.B AUTOREPLY
is set (\fBREPLYFILE\fP).
.TP
.B usage.txt
Help file sent in response to non-remailer message sent to
.I REMAILERADDR
if
.B AUTOREPLY
is set. If
.B usage.log
exists, recipients are logged and a reply is sent only once to avoid
mail loops (\fBUSAGEFILE\fP).
.TP
.B blocked.txt
Information sent in response to automatically processed blocking requests if
.B AUTOREPLY
is set (\fBBLOCKFILE\fP).
.TP
.B pop3.cfg
List of POP3 accounts with lines of the form
.I account@host.domain password
to get remailer messages from. The lines may optionally contain the
keyword "apop" or "pass" to select an authentication method (\fBPOP3CONF\fP).
.TP
.B dest.alw
List of addresses to which Mixmaster will deliver, even in middleman mode (\fBDESTALLOW\fP).
.TP
.B dest.alw.nonpublished
Similar to
.BR dest.alw ,
with the only difference that this list is not published in remailer-conf replies (\fBDESTALLOW2\fP).
.TP
.B dest.blk
List of blocked destination addresses.
Mixmaster does not send mail to the blocked addresses listed in this file (\fBDESTBLOCK\fP).