forked from merkinmuffley/mixmaster4096
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInstall
executable file
·1202 lines (1083 loc) · 22.7 KB
/
Install
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
#!/bin/sh
# Mixmaster version 3.1 -- (C) 1999-2016 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.
# $Id$
#whereis program default-path
whereis()
{
#echo "Looking for $1..."
found=""
for i in $* `which $1 2>&1`
do
if [ -f "$i" -a -x "$i" ]
then
found=$i
fi
done
if [ "$found" = "" ]
then
found=$2
# echo "$1 not found. Using $found."
# else
# echo "$1 is at $found."
fi
}
if echo -n | grep n >/dev/null
then
echo1=""
echo2="\c"
else
echo1="-n"
echo2=""
fi
# readln text default
readln()
{
echo $echo1 "$1 [$2] $echo2"
read ans
if [ -z "$ans" ]
then
ans="$2"
fi
}
# findlib libxxx.a -- find and configure libraries
# Input:
# $1 library name
# $CONFIG library configure options
# $INCDIR possible include directories
# $SRCDIR possible library source directories
# $LIBDIR possible library binary directories
#
# Output:
# $found library directory
# $lib library name
# $INCDIR include directory if required, empty otherwise
# $LDFLAG linker options
# $LIB path to library file
# $MAKELIB Makefile entry to compile library
findlib()
{
lib=$1
libso=`echo $lib | sed 's/\.a$/.so/'`
echo "Looking for $lib..."
found=
source=
type=
LIB=
LDFLAG=
MAKELIB=
for i in /usr/local/lib /usr/lib /lib /usr/lib64 /usr/lib/i386-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /opt/crypto/lib
do
if [ -r $i/$lib -o -r $i/$libso -o -r $i/$libso.? -o -r $i/$libso.?.?.? ]
then
found=$i
type=system
break
fi
done
for i in $LIBDIR
do
if [ -r $i/$lib -o -r $i/$libso ]
then
found=$i
type=installed
fi
done
for i in $SRCDIR
do
if [ -r $i/$lib -o -r $i/lib/$lib ]
then
found=$i
type=binary
fi
done
if [ -r $found/$libso ]
then
echo "Found at $found/$libso."
elif [ -r "$found/$lib" ]
then
echo "Found at $found/$lib."
elif [ -r "$found/lib/$lib" ]
then
echo "Found at $found/lib/$lib."
fi
for i in $SRCDIR
do
if [ -d $i -a ! "$type" = binary ]
then
source=$i
fi
done
if [ "$source" != "" ]
then
echo "Found source directory $source."
if [ "$found" = "" ]
then
ans=y
else
echo "Use the source if the pre-installed library causes compilation problems."
readln "Use source?" n
fi
if [ "$ans" = "y" ]
then
found=$source
type=source
fi
fi
if [ "$found" = "" ]
then
echo "Not found."
else
if [ -r $found/lib/$lib ]
then
LIB=$found/lib/$lib
elsif [ -r $found/$lib ]
LIB=$found/$lib
elsif [ -r $found/$lib.? ]
LIB=$found/$lib.?
elsif [ -r $found/$lib.?.?.? ]
LIB=$found/$lib.?.?.?
fi
fi
if [ "$type" = system ]
then
LIB=
LDFLAG="-l`echo $lib | sed 's/^lib//;s/\.a$//'` -L$found"
if [ "$found" = "/usr/local/lib" ]
then
INCDIR="/usr/local/include /opt/crypto/include $INCDIR"
fi
fi
incdir=$INCDIR
INCDIR=
for i in $incdir
do
if [ -d $i ]
then
INCDIR=$i
fi
done
if [ "$type" = source -o "$type" = binary ]
then
if [ ! -r $found/lib/$lib ]
then
MAKELIB="$found/$lib:
cd $found; make $lib"
fi
if [ -d $found/include ]
then
INCDIR=$found/include
else
INCDIR=$found
fi
fi
if [ "$type" = source ]
then
dir=`pwd`
if [ "$dir" = "" ]
then
dir=$PWD
fi
cd $found
if [ -x configure ]
then
echo "Configuring..."
./configure $CONFIG
fi
if [ "$lib" = "libcrypto.a" ]
then
if [ -f config ]
then
sh config
elif [ -x Configure ]
then
./Configure 2>tmp.$$
cat tmp.$$
readln "Your system?" `cat tmp.$$ | tr ' ' '\n' | grep -i \`uname\` | tail -1`
rm -f tmp.$$
echo "Configuring..."
./Configure $ans
fi
fi
cd $dir
fi
}
# Global installation.
##########################################################################
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
user id. Installing Mixmaster as root is not recommended."
readln "Continue anyway?" n
if [ "$ans" = n ]
then
exit 1
fi
fi
MIXDIR="$PWD"
if [ "$MIXDIR" = "" ]
then
MIXDIR=`pwd`
fi
MIXCFG="$MIXDIR/conf"
MIXSRC="$MIXDIR/Src"
MIXDEST0=${MIXPATH:-$HOME/Mix}
system=`uname`
if [ "$system" = "MS-DOS" ]
then
system=msdos
fi
if [ "$HOSTNAME" = "" ]
then
HOSTNAME=`hostname`
fi
if [ "$HOSTNAME" = "" ]
then
HOSTNAME=msdos
system=msdos
fi
if [ "$system" = msdos ]
then
MIXDEST0=${MIXPATH:-C:/Mix}
fi
if [ -f "$MIXSRC/Makefile" ]
then
if grep "#Makefile generated.*$HOSTNAME" $MIXSRC/Makefile
then
echo "Found a Makefile for this system."
readln "Use this Makefile?" y
if [ "$ans" = n ]
then
rm -f "$MIXSRC/Makefile"
fi
else
readln "Remove old Makefile?" y
if [ "$ans" = y ]
then
rm -f "$MIXSRC/Makefile"
fi
fi
fi
if [ -f "$MIXSRC/Makefile" ]
then
MIXDEST=`grep "DSPOOL=" $MIXSRC/Makefile | sed 's/.*DSPOOL=..//;s/\".*//'`
if [ "$MIXDEST" = "" ]
then
MIXDEST="$MIXDEST0"
fi
fi
if [ "$MIXDEST" = "" ]
then
readln "Mixmaster directory?" "$MIXDEST0"
MIXDEST=$ans
else
echo "Mixmaster directory: $MIXDEST"
fi
if [ ! -d "$MIXDEST" ]
then
echo "Creating directory $MIXDEST"
mkdir "$MIXDEST"
fi
if [ ! -d "$MIXDEST" ]
then
echo "Cannot not create $MIXDEST"
exit 1
fi
if [ -f "$MIXDEST/mix.cfg" ]
then
if [ -f "$MIXDEST/secring.mix" ]
then
remailer=y
if grep PASSPHRASE "$MIXDEST/mix.cfg" >/dev/null
then
PASSINCONFIG=1
fi
else
readln "Do you want to set up a remailer?" n
remailer=$ans
fi
elif [ -f "$MIXDEST/mixmaster.conf" ]
then
echo "Upgrading from Mixmaster 2.0.*"
remailer=n
else
readln "Do you want to set up a remailer?" y
remailer=$ans
fi
ans=""
if [ "$remailer" = "y" ]
then
ans="n"
if [ "$PASSINCONFIG" != 1 ]
then
echo ""
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 mixmaster'."
echo ""
echo "Most users should answer \`n' to this question:"
echo ""
readln "Do you want to compile the passphrase into the binary?" n
fi
rm -f "$MIXSRC/mix.o" # make sure our new passphrase takes effect
if [ "$ans" = "y" ]
then
ans=""
echo "Please enter a passphrase for your remailer (must be the same
whenever you re-compile Mixmaster)."
read ans
if [ "$ans" != "" ]
then
PASS="PASS=$ans"
else
echo "WARNING: not setting a passphrase"
fi
else
if [ "$PASSINCONFIG" != 1 ]
then
ans=""
echo "Please enter a passphrase for your remailer (it will be
stored in mix.cfg in clear)."
read ans
if [ "$ans" = "" ]
then
echo "WARNING: setting empty passphrase"
fi
PASSPHRASE="PASSPHRASE $ans"
if [ -f $MIXDEST/mix.cfg ]
then
echo "$PASSPHRASE" >> $MIXDEST/mix.cfg
fi
fi
fi
fi
cd "$MIXSRC"
if [ ! -f Makefile ]
then
# -ldl added for openssl-1.0.1i unpacked under the Src directory (on Fedora)
LIBS=-ldl
INC=
DEF=
LDFLAGS=
if [ ! -z "$PASS" ]
then
DEF="$DEF -DCOMPILEDPASS='\"\$(PASS)\"'"
fi
if [ "$system" = msdos ]
then
readln "Use WIN32 GUI?" y
if [ "$ans" = y ]
then
system=win32
LDFLAGS=-lwsock32
fi
fi
if [ "$system" = SunOS ]
then
LDFLAGS="-lsocket -lnsl"
fi
LIBDIR=
INCDIR=
SRCDIR=zlib*
findlib libz.a
if [ "$found" = "" ]
then
readln "Continue anyway?" n
if [ "$ans" = "n" ]
then
echo "Please install zlib 1.1.4 or 1.2.3 or greater now."
exit 1
fi
else
ZLIB="$MAKELIB"
DEF="$DEF -DUSE_ZLIB"
LIBS="$LIBS $LIB"
LDFLAGS="$LDFLAGS $LDFLAG"
if [ "$INCDIR" != "" ]
then
INC="$INC -I$INCDIR"
fi
fi
LIBDIR=
INCDIR="/usr/include /usr/include/pcre /usr/local/pcre/include"
SRCDIR=pcre*
findlib libpcre.a
if [ "$found" != "" ]
then
PCRE="$MAKELIB"
DEF="$DEF -DUSE_PCRE"
LIBS="$LIBS $LIB"
LDFLAGS="$LDFLAGS $LDFLAG"
if [ "$INCDIR" != "" ]
then
INC="$INC -I$INCDIR"
fi
else
echo
echo If you have library file not called libpcre.so you might get one with the command ln -s libpcre.so.1 libpcre.so
echo
fi
opensslinfo="Please get OpenSSL 1.0.2 or greater from http://www.openssl.org/"
opensslwarning0="WARNING: Please upgrade to OpenSSL 1.0.2 or greater!"
LIBDIR=/usr/local/ssl/lib
INCDIR="/usr/include /usr/include/ssl /usr/lib/ssl/include /usr/local/ssl/include"
SRCDIR="openssl*"
opensslwarn()
{
if [ "$1" = "6" ]
then
echo $opensslwarning6
elif [ "$1" = "7" ]
then
echo $opensslwarning7
else
echo $opensslwarning0
fi
readln "Continue anyway?" y
if [ "$ans" = "n" ]
then
echo $opensslinfo
exit 1
fi
}
INCDIR="/usr/include /usr/local/include /opt/crypto/include"
if [ "$system" = win32 ]
then
findlib libeay32.a
else
findlib libcrypto.a
fi
if [ "$found" = "" ]
then
echo $opensslinfo
exit 1
fi
OPENSSLLIB="$LIB"
LIBS="$LIBS $LIB"
LDFLAGS="$LDFLAGS $LDFLAG"
if [ "$MAKELIB" != "" ]
then
OPENSSL="$found/$lib:
cd $found/crypto; make"
fi
if [ -d "$INCDIR/openssl" ]
then
INC="$INC -I$INCDIR"
else
# detect old SSLeay versions
if [ -f "$INCDIR/crypto.h" ]
then
version=800
if grep OPENSSL "$INCDIR/crypto.h" > /dev/null
then
version=920
fi
fi
fi
# Find the OpenSSL version header
if [ -f "$INCDIR/openssl/opensslv.h" ]
then
version=`grep 'SSL.*_VERSION_NUMBER.*0x' $INCDIR/openssl/opensslv.h | sed 's/.*0x0*//;s/[ ].*//;s/L$//' | tr '[a-f]' '[A-F]'`
elif [ -f "$INCDIR/opensslv.h" ]
then
version=`grep 'SSL.*_VERSION_NUMBER.*0x' $INCDIR/opensslv.h | sed 's/.*0x0*//;s/[ ].*//;s/L$//' | tr '[a-f]' '[A-F]'`
fi
if [ "$version" = "" ]
then
echo "Warning: Can't find OpenSSL version number!"
readln "Continue anyway?" y
if [ "$ans" = "n" ]
then
echo $opensslinfo
exit 1
fi
#
# Here we match against known OpenSSL versions
#
elif [ "$version" = "90809F" ]
then
decimalversion=9470111
echo "Compiling with OpenSSL 0.9.8h."
echo "This version is old - please update".
elif [ "$version" = "1000200F" ]
then
decimalversion=268443663
echo "Compiling with OpenSSL 1.0.2F."
fi
#
# Now we try to guess about unknown versions:
#
if [ "$decimalversion" = "" ]
then
decimalversion=`echo 16i $version p | dc`
fi
if [ "$decimalversion" = "" ]
then
echo "Warning: This version: ${version} of OpenSSL is not recognized."
readln "Continue anyway?" y
if [ "$ans" = "n" ]
then
echo $opensslinfo
exit 1
fi
elif [ "$decimalversion" -ge "268443727" ] # 1.0.2d 9 Jul 2015
then
echo This OpenSSL version looks good at August 2015.
sleep 5
elif [ "$decimalversion" -lt "2336" ] # 920
then
echo "This version: ${version} of SSLeay is not supported."
echo $opensslinfo
exit 1
elif [ "$decimalversion" -lt "9449728" ] # 903100
then
echo "This version: ${version} of OpenSSL is not supported."
echo $opensslinfo
exit 1
elif [ "$decimalversion" -gt "9470111" ] # 0.9.8h
then
echo "Warning: This version: ${version} of OpenSSL is untested."
readln "Continue anyway?" y
if [ "$ans" = "n" ]
then
echo $opensslinfo
exit 1
fi
fi
DEF="$DEF -DUSE_AES"
LIBDIR=
INCDIR=/usr/include/ncurses
SRCDIR=ncurses*
CONFIG=--enable-termcap
if [ "$TERMINFO" != "" ]
then
CONFIG="--datadir=$TERMINFO"
fi
if [ -d /usr/share/terminfo ]
then
CONFIG=
fi
if [ -d /usr/lib/terminfo ]
then
CONFIG=--datadir=/usr/lib/terminfo
fi
if [ `uname` = OpenBSD ]
then
findlib libcurses.a
else
findlib libncurses.a
fi
if [ "$found" = "" ]
then
if [ "$system" != win32 ]
then
readln "Do you want to use Mixmaster's menu-based user interface?" y
if [ "$ans" = "y" ]
then
echo "Please install ncurses now. It is available from http://www.clark.net/pub/dickey/ncurses/ncurses.tar.gz"
exit 1
fi
fi
else
DEF="$DEF -DUSE_NCURSES"
if [ "$type" = system -o "$type" = installed ]
then
LIBS="$LIBS $LIB"
LDFLAGS="$LDFLAGS $LDFLAG"
else
LIBS="$LIBS $found/lib/$lib"
NCURSES="$found/lib/$lib:
cd $found/ncurses; make ../lib/$lib"
fi
if [ "$INCDIR" != "" ]
then
INC="$INC -I$INCDIR"
elif [ -f "/usr/include/ncurses.h" ]
then
DEF="$DEF -DHAVE_NCURSES_H"
fi
fi
ideawarn()
{
echo "
NOTICE: Your version of OpenSSL has been configured without IDEA support. That is OK.
"
sleep 5
}
if [ "$system" = OpenBSD ]
then
LIBDIR=
INCDIR=
SRCDIR=idea*
findlib libidea.a
if [ "$found" = "" ]
then
ideawarn
else
DEF="$DEF -DUSE_IDEA"
IDEALIB="$MAKELIB"
LIBS="$LIBS $LIB"
LDFLAGS="$LDFLAGS $LDFLAG"
if [ "$INCDIR" != "" ]
then
INC="$INC -I$INCDIR"
fi
fi
elif [ "$system" = msdos -o "$system" = win32 ]
then
DEF="$DEF -DUSE_IDEA"
else
echo "Checking for IDEA support..."
cat <<END >tmptst.c
#include <openssl/idea.h>
int main() {
void *dummy;
dummy = idea_cfb64_encrypt;
exit(0);
}
END
if gcc $LDFLAGS $INC tmptst.c -o tmptst $OPENSSLLIB
then
DEF="$DEF -DUSE_IDEA"
else
ideawarn
fi
rm -f tmptst.c tmptst
fi
echo "testing for setenv()..."
cat <<END >tmptst.c
int main() {
#include <stdlib.h>
setenv("TZ", "GMT", 0);
exit(0);
}
END
if gcc tmptst.c -o tmptst
then
DEF="$DEF -DHAVE_SETENV"
fi
echo "done"
rm -f tmptst.c tmptst
# if [ "$MIXDEST" = "$HOME/Mix" ]
# then
# SPOOL=
# else
SPOOL=-DSPOOL=\'\"$MIXDEST\"\'
# fi
echo "Generating Makefile."
echo "#Makefile generated on $HOSTNAME `date`" >Makefile
sed -e "s#%MIXDIR#$SPOOL#" \
-e "s#%LIBS#$LIBS#" \
-e "s#%LDFLAGS#$LDFLAGS#" \
-e "s#%INC#$INC#" \
-e "s#%DEF#$DEF#" < Makefile.in >> Makefile
# echo "$ZLIB" >>Makefile
# echo "$PCRE" >>Makefile
echo "$IDEALIB" >>Makefile
echo "$NCURSES" >>Makefile
echo "$OPENSSL" >>Makefile
fi
echo "Compiling. Please wait."
whereis make
make=$found
if [ "$system" = win32 ]
then
# (cd zlib*; make libz.a)
# (cd pcre*; make libpcre.a)
if [ "$PASS" != "" ]
then
$make "$PASS" dllmix
else
$make dllmix
fi
else
if [ "$PASS" != "" ]
then
$make "$PASS"
else
$make
fi
fi
if [ -x mixmaster ]
then
echo
else
echo "Error: The compilation failed. Please consult the documentation (section
\`Installation problems')."
readln "Remove the old Makefile?" y
if [ "$ans" = y ]
then
rm -f Makefile
fi
exit 1
fi
if [ -f "$MIXDEST/mixmaster.conf" -a ! -f "$MIXDEST/mix.cfg" ]
then
export MIXDEST
export MIXDIR
export MIXSRC
"${MIXDIR}/upgrade"
exit 0
fi
if [ -f mixmaster.exe ]
then
cp mixmaster.exe "$MIXDEST"
else
cp mixmaster "$MIXDEST"
fi
cd "$MIXCFG"
for i in mlist.txt pubring.mix rlist.txt pubring.asc
do
if [ ! -f "$MIXDEST/$i" ]
then
cp "$i" "$MIXDEST"
fi
done
if [ "$remailer" = "y" ]
then
cd "$MIXCFG"
for i in adminkey.txt dest.alw
do
if [ ! -f "$MIXDEST/$i" ]
then
cp "$i" "$MIXDEST"
fi
done
fi
if [ "$remailer" = "n" ]
then
if [ ! -f "$MIXDEST/mix.cfg" ]
then
whereis sendmail /usr/lib/sendmail /usr/sbin/sendmail
echo "SENDMAIL $found -t" >"$MIXDEST/mix.cfg"
cat mix.cfg >>"$MIXDEST/mix.cfg"
fi
echo "Client installation complete."
exit
fi
for i in *.blk
do
if [ ! -f "$MIXDEST/$i" ]
then
cp "$i" "$MIXDEST"
fi
done
cd "$MIXDEST"
installed=n
if [ -f mix.cfg ]
then
if grep REMAILERADDR mix.cfg >/dev/null
then
installed=y
fi
fi
if [ "$installed" = "n" ]
then
Date=`date`
whereis sendmail /usr/lib/sendmail /usr/sbin/sendmail
sendmail=$found
echo "Mixmaster can be installed in the low-maintenance \`middleman' mode.
In that mode, it will send mail to other remailers only, to avoid
complaints about anonymous messages."
readln "Install as middleman?" n
middle=$ans
readln "The e-mail address of your remailer:" `whoami`@$HOSTNAME
RMA=$ans
echo "Do you want Mixmaster to send auto-replies to messages it does not
understand (If the address <$RMA> is also used"
readln "for mail to be read by a human, type \`n')?" y
autoreply=$ans
if [ "$middle" = n ]
then
readln "An address to appear in the \`From:' line of anonymous messages:" `echo $RMA | sed 's/.*@/nobody@/'`
RAA=$ans
readln "Address for complaints to be sent to:" `echo $RMA | sed 's/.*@/abuse@/'`
CA=$ans
else
RAA=$RMA
CA=$RMA
fi
echo "Choose a name for your remailer. It will appear in remailer status messages."
readln "Long name:" "Anonymous Remailer"
RMN=$ans
if [ "$middle" = n ]
then
echo "Choose a name to be used in the \`From:' line of remailed messages."
readln "Anon long name:" "Anonymous"
RAN=$ans
fi
readln "A short name to appear in lists:" `echo $HOSTNAME|sed 's/\..*//'`
SN=$ans
readln "Accept Mixmaster (Type II) messages?" y
mix=$ans
readln "Accept PGP (Type I) remailer messages?" n
pgp=$ans
unencrypted=n
if [ "$pgp" = "y" ]
then
readln "Accept unencrypted remailer messages?" n
unencrypted=$ans
fi
echo "Mixmaster will log error messages and warnings. Do you want to log"
readln "informational messages about normal operation as well?" y
if [ "$ans" = y ]
then
verbose=2
else
verbose=1
fi
readln "Filter binary attachments?" n
binfilter=$ans
if [ "$middle" = n ]
then
if [ "$autoreply" = y ]
then
readln "Allow users to add themselves to the list of blocked addresses?" y
autoblock=$ans
fi
echo "Do you want to allow posting? Newsgroups can be restricted in dest.blk.
y)es, post locally; use m)ail-to-news gateway; n)o."
readln "Allow posting to Usenet?" m
post="$ans"
if [ "$ans" = y ]
then
whereis inews /usr/lib/news/inews
readln "News posting software:" "$found -h"
news=$ans
readln "Organization line for anonymous Usenet posts:" "Anonymous Posting Service"
orga=$ans
readln "Use anti-spam message IDs?" y
mid=$ans
elif [ "$ans" = m ]
then
readln "Mail-to-news gateway:" mail2news@nym.alias.net
news=$ans
fi
fi
# 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:" 45
# poolsize=$ans
mbox=
if [ -f ~/.forward ]
then
mbox=`head -1 ~/.forward | sed 's/^"//;s/"$//'`
if echo "$mbox" | grep 'mix' >/dev/null 2>/dev/null
then
mbox=
elif echo "$mbox" | grep 'procmail' >/dev/null 2>/dev/null
then
if grep mix ~/.procmailrc >/dev/null 2>/dev/null
then
mbox=
fi
fi
fi
if [ "$mbox" = "" ]
then
mbox=${MAIL:-/usr/spool/mail/$NAME}
touch "$mbox"
if [ ! -w "$mbox" ]
then
echo "$mbox is not writeable."
readln "Mailbox for non-remailer messages:" "${MIXDEST}/mbox"
mbox=$ans
fi
fi
cat <<END >mix.cfg
# mix.cfg -- installed $Date
SENDMAIL $sendmail -t
# Where to store non-remailer messages:
MAILBOX $mbox
#MAILABUSE mbox.abuse
#MAILBLOCK mbox.block
#MAILUSAGE mbox.usage
#MAILANON mbox.anon
#MAILERROR mbox.error