mixmaster

mixmaster 3.0 patched for libressl
git clone git://parazyd.org/mixmaster.git
Log | Files | Refs | README

mix.cfg.ex (5732B)


      1 ## mix.cfg - Mixmaster configuration file
      2 ## see mixmaster(1) for a description
      3 ##
      4 ## All paths relative to compile-time defined SPOOL (default: ~/Mix)
      5 ## Can be overriden by environment variable $MIXPATH 
      6 ##
      7 ## $Id: mix.cfg.ex,v 1.4 2003/09/03 16:46:04 packbart Exp $
      8 
      9 ####################### Remailer configuration: ###########################
     10 
     11 ## Enable remailer functionality
     12 REMAIL              y
     13 
     14 SHORTNAME           foo
     15 REMAILERNAME        Anonymous Remailer
     16 REMAILERADDR        mix@example.net
     17 ANONNAME            Anonymous
     18 #ANONADDR            nobody@example.net
     19 #COMPLAINTS          abuse@example.net
     20 
     21 ## Additional capstring flags (e.g.: testing filter mon)
     22 #EXTFLAGS           testing
     23 
     24 ## Act as an intermediate hop only, forward anonymized messages to
     25 ## another remailer
     26 MIDDLEMAN           n
     27 
     28 ## Supported formats:
     29 MIX                 y
     30 PGP                 n
     31 UNENCRYPTED         n
     32 
     33 ## Only disable these if you really know what they do
     34 #REMIX               y
     35 #REPGP               y
     36 
     37 ## In middleman mode, mail is randhopped through this chain
     38 #FORWARDTO           *
     39 
     40 ## Filter binaries and replace them with "[...]"
     41 ## Note: destroys even PGP messages sometimes
     42 BINFILTER           n
     43 
     44 ## Allow users to add their address to the dest.blk file by sending the
     45 ## remailer a message containing the line "destination-block"
     46 ## Note: as no challenge-response mechanisms are used (yet),
     47 ##       attackers could dest-block arbitrary addresses
     48 AUTOBLOCK           y
     49 
     50 ## Automatically respond to non-remailer mail and mail to COMPLAINTS address
     51 AUTOREPLY           n
     52 
     53 ## List statistics on intermediate vs. final delivery in remailer-stats.
     54 STATSDETAILS        y
     55 
     56 ## List known remailers and their keys in remailer-conf reply
     57 LISTSUPPORTED       y
     58 
     59 ## Maximum chain length for message forwarding requested by
     60 ## Rand-Hop and Remix-To directives
     61 MAXRANDHOPS         5
     62 
     63 ## Maximum size for Inflate: padding in kB.  0 means padding is not allowed
     64 INFLATEMAX          50
     65 
     66 ## Limits the number of allowed recipients in outgoing mail
     67 ## Anything that exceeds this number is dropped silently
     68 MAXRECIPIENTS       5
     69 
     70 ## Passphrase to protect secret keys
     71 #PASSPHRASE          raboof
     72 
     73 ## Maximum message size in kB (0 for no limit):
     74 SIZELIMIT           0
     75 
     76 ## Remailing strategy:
     77 MAILINTIME          5m
     78 SENDPOOLTIME        15m
     79 POOLSIZE            45
     80 RATE                65
     81 
     82 ## Dummy generation probabilities
     83 INDUMMYP            10
     84 OUTDUMMYP           90 
     85 
     86 ## How long to store packet IDs and incomplete message parts
     87 IDEXP               7d
     88 PACKETEXP           7d
     89 
     90 ## Client settings for Rand-Hop: directives and dummy messages
     91 CHAIN               *,*,*,*
     92 DISTANCE            2
     93 MINREL              98
     94 RELFINAL            99
     95 MAXLAT              36h
     96 MINLAT              5m
     97 
     98 ## This file lists remailers which should not be used in randomly generated
     99 ## remailer chains
    100 STAREX              starex.txt
    101 
    102 ## Path to inews, or address of mail-to-news gateway
    103 ## Leave empty to disable mix-post capability flag
    104 ## Add more mail2news gateways to increase posting reliability
    105 ## (and mail load on your MTA). Additional m2n include:
    106 ## mail2news@news.gradwell.net
    107 #NEWS                mail2news@dizum.com,mail2news@anon.lcs.mit.edu
    108 ORGANIZATION        Anonymous Posting Service
    109 
    110 ## Anti-spam message IDs on Usenet (MD5 of message body)?
    111 MID                 y
    112 
    113 ## Precedence: header to set on remailed messages
    114 #PRECEDENCE          anon
    115 
    116 ## Enable either SENDMAIL/SENDANONMAIL (pipe into sendmail program)
    117 ## or SMTPRELAY (SMTP delivery over TCP)
    118 SENDMAIL            /usr/lib/sendmail -t
    119 #SENDANONMAIL        sendmessage.sh
    120 
    121 #SMTPRELAY           smtp.example.net
    122 #SMTPUSERNAME        foo
    123 #SMTPPASSWORD        bar
    124 #HELONAME            example.net
    125 #ENVFROM             mix-bounce@example.net
    126 
    127 ## Where to log error messages:
    128 ERRLOG              error.log
    129 VERBOSE             2
    130 
    131 ## Where to read mail messages from
    132 ## trailing "/" indicates maildir-style folder
    133 ## leave empty when you feed mixmaster through stdin (e.g. from procmail)
    134 #MAILIN              /var/mail/mixmaster
    135 
    136 ## POP3 configuration
    137 POP3CONF            pop3.cfg
    138 POP3TIME            1h
    139 POP3SIZELIMIT       0
    140 POP3DEL             y
    141 
    142 ## Where to store non-remailed messages
    143 ## prefix with "|" to pipe into program
    144 ## treated as email address if it contains an "@"
    145 MAILBOX             mbox
    146 #MAILABUSE           mbox.abuse
    147 #MAILBLOCK           mbox.block
    148 #MAILUSAGE           /dev/null
    149 #MAILANON            /dev/null
    150 #MAILERROR           /dev/null
    151 #MAILBOUNCE          mbox.bounce
    152 
    153 ## Where to find variable remailer keyrings and statistics
    154 PGPREMPUBASC        pubring.asc
    155 PUBRING             pubring.mix
    156 TYPE1LIST           rlist.txt
    157 TYPE2REL            mlist.txt
    158 TYPE2LIST           type2.list
    159 
    160 ## If you run your own pinger, make stats/ a symlink to your results directory
    161 ## and enable these instead
    162 #PGPREMPUBASC        stats/pgp-all.asc
    163 #PUBRING             stats/pubring.mix
    164 #TYPE1LIST           stats/rlist.txt
    165 #TYPE2REL            stats/mlist.txt
    166 #TYPE2LIST           stats/type2.list
    167 
    168 ## Where to find various textfiles
    169 DISCLAIMFILE        disclaim.txt
    170 FROMDSCLFILE        fromdscl.txt
    171 MSGFOOTERFILE       footer.txt
    172 HELPFILE            help.txt
    173 ADMKEY-FILE         adminkey.txt
    174 ABUSEFILE           abuse.txt
    175 REPLYFILE           reply.txt
    176 USAGEFILE           usage.txt
    177 BLOCKFILE           blocked.txt
    178 
    179 ## List of blocked source addresses
    180 SOURCE-BLOCK        source.blk
    181 
    182 ## List of unwanted header fields
    183 HDRFILTER           header.blk
    184 
    185 ## List of blocked destination addresses
    186 DESTBLOCK           dest.blk rab.blk
    187 
    188 ## List of addresses to which Mixmaster will deliver, even in middleman mode
    189 DESTALLOW           dest.alw
    190 
    191 ## Pid file in daemon mode
    192 PIDFILE             mixmaster.pid