masqmail-0.2

diff docs/old-manual/docs/masqmail.conf.5.html @ 56:f6a6f55b7b9e

added old manual from the old website it is dated May/July 2000
author meillo@marmaro.de
date Sat, 29 May 2010 21:51:13 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/docs/old-manual/docs/masqmail.conf.5.html	Sat May 29 21:51:13 2010 +0200
     1.3 @@ -0,0 +1,569 @@
     1.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%">
     1.5 +<tr><td><h1>masqmail.conf</h1>
     1.6 +<h2>masqmail configuration file</h2>
     1.7 +
     1.8 +
     1.9 +<h2>Description</h2>
    1.10 +
    1.11 +<p>This man page describes the syntax of the main configuration file
    1.12 +of masqmail. Its usual location is <em>/etc/masqmail/masqmail.conf</em></p>
    1.13 +
    1.14 +<p>The configuration consists of lines of the form</p>
    1.15 +
    1.16 +<p><b>val</b> = <em>expression</em></p>
    1.17 +
    1.18 +<p>Where <b>val</b> is a variable name and <em>expression</em> a string,
    1.19 +which can be quoted with '"'. If the expression is on multiple lines
    1.20 +or contains characters other than letters, digits or the characters
    1.21 +'.', '-', '_', '/', it must be quoted. You can use quotes inside quotes
    1.22 +by escaping them with a backslash.</p>
    1.23 +
    1.24 +<p>Each val has a type, which can be boolean, numeric, string
    1.25 +or list. A boolean variable can be set with one of the values 'on',
    1.26 +'yes', and 'true' or 'off', 'no' and 'false'. List items are separated
    1.27 +with ';'. For some values patterns (like '*','?') can be used. The
    1.28 +spaces before and after the '=' are optional.</p>
    1.29 +
    1.30 +<p>Most lists (exceptions: <b>local_hosts</b>,
    1.31 +<b>local_nets</b>, <b>listen_addresses</b>, <b>online_routes</b> and <b>online_gets</b>) accept
    1.32 +files. These will be recognized by a leading slash '/'. The contents
    1.33 +of these files will be included at the position of the file name,
    1.34 +there can be items or other files before and after the file entry. The
    1.35 +format of the files is different though, within these files each entry
    1.36 +is on another line. (And not separated by semicolons). This makes it
    1.37 +easy to include large lists which are common in different
    1.38 +configuration files, so they do not have to appear in every
    1.39 +configuration file.</p>
    1.40 +
    1.41 +<p>Blank lines and lines starting with '#' are ignored.</p>
    1.42 +
    1.43 +
    1.44 +
    1.45 +
    1.46 +<h2>Options</h2>
    1.47 +
    1.48 +
    1.49 +<p><b>run_as_user = <em>boolean</em></b></p>
    1.50 +
    1.51 +<p>If this is set, masqmail runs with the user id of the user who
    1.52 +invoked it and never changes it. This is for debugging purposes 
    1.53 +only. If the user is not root, masqmail will not be able to
    1.54 +listen on a port < 1024 and will not be able to deliver local mail
    1.55 +to others than the user.</p>
    1.56 +
    1.57 +
    1.58 +
    1.59 +
    1.60 +<p><b>use_syslog = <em>boolean</em></b></p>
    1.61 +
    1.62 +<p>If this is set, masqmail uses syslogd for logging. It uses facility
    1.63 +MAIL. You still have to set <b>log_dir</b> for debug files.</p>
    1.64 +
    1.65 +
    1.66 +
    1.67 +
    1.68 +<p><b>debug_level = <em>n</em></b></p>
    1.69 +
    1.70 +<p>Set the debug level. Valid values are 0 to 6, increasing it further
    1.71 +makes no difference. Be careful if you set this as high as 5 or higher,
    1.72 +the logs may very soon fill your hard drive.</p>
    1.73 +
    1.74 +
    1.75 +
    1.76 +
    1.77 +<p><b>mail_dir = <em>file</em></b></p>
    1.78 +
    1.79 +<p>The directory where local mail is stored,
    1.80 +usually <em>/var/spool/mail</em> or <em>/var/mail</em>.</p>
    1.81 +
    1.82 +
    1.83 +
    1.84 +
    1.85 +<p><b>spool_dir = <em>file</em></b></p>
    1.86 +
    1.87 +<p>The directory where masqmail stores its spool files (and later also
    1.88 +other stuff). It must have a subdirectory <em>input</em>.
    1.89 +Masqmail needs read and write permissions for this
    1.90 +directory. I suggest to use <em>/var/spool/masqmail</em>.</p>
    1.91 +
    1.92 +
    1.93 +
    1.94 +
    1.95 +<p><b>host_name = <em>string</em></b></p>
    1.96 +
    1.97 +<p>This is used in different places: Masqmail identifies itself in the
    1.98 +greeting banner on incoming connections and in the HELO/EHLO command
    1.99 +for outgoing connections with this name, it is used in the Received:
   1.100 +header and to qualify the sender of a locally originating message.</p>
   1.101 +
   1.102 +<p>If the string begins with a slash '/', it it assumed that it is a
   1.103 +filename, and the first line of this file will be used. Usually this will
   1.104 +be '/etc/mailname' to make masqmail conform to Debian policies.</p>
   1.105 +
   1.106 +<p>It is not used to find whether an address is local.
   1.107 +Use <b>local_hosts</b> for that.</p>
   1.108 +
   1.109 +
   1.110 +
   1.111 +
   1.112 +<p><b>remote_port = <em>n</em></b></p>
   1.113 +
   1.114 +<p>The remote port number to be used. This defaults to port 25.</p>
   1.115 +<p>This option is deprecated. Use <b>host_name</b> in the route
   1.116 +configuration instead. See <a href="masqmail.route.5.html">masqmail.route</a>.</p>
   1.117 +
   1.118 +
   1.119 +
   1.120 +
   1.121 +<p><b>local_hosts = <em>list</em></b></p>
   1.122 +
   1.123 +<p>A semicolon ';' separated list of hostnames which are considered
   1.124 +local. Normally you set it to "localhost;foo;foo.bar.com" if your host
   1.125 +has the fully qualified domain name 'foo.bar.com'.</p>
   1.126 +
   1.127 +
   1.128 +
   1.129 +
   1.130 +<p><b>local_nets = <em>list</em></b></p>
   1.131 +
   1.132 +<p>A semicolon ';' separated list of hostnames which are on the
   1.133 +'local' net. Delivery to these hosts is attempted immediately. You can
   1.134 +use patterns with '*', eg. "*.bar.com".</p>
   1.135 +
   1.136 +
   1.137 +
   1.138 +
   1.139 +<p><b>local_addresses = <em>list</em></b></p>
   1.140 +
   1.141 +<p>A semicolon ';' separated list of fully qualified email-addresses
   1.142 +which are considered local although their domain name part is not in
   1.143 +the list of <b>local_hosts</b>. </p>
   1.144 +<p>For example: There are two people working at your
   1.145 +LAN: person1@yourdomain and person2@yourdomain. But there are
   1.146 +other persons @yourdomain which are NOT local. So you can not put
   1.147 +yourdomain to the list of local_hosts. If person1 now wants
   1.148 +to write to person2@yourdomain and this mail should not leave the LAN
   1.149 +then you can put</p>
   1.150 +<p>local_addresses = "person1@yourdomain;person2@yourdomain"</p>
   1.151 +<p>to your masqmail.conf.</p>
   1.152 +
   1.153 +
   1.154 +
   1.155 +
   1.156 +<p><b>not_local_addresses = <em>list</em></b></p>
   1.157 +
   1.158 +<p>A semicolon ';' separated list of fully qualified email-addresses
   1.159 +which are considered not local although their domain name part is in
   1.160 +the list of <b>local_hosts</b>. </p>
   1.161 +<p>This ist the opposite of the previous case. The majority of addresses
   1.162 +of a specific domain are local. But some users are not. With this
   1.163 +option you can easily exclude these users.</p>
   1.164 +<p>Example:</p>
   1.165 +<p>local_hosts = "localhost;myhost;mydomain.net"</p>
   1.166 +<p>not_local_addresses = "eric@mydomain.net"</p>
   1.167 +
   1.168 +
   1.169 +
   1.170 +
   1.171 +<p><b>listen_addresses = <em>list</em></b></p>
   1.172 +
   1.173 +<p>A semicolon ';' separated list of interfaces on which connections
   1.174 +will be accepted. An interface ist defined by a hostname, optionally
   1.175 +followed by a colon ':' and a number for the port. If this is left out,
   1.176 +port 25 will be used.</p>
   1.177 +<p>You can set this to "localhost:25;foo:25" if your hostname is 'foo'.</p>
   1.178 +<p>Note that the names are resolved to IP addreses. If your host has
   1.179 +different names which resolve to the same IP, use only one of them,
   1.180 +otherwise you will get an error message.
   1.181 +</p>
   1.182 +
   1.183 +
   1.184 +
   1.185 +
   1.186 +<p><b>do_save_envelope_to = <em>boolean</em></b></p>
   1.187 +
   1.188 +<p>If this is set to true, a possibly existing Envelope-to: header in an
   1.189 +incoming mail which is received via either pop3 or smtp will be saved as
   1.190 +an X-Orig-Envelope-to: header.</p>
   1.191 +<p>This is useful if you retrieve mail from a pop3 server with either masqmail
   1.192 +or fetchmail, and the server supports Envelope-to: headers, and you want to make use
   1.193 +of those with a mail filtering tool, eg. procmail. It cannot be preserved because
   1.194 +masqmail sets such a header by itself.</p>
   1.195 +<p>Default is false.</p>
   1.196 +
   1.197 +
   1.198 +
   1.199 +
   1.200 +<p><b>do_relay = <em>boolean</em></b></p>
   1.201 +
   1.202 +<p>If this is set to false, mail with a return path that is not local and a
   1.203 +destination that is also not local will not be accepted via smtp and a 550
   1.204 +reply will be given. Default is true.</p>
   1.205 +<p>Note that this will not protect you from spammers using open relays, but from
   1.206 +users unable to set their address in their mail clients.</p>
   1.207 +
   1.208 +
   1.209 +
   1.210 +
   1.211 +<p><b>do_queue = <em>boolean</em></b></p>
   1.212 +
   1.213 +<p>If this is set, mail will not be delivered immediately when
   1.214 +accepted. Same as calling masqmail with the <b>-odq</b> option.</p>
   1.215 +
   1.216 +
   1.217 +
   1.218 +
   1.219 +<p><b>online_routes.<em>name</em> = <em>list</em></b></p>
   1.220 +
   1.221 +
   1.222 +<p>Replace <em>name</em> with a name to identify a connection. Set this
   1.223 +to a filename (or a list of filenames) for the special route configuration for that
   1.224 +connection. You will use that name to call masqmail with the
   1.225 + <b>-qo</b> option every time a connection to your ISP is set
   1.226 +up.</p>
   1.227 +
   1.228 +<p>Example: Your ISP has the name FastNet. Then you write the
   1.229 +following line in the main configuration:</p>
   1.230 +
   1.231 +<p><b>online_routes.FastNet</b> = <em>"/etc/masqmail/fastnet.route"</em></p>
   1.232 +
   1.233 +<p><em>/etc/masqmail/fastnet.route</em> is the route configuration
   1.234 +file, see <a href="masqmail.route.5.html">masqmail.route</a>. As soon as a link to FastNet has been set up, you
   1.235 +call masqmail <b>-qo</b> <em>FastNet</em>. Masqmail will then
   1.236 +read the specified file and send the mails.</p>
   1.237 +
   1.238 +
   1.239 +
   1.240 +
   1.241 +
   1.242 +<p><b>connect_route.<em>name</em> = <em>list</em></b></p>
   1.243 +
   1.244 +<p>Old name for <b>online_routes</b>.</p>
   1.245 +
   1.246 +
   1.247 +
   1.248 +
   1.249 +
   1.250 +<p><b>local_net_route = <em>file</em></b></p>
   1.251 +
   1.252 +<p>This is similar to <b>online_routes.<em>name</em></b> but for the
   1.253 +local net. Recipient addresses that are in local_nets will be
   1.254 +routed using this route configuration. Main purpose is to define a
   1.255 +mail server with mail_host in your local network. In simple
   1.256 +environments this can be left unset. If unset, a default route
   1.257 +configuration will be used.</p>
   1.258 +
   1.259 +
   1.260 +
   1.261 +
   1.262 +<p><b>alias_file = <em>file</em></b></p>
   1.263 +
   1.264 +<p>Set this to the location of your alias file. If unset, no aliasing
   1.265 +will be done.</p>
   1.266 +
   1.267 +
   1.268 +
   1.269 +
   1.270 +<p><b>alias_local_caseless = <em>boolean</em></b></p>
   1.271 +
   1.272 +<p>If this is set, local parts in the alias file will be matched
   1.273 +disregarding upper/lower case.</p>
   1.274 +
   1.275 +
   1.276 +
   1.277 +
   1.278 +<p><b>pipe_fromline = <em>boolean</em></b></p>
   1.279 +
   1.280 +<p>If this is set, a from line will be prepended to the output stream whenever
   1.281 +a pipe command is called after an alias expansion. Default is false.</p>
   1.282 +
   1.283 +
   1.284 +
   1.285 +
   1.286 +<p><b>pipe_fromhack = <em>boolean</em></b></p>
   1.287 +
   1.288 +<p>If this is set, each line beginning with 'From ' is replaced with '>From ' whenever
   1.289 +a pipe command is called after an alias expansion. You probably want this if you have
   1.290 +set <b>pipe_fromline</b> above. Default is false.</p>
   1.291 +
   1.292 +
   1.293 +
   1.294 +
   1.295 +<p><b>mbox_default = <em>string</em></b></p>
   1.296 +
   1.297 +<p>The default local delivery method. Can be one of mbox, mda or
   1.298 +maildir (the latter only if maildir support is enabled at compile
   1.299 +time). Default is mbox. You can override this for each user by using
   1.300 +the <b>mbox_users</b>, <b>mda_users</b> or <b>maildir_users</b> options
   1.301 +(see below).
   1.302 +</p>
   1.303 +
   1.304 +
   1.305 +
   1.306 +
   1.307 +<p><b>mbox_users = <em>list</em></b></p>
   1.308 +
   1.309 +<p>A list of users which wish delivery to an mbox style mail folder.</p>
   1.310 +
   1.311 +
   1.312 +
   1.313 +
   1.314 +<p><b>mda_users = <em>list</em></b></p>
   1.315 +
   1.316 +<p>A list of users which wish local delivery to an mda. You have to
   1.317 +set <b>mda</b> (see below) as well.</p>
   1.318 +
   1.319 +
   1.320 +
   1.321 +
   1.322 +<p><b>maildir_users = <em>list</em></b></p>
   1.323 +
   1.324 +<p>A list of users which wish delivery to a qmail style maildir. The
   1.325 +path to maildir is ~/Maildir/. The maildir will be created if it
   1.326 +does not exist.</p>
   1.327 +
   1.328 +
   1.329 +
   1.330 +
   1.331 +<p><b>mda = <em>expand string</em></b></p>
   1.332 +
   1.333 +<p>If you want local delivery to be transferred to an mda (Mail
   1.334 +Delivery Agent), set this to a command. The argument will be expanded
   1.335 +on delivery time, you can use variables beginning with a '$' sign,
   1.336 +optionally enclosed in curly braces. Variables you can use are:</p>
   1.337 +<p>uid - the unique message id. This is not necessarily identical with
   1.338 +the Message ID as given in the Message ID: header.</p>
   1.339 +<p>received_host - the host the mail was received from</p>
   1.340 +<p>ident - the ident, this is either the ident delivered by the ident
   1.341 +protocol or the user id of the sender if the message was received locally.</p>
   1.342 +<p>return_path_local - the local part of the return path (sender).</p>
   1.343 +<p>return_path_domain - the domain part of the return path (sender).</p>
   1.344 +<p>return_path - the complete return path (sender).</p>
   1.345 +<p>rcpt_local - the local part of the recipient.</p>
   1.346 +<p>rcpt_domain - the domain part of the recipient.</p>
   1.347 +<p>rcpt - the complete recipient address.</p>
   1.348 +<p>Example:</p><p>mda="/usr/bin/procmail -Y -d ${rcpt_local}"</p>
   1.349 +<p>For the mda, as for pipe commands, a few environment variables will
   1.350 +be set as well. See <a href="masqmail.8.html">masqmail</a>. To use environment variables for the mda,
   1.351 +the '$' sign has to be escaped with a backslash, otherwise they will
   1.352 +be tried to be expanded with the internal variables.</p>
   1.353 +
   1.354 +
   1.355 +
   1.356 +
   1.357 +
   1.358 +<p><b>mda_fromline = <em>boolean</em></b></p>
   1.359 +
   1.360 +<p>If this is set, a from line will be prepended to the output stream whenever
   1.361 +a message is delivered to an mda. Default is false.</p>
   1.362 +
   1.363 +
   1.364 +
   1.365 +
   1.366 +<p><b>mda_fromhack = <em>boolean</em></b></p>
   1.367 +
   1.368 +<p>If this is set, each line beginning with 'From ' is replaced with '>From ' whenever
   1.369 +a message is delivered to an mda. You probably want this if you have
   1.370 +set <b>mda_fromline</b> above. Default is false.</p>
   1.371 +
   1.372 +
   1.373 +
   1.374 +
   1.375 +<p><b>online_detect = <em>string</em></b></p>
   1.376 +
   1.377 +<p>Defines the method MasqMail uses to detect whether there is
   1.378 +currently an online connection. It can have the
   1.379 +values <b>file</b>, <b>pipe</b> or <b>mserver</b>.</p>
   1.380 +
   1.381 +<p>When it is set to <b>file</b>, MasqMail first checks for the
   1.382 +existence of <b>online_file</b> (see below) and if it exists, it reads
   1.383 +it. The content of the file should be the name of the current
   1.384 +connection as defined with <b>connect_route.<em>name</em></b> (without
   1.385 +a trailing newline character).</p>
   1.386 +
   1.387 +<p>When it is set to <b>pipe</b>, MasqMail calls the executable given by
   1.388 +the <b>online_pipe</b> option (see below) and reads the current online
   1.389 +status from its standard output.</p>
   1.390 +
   1.391 +<p>When it is set to <b>mserver</b>, MasqMail connects to the
   1.392 +masqdialer server using the value of <b>mserver_iface</b> and asks it
   1.393 +whether a connection exists and for the name, which should be the name
   1.394 +of the current connection as defined with <b>connect_route.<em>name</em></b>.</p>
   1.395 +
   1.396 +<p>No matter how MasqMail detects the online status, only messages
   1.397 +that are accepted at online time will be delivered using the
   1.398 +connection. The spool still has to be emptied with masqmail <b>-qo</b>
   1.399 +<em>connection</em>.</p>
   1.400 +
   1.401 +
   1.402 +
   1.403 +
   1.404 +<p><b>online_file = <em>file</em></b></p>
   1.405 +
   1.406 +<p>This is the name of the file checked for when MasqMail determines
   1.407 +whether it is online. The file should only exist when there is
   1.408 +currently a connection. Create it in your ip-up script with eg.</p>
   1.409 +
   1.410 +<p>echo -n <name> > /tmp/connect_route</p>
   1.411 +<p>chmod 0644 /tmp/connect_route</p>
   1.412 +
   1.413 +<p>Do not forget to delete it in your ip-down script.</p>
   1.414 +
   1.415 +
   1.416 +
   1.417 +
   1.418 +<p><b>online_pipe = <em>file</em></b></p>
   1.419 +
   1.420 +<p>This is the name of the executable which will be called to determine
   1.421 +the online status. This executable should just print the name oif the current
   1.422 +connection to the standard output and return a zero status code. masqmail assumes
   1.423 +it is offline if the script returns with a non zero status. Simple example:</p>
   1.424 +
   1.425 +<p>#!/bin/sh</p>
   1.426 +<p></p>
   1.427 +<p>[ -e /tmp/connect_route ] || exit 1</p>
   1.428 +<p>cat /tmp/connect_route</p>
   1.429 +<p>exit 0</p>
   1.430 +
   1.431 +<p>Of course, instead of the example above you could as well use <b>file</b> as
   1.432 +the online detection method, but you can do something more sophisticated.</p>
   1.433 +
   1.434 +
   1.435 +
   1.436 +
   1.437 +<p><b>mserver_iface = <em>interface</em></b></p>
   1.438 +
   1.439 +<p>The interface the masqdialer server is listening to. Usually this
   1.440 +will be "localhost:224" if mserver is running on the same host as
   1.441 +masqmail. But using this option, you can also let masqmail run on
   1.442 +another host by setting <b>mserver_iface</b> to another hostname,
   1.443 +eg. "foo:224".</p>
   1.444 +
   1.445 +
   1.446 +
   1.447 +
   1.448 +<p><b>get.<em>name</em> = <em>file</em></b></p>
   1.449 +
   1.450 +<p>Replace <em>name</em> with a name to identify a get
   1.451 +configuration. Set this to a filename for the get configuration. These
   1.452 +files will be used to retrieve mail when called with the -g option.</p>
   1.453 +
   1.454 +
   1.455 +
   1.456 +
   1.457 +<p><b>online_gets.<em>name</em> = <em>list</em></b></p>
   1.458 +
   1.459 +<p>Replace <em>name</em> with a name to identify an online
   1.460 +configuration. Set this to a filename (or a list of filenames) for the get configuration. These
   1.461 +files will be used to retrieve mail when called with the -go option.</p>
   1.462 +
   1.463 +
   1.464 +
   1.465 +
   1.466 +<p><b>ident_trusted_nets = <em>list</em></b></p>
   1.467 +
   1.468 +<p><em>list</em> is a list of networks of the form a.b.c.d/e
   1.469 +(eg. 192.168.1.0/24), from which the ident given by the ident protocol
   1.470 +will be trusted, so a user can delete his mail from the queue if the
   1.471 +ident is identical to his login name.</p>
   1.472 +
   1.473 +
   1.474 +
   1.475 +
   1.476 +<p><b>errmsg_file = <em>file</em></b></p>
   1.477 +
   1.478 +<p>Set this to a template which will be used to generate delivery failure
   1.479 +reports. Variable parts within the template begin with a dollar sign and
   1.480 +are identical to those which can be used as arguments for the mda command,
   1.481 +see <b>mda</b> above. Additional information can be included with
   1.482 +@failed_rcpts, @msg_headers and @msg_body, these must be at the
   1.483 +beginning of a line and will be replaced with the list of the failed recipients,
   1.484 +the message headers and the message body of the failed message.</p>
   1.485 +<p>Default is /usr/share/masqmail/tpl/failmsg.tpl.</p>
   1.486 +
   1.487 +
   1.488 +
   1.489 +
   1.490 +<p><b>warnmsg_file = <em>file</em></b></p>
   1.491 +
   1.492 +<p>Set this to a template which will be used to generate delivery warning
   1.493 +reports. It uses the same mechanisms for variables as <b>errmsg_file</b>,
   1.494 +see above.
   1.495 +</p>
   1.496 +<p>Default is /usr/share/masqmail/tpl/warnmsg.tpl.</p>
   1.497 +
   1.498 +
   1.499 +
   1.500 +
   1.501 +<p><b>warn_intervals</b> = <em>list</em></p>
   1.502 +
   1.503 +<p>Set this to a list of time intervals, at which delivery warnings (starting
   1.504 +with the receiving time of the message) shall be generated.</p>
   1.505 +<p>A warning will only be generated just after an attempt to deliver the
   1.506 +mail and if that attempt failed temporarily. So a warning may be generated after
   1.507 +a longer time, if there was no attempt before.</p>
   1.508 +<p>Default is "1h;4h;8h;1d;2d;3d"</p>
   1.509 +
   1.510 +
   1.511 +
   1.512 +
   1.513 +<p><b>max_defer_time</b> = <em>time</em></p>
   1.514 +
   1.515 +<p>This is the maximum time, in which a temporarily failed mail will be kept
   1.516 +in the spool. When this time is exceeded, it will be handled as a delivery failure,
   1.517 +and the message will be bounced.</p>
   1.518 +<p>The excedence of this time will only be noticed if the message was actually
   1.519 +tried to be delivered. If, for example, the message can only be delivered when
   1.520 +online, but you have not been online for that time, no bounce will be generated.</p>
   1.521 +<p>Default is 4d (4 days)</p>
   1.522 +
   1.523 +
   1.524 +
   1.525 +
   1.526 +<p><b>log_user = <em>name</em></b></p>
   1.527 +
   1.528 +<p>Replace <em>name</em> with a valid local or remote mail address.</p>
   1.529 +<p>If this option is not empty, then a copy of every mail,
   1.530 +that passes trough the masqmail system will also be sent to the
   1.531 +given mail address.</p>
   1.532 +<p>For example you can feed your mails into a program like hypermail for
   1.533 +archiving purpose by placing an appropriate pipe command in masqmail.alias</p>
   1.534 +
   1.535 +
   1.536 +
   1.537 +
   1.538 +
   1.539 +<h2>Author</h2>
   1.540 +
   1.541 +<p>masqmail was written by Oliver Kurth
   1.542 +<oku@masqmail.cx></p><p>You will find the newest version of
   1.543 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it
   1.544 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list,
   1.545 +you will find information about it at masqmails main site.</p>
   1.546 +
   1.547 +
   1.548 +
   1.549 +<h2>Bugs</h2>
   1.550 +
   1.551 +<p>You should report them to the mailing list.</p>
   1.552 +
   1.553 +
   1.554 +
   1.555 +<h2>See also</h2>
   1.556 +
   1.557 +<p>
   1.558 +<a href="masqmail.8.html">masqmail</a>, <a href="masqmail.route.5.html">masqmail.route</a>, <a href="masqmail.get.5.html">masqmail.get</a>
   1.559 +</p>
   1.560 +
   1.561 +
   1.562 +
   1.563 +
   1.564 +<h2>Comments</h2>
   1.565 +
   1.566 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same
   1.567 +author.</p>
   1.568 +
   1.569 +
   1.570 +
   1.571 +</td></tr></table></center>
   1.572 +</body>