docs/diploma
changeset 1:7b2a5fe2aedd
added old website masqmail.cx
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/docs/masqmail.cx/alias.html Thu Sep 18 18:57:02 2008 +0200 1.3 @@ -0,0 +1,84 @@ 1.4 + 1.5 + 1.6 + 1.7 + 1.8 + 1.9 + 1.10 + 1.11 + 1.12 +<HTML> 1.13 +<HEAD> 1.14 +<TITLE>MasqMail - Manual 1.15 +</TITLE> 1.16 +</HEAD> 1.17 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 1.18 + 1.19 + <center> 1.20 + <table width="80%"> 1.21 + <tr><td> 1.22 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 1.23 +<tr> 1.24 + <td> 1.25 + <a href="manual.html"> 1.26 + <img width="20" src = "../images/u_arrow.gif" alt = "manual"> 1.27 + </a> 1.28 + </td> 1.29 +<td align=center width="100%"><font size="6" color = "#ffffff">Alias Format</font></td> 1.30 +<td> 1.31 + <a href="options.html"> 1.32 + <img width="20" src = "../images/l_arrow.gif" alt = "Options"> 1.33 + </a> 1.34 +</td> 1.35 +<td> 1.36 + <a href="config.html"> 1.37 + <img width="20" src = "../images/r_arrow.gif" alt = "Configuration"> 1.38 + </a> 1.39 +</td> 1.40 +</tr> 1.41 +</table> 1.42 + 1.43 + 1.44 +<p>The alias file consists of lines of the form:</p> 1.45 +<pre> 1.46 +local_part: item1, item2, ... 1.47 +</pre> 1.48 + 1.49 +<p>Items can be surrounded by quotes '"'. If within the quotes other 1.50 +quotes are needed for an address they can be escaped with a leading 1.51 +backslash '\'.</p> 1.52 + 1.53 +<p>A leading '\' indicates that this address shall not be further 1.54 +expanded.</p> 1.55 + 1.56 +<p>A leading pipe symbol '|' indicates that the item shall be treated 1.57 +as a pipe command. The content of the message will then be sent to the 1.58 +standard input of a command. The command will run under the user id 1.59 +and group id masqmail is running as. If quotes are needed, the pipe 1.60 +symbol must appear <i>within</i> the quotes.</p> 1.61 + 1.62 +<p>Loops will be detected, the offending address will be ignored.</p> 1.63 + 1.64 +<p>Aliases will be expanded at <i>delivery</i> time. This means that 1.65 +if there is a message still in the queue and you change any alias 1.66 +which matches one of the recipient addresses, the change will have 1.67 +effect next time a delivery is attemped.</p> 1.68 + 1.69 +<p>There is no need to restart masqmail or run any command when the 1.70 +alias file has been changed.</p> 1.71 + </td></tr> 1.72 + 1.73 + <tr><td> 1.74 + <p> 1.75 + <hr> 1.76 + <address><a href = "mailto:kurth@innominate.de">Oliver Kurth</a></address> 1.77 + Last modified: Tue May 30 15:19:57 CEST 2000 1.78 + <br> 1.79 + This page was created using <a href="http://www.freddyfrog.com/hacks/genpage/">Genpage</a> - Version: 1.0.6 1.80 + </p> 1.81 + 1.82 + </table> 1.83 + </center> 1.84 + 1.85 + </BODY> 1.86 +</HEAD> 1.87 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/docs/masqmail.cx/config.html Thu Sep 18 18:57:02 2008 +0200 2.3 @@ -0,0 +1,385 @@ 2.4 + 2.5 + 2.6 + 2.7 + 2.8 + 2.9 + 2.10 + 2.11 + 2.12 +<HTML> 2.13 +<HEAD> 2.14 +<TITLE>MasqMail - Manual 2.15 +</TITLE> 2.16 +</HEAD> 2.17 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 2.18 + 2.19 + <center> 2.20 + <table width="80%"> 2.21 + <tr><td> 2.22 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 2.23 +<tr> 2.24 + <td> 2.25 + <a href="manual.html"> 2.26 + <img width="20" src = "../images/u_arrow.gif" alt = "manual"> 2.27 + </a> 2.28 + </td> 2.29 +<td align=center width="100%"><font size="6" color = "#ffffff">Configuration</font></td> 2.30 +<td> 2.31 + <a href="alias.html"> 2.32 + <img width="20" src = "../images/l_arrow.gif" alt = "Alias Format"> 2.33 + </a> 2.34 +</td> 2.35 +<td> 2.36 + <a href="faq.html"> 2.37 + <img width="20" src = "../images/r_arrow.gif" alt = "Frequently Asked Questions"> 2.38 + </a> 2.39 +</td> 2.40 +</tr> 2.41 +</table> 2.42 + 2.43 + 2.44 +<p>The configuration consists of lines of the form</p> 2.45 + 2.46 +<i>val</i> = <i>expression</i> 2.47 + 2.48 +<p>Where <i>val</i> is a variable name and <i>expression</i> a string, 2.49 +which can be quoted with '"'. If the expression is on multiple lines 2.50 +or contains characters other than letters, digits or the charcaters 2.51 +'.', '-', '_', '/', it <em>must</em> be quoted. Unfortunately, you 2.52 +cannot use quotes inside quotes. (Will be implemented in a later 2.53 +version.)</p> 2.54 + 2.55 +<p>Each val has a <i>type</i>, which can be boolean, numeric, string 2.56 +or list. A boolean variable can be set with one of the values 'on', 2.57 +'yes', and 'true' or 'off', 'no' and 'false'. List items are separated 2.58 +with ';'. For some values patterns (like '*','?') can be used. The 2.59 +spaces before and after the '=' are optional.</p> 2.60 + 2.61 +<p>Most lists (exceptions: local_hosts, local_nets and 2.62 +listen_addresses) accept files. These will be recognized by a leading 2.63 +slash '/'. The contents of these files will be included at the 2.64 +position of the file name, there can be items or other files before 2.65 +and after the file entry. The format of the files is different 2.66 +though, within these files each entry is on another line. (And not 2.67 +separated by semicolons). This makes it easy to include large lists 2.68 +which are common in different configuration files, so they do not have 2.69 +to appear in every configuration file.</p> 2.70 + 2.71 +<p>Blank lines and lines starting with '#' are ignored.</p> 2.72 + 2.73 +<h4><font color = "#ff0000">Main Configuration</font></h4> 2.74 + 2.75 +<b>run_as_user</b>, Type: <i>boolean</i>, default: <i>false</i> 2.76 + 2.77 +<p>If this is set, masqmail runs with the user id of the user who 2.78 +invoked it and never changes it. This is for debugging purposes 2.79 +<em>only</em>. If the user is not root, masqmail will not be able to 2.80 +listen on a port < 1000 and will not be able to deliver local mail 2.81 +to others than the user.</p> 2.82 + 2.83 +<b>use_syslog</b>, Type: <i>boolean</i>, default: <i>false</i> 2.84 + 2.85 +<p>If this is set, masqmail uses syslogd for logging. It uses facility 2.86 +<i>MAIL</i>. You still have to set <b>log_dir</b> for debug files.</p> 2.87 + 2.88 +<b>debug_level</b>, Type: <i>numeric</i>, default: <i>0</i> 2.89 + 2.90 +<p>Set the debug level. Valid values are 0 to 6, increasing it further 2.91 +makes no difference. Be careful if you set this as high as 5 or higher, 2.92 +the logs may very soon fill your hard drive.</p> 2.93 + 2.94 +<b>mail_dir</b>, Type: <i>string</i>, default: <i>none</i> 2.95 + 2.96 +<p>The directory where local mail is stored, usually /var/spool/mail.</p> 2.97 + 2.98 +<b>spool_dir</b>, Type: <i>string</i>, default: <i>none</i> 2.99 + 2.100 +<p>The directory where masqmail stores its spool files (and later also 2.101 +other stuff). It <em>must</em> have a subdirectory 2.102 +<i>input</i>. Masqmail needs read and write permissions for this 2.103 +directory. I suggest to use /var/spool/masqmail.</p> 2.104 + 2.105 +<b>log_dir</b>, Type: <i>string</i>, default: <i>none</i> 2.106 + 2.107 +<p>The directory where masqmail puts its log files, these are 2.108 +<i>masqmail.log</i> and <i>debug.log</i>. Masqmail needs write 2.109 +permission.</p> 2.110 + 2.111 +<b>host_name</b>, Type: <i>string</i>, default: <i>none</i> 2.112 + 2.113 +<p>This is used in different places: Masqmail identifies itself in the 2.114 +greeting banner on incoming connections and in the HELO/EHLO command 2.115 +for outgoing connections with this name, it is used in the Received: 2.116 +header and to qualify the sender of a locally originating message.</p> 2.117 + 2.118 +<p>It is <em>not</em> used to find whether an address is local. Use 2.119 +<b>local_hosts</b> for that.</p> 2.120 + 2.121 +<b>local_hosts</b>, Type: <i>list</i>, default: <i>none</i> 2.122 + 2.123 +<p>A semicolon ';' separated list of hostnames which are considered 2.124 +local. Normally you set it to "localhost;foo;foo.bar.com" if your host 2.125 +has the fully qualified domain name 'foo.bar.com'.</p> 2.126 + 2.127 +<b>local_nets</b>, Type: <i>list</i>, default: <i>none</i> 2.128 + 2.129 +<p>A semicolon ';' separated list of hostnames which are on the 2.130 +'local' net. Delivery to these hosts is attempted immediately. You can 2.131 +use patterns with '*', eg. "*.bar.com".</p> 2.132 + 2.133 +<b>listen_addresses</b>, Type: <i>list</i>, default: <i>none</i> 2.134 + 2.135 +<p>A semicolon ';' separated list of interfaces on which connections 2.136 +will be accepted. An interface ist defined by a hostname, optionally 2.137 +followed by a colon ':' and a number for the port. If this is left out, 2.138 +port 25 will be used.</p> 2.139 + 2.140 +<p>You can set this to "localhost:25;foo:25" if your hostname is 'foo'.</p> 2.141 + 2.142 +<b>do_queue</b>, Type: <i>boolean</i>, default: <i>false</i> 2.143 + 2.144 +<p>If this is set, mail will not be delivered immediately when 2.145 +accepted. Same as calling masqmail with the -odq option.</p> 2.146 + 2.147 +<b>connect_route.<name></b>, Type: <i>string</i>, default: <i>none</i> 2.148 + 2.149 +<p>Replace <name> with a name to identify a connection. Set this 2.150 +to a filename for the special <i>route</i> configuration for that 2.151 +connection. You will use that name to call masqmail with the -qo option 2.152 +every time a connection to your ISP is set up.</p> 2.153 + 2.154 +<p>Example: Your ISP has the name <i>FastNet</i>. Then you write the 2.155 +following line in the main configuration:</p> 2.156 + 2.157 +<p><pre>connect_route.FastNet = "/etc/masqmail/fastnet.route"</pre></p> 2.158 + 2.159 +<p>/etc/masqmail/fastnet.route is the route configuration file, see 2.160 +below. As soon as a link to FastNet has been set up, you call masqmail 2.161 +-qoFastNet. Masqmail will then read the specified file and send the 2.162 +mails.</p> 2.163 + 2.164 +<b>local_net_route</b>, Type: <i>string</i>, default: <i>none</i> 2.165 + 2.166 +<p>This is similar to <b>connect_route.<name></b> but for the 2.167 +local net. Recipient addresses that are in <b>local_nets</b> will be 2.168 +routed using this route configuration. Main purpose is to define a 2.169 +mail server with <b>mail_host</b> in your local network. In simple 2.170 +environments this can be left unset. If unset, a default route 2.171 +configuration will be used.</p> 2.172 + 2.173 +<b>alias_file</b> 2.174 + 2.175 +<p>Set this to the location of your alias file. If unset, no aliasing 2.176 +will be done.</p> 2.177 + 2.178 +<b>online_detect</b>, Type: <i>string</i>, default: <i>none</i> 2.179 + 2.180 +<p>Defines the method MasqMail uses to detect whether there is 2.181 +currently an online connection. It can have the values <em>file</em> 2.182 +or <em>mserver</em>.</p> 2.183 + 2.184 +<p>When it is set to <em>file</em>, MasqMail first checks for the 2.185 +existence of <b>online_file</b> (see below) and if it exists, it reads 2.186 +it. The content of the file should be the name of the current 2.187 +connection as defined with <b>connect_route.<name></b> (without 2.188 +a trailing newline character).</p> 2.189 + 2.190 +<p>When it is set to <em>mserver</em>, MasqMail connects to the 2.191 +masqdialer server using the value of <b>mserver_iface</b> and asks it 2.192 +whether a connection exists and for the name, which should be the name 2.193 +of the current connection as defined with 2.194 +<b>connect_route.<name></b>.</p> 2.195 + 2.196 +<p>The online status is checked either when masqmail receives a mail 2.197 +with an address outside your LAN or when called with the -qo option 2.198 +(without arguments).</p> 2.199 + 2.200 +<b>online_file</b>, Type: <i>string</i>, default: <i>none</i> 2.201 + 2.202 +<p>This is the name of the file checked for when MasqMail determines 2.203 +whether it is online. The file should only exist when there is 2.204 +currently a connection. Create it in your ip-up script with eg.</p> 2.205 + 2.206 +<p><pre> 2.207 +echo -n <name> > /tmp/connect_route 2.208 +chmod 0644 /tmp/connect_route 2.209 +</pre></p> 2.210 + 2.211 +<p>Do not forget to delete it in your ip-down script.</p> 2.212 + 2.213 +<b>mserver_iface</b>, Type: <i>string</i>, default: <i>none</i> 2.214 + 2.215 +<p>The interface the masqdialer server is listening to. Usually this 2.216 +will be "localhost:224" if mserver is running on the same host as 2.217 +masqmail. But using this option, you can also let masqmail run on 2.218 +another host by setting mserver_iface to another hostname, 2.219 +eg. "foo:224".</p> 2.220 + 2.221 +<b>get.<name></b>, Type: <i>string</i>, default: <i>none</i> 2.222 + 2.223 +<p>Replace <name> with a name to identify a <i>get</i> 2.224 +configuration. Set this to a filename for the <i>get</i> 2.225 +configuration. These files will be used to retrieve mail when called 2.226 +with the -g option.</p> 2.227 + 2.228 +<h4><font color = "#ff0000">Route Configuration</font></h4> 2.229 + 2.230 +<b>mail_host</b>, Type: <i>string</i>, default: <i>none</i> 2.231 + 2.232 +<p>This is preferably the mail server of your ISP. All outgoing 2.233 +messages will be sent to this host which will distribute them to their 2.234 +destinations. If you do not set this mails will be sent 2.235 +directly. Because the mail server is probably 'near' to you, mail 2.236 +transfer will be much faster if you use it.</p> 2.237 + 2.238 +<b>do_correct_helo</b>, Type: <i>boolean</i>, default: <i>false</i> 2.239 + 2.240 +<p>If this is set, masqmail tries to look up your host name as it 2.241 +appears on the internet and sends this in the HELO/EHLO command. Some 2.242 +servers are so picky that they want this. <em>Which is really 2.243 +crazy. It just does not make any sense to lie about ones own identity, 2.244 +because it can always be looked up by the server. Nobody should 2.245 +believe in the name given by HELO/EHLO anyway.</em> If this is not 2.246 +set, <b>host_name</b> will be used.</p> 2.247 + 2.248 +<b>allowed_mail_locals</b>, Type: <i>list</i>, default: <i>none(all)</i> 2.249 + 2.250 +<p>This is a semicolon ';' separated list of local parts which will be 2.251 +allowed to send mail through this connection. If unset and 2.252 +<b>not_allowed_mail_locals</b> is also unset, all users are 2.253 +allowed.</p> 2.254 + 2.255 +<b>not_allowed_mail_locals</b>, Type: <i>list</i>, default: <i>none</i> 2.256 + 2.257 +<p>This is a semicolon ';' separated list of local parts which will be 2.258 +<em>not</em> allowed to send mail through this connection. <em>Local 2.259 +parts in this list will not be allowed to use this route even if they 2.260 +are part of <b>allowed_mail_locals</b> (see above).</em></p> 2.261 + 2.262 +<b>allowed_rcpt_domains</b>, Type: <i>list</i>, default: <i>none(all)</i> 2.263 + 2.264 +<p>A list of recipient domains where mail will be sent to. This is for 2.265 +example useful if you use this route configuration when connected to 2.266 +another LAN via ppp. Patterns containing '?' and '*' can be used.</p> 2.267 + 2.268 +<b>not_allowed_rcpt_domains</b>, Type: <i>list</i>, default: <i>none</i> 2.269 + 2.270 +<p>A list of recipient domains where mail will <em>not</em> be sent 2.271 +to. This is for example useful if you send mail directly (mail_host 2.272 +ist not set) and you know of hosts that will not accept mail from you 2.273 +because they use a dialup list (eg. <a 2.274 +href="http://maps.vix.com/dul/"> maps.vix.com/dul/</a>). If any domain 2.275 +matches <em>both</em> <b>allowed_rcpt_domains</b> and 2.276 +<b>not_allowed_rcpt_domains</b>, mail will <em>not</em> be sent to 2.277 +this domain. Patterns containing '?' and '*' can be used.</p> 2.278 + 2.279 +<b>set_h_from_domain</b>, Type: <i>string</i>, default: <i>none</i> 2.280 + 2.281 +<p>Replace the domain part in 'From:' headers with this value. This 2.282 +may be useful if you use a private, outside unknown address on your 2.283 +local LAN and want this to be replaced by the domain of the address of 2.284 +your email addrsss on the internet. <em>Note that this is different to 2.285 +<b>set_return_path_domain</b>, see below.</em></p> 2.286 + 2.287 +<b>set_h_reply_to_domain</b>, Type: <i>string</i>, default: <i>none</i> 2.288 + 2.289 +<p>Same as <b>set_h_from_domain</b>, but for the 'Reply-To' header.</p> 2.290 + 2.291 +<b>set_return_path_domain</b>, Type: <i>string</i>, default: <i>none</i> 2.292 + 2.293 +<p>Sets the domain part of the envelope from address. Some hosts check 2.294 +whether this is the same as the net the connection is coming from. If 2.295 +not, they reject the mail because they suspect spamming. It should be 2.296 +a <em>valid</em> address, because some mail servers also check 2.297 +that. You can also use this to set it to your usual address on the 2.298 +internet and put a local address only known on your LAN in the 2.299 +configuration of your mailer. <em>Only the <em>domain</em> part will 2.300 +be changed, the local part remains unchanged. Use 2.301 +<b>map_return_path_addresses</b> for rewriting local parts</em>.</p> 2.302 + 2.303 +<b>map_h_from_addresses</b>, Type: <i>list</i>, default: <i>none</i> 2.304 + 2.305 +<p>This is similar to <b>set_h_from_domain</b>, but more flexible. Set 2.306 +this to a list which maps local parts to a full RFC 822 compliant 2.307 +email address, the local parts (the <em>keys</em>) are separated from 2.308 +the addresses (the <em>values</em>) by colons (':').</p> 2.309 + 2.310 +<p>Example:</p> 2.311 + 2.312 +<p><pre> 2.313 +map_h_from_addresses = 2.314 +"john: John Smith <jsmith@mail.academic.edu>; 2.315 +charlie: Charlie Miller <cmiller@mx.commercial.com>" 2.316 +</pre></p> 2.317 + 2.318 +<b>map_h_reply_to_addresses</b>, Type: <i>list</i>, default: <i>none</i> 2.319 + 2.320 +<p>Same as <b>map_h_from_addresses</b>, but for the 'Reply-To:' header.</p> 2.321 + 2.322 +<b>map_return_path_addresses</b>, Type: <i>list</i>, default: <i>none</i> 2.323 + 2.324 +<p>This is similar to <b>set_return_path_domain</b>, but more 2.325 +flexible. Set this to a list which maps local parts to a full RFC 821 2.326 +compliant email address, the local parts (the <em>keys</em>) are 2.327 +separated from the addresses (the <em>values</em>) by colons 2.328 +(':'). Note that this option takes <em>RFC 821</em> addresses 2.329 +while <b>map_h_from_addresses</b> takes <em>RFC 822</em> addresses. The 2.330 +most important difference is that RFC 821 addresses have no full 2.331 +name.</p> 2.332 + 2.333 +<p>Example:</p> 2.334 +<p><pre> 2.335 +map_return_path_addresses = 2.336 +"john: <jsmith@mail.academic.edu>; 2.337 +charlie: <cmiller@mx.commercial.com>" 2.338 +</pre></p> 2.339 + 2.340 +<b>expand_h_sender_domain</b>, Type: <i>boolean</i>, default: <i>true</i> 2.341 + 2.342 +<p>This sets the domain of the sender address as given by the Sender: 2.343 +header to the same domain as in the envelope return path address 2.344 +(which can be set by either <b>set_return_path_domain</b> or 2.345 +<b>map_return_path_addresses</b>). This is for mail clients 2.346 +(eg. Microsoft Outlook) which use this address as the sender 2.347 +address. <em>Though they should use the From: address, see RFC 2.348 +821. </em>If <i>fetchmail</i> encounters an unqualified Sender: 2.349 +address, it will be expanded to the domain of the pop server, which is 2.350 +almost never correct. </p> 2.351 + 2.352 +<b>auth_name</b>, Type: <i>string</i>, default: <i>none</i> 2.353 + 2.354 +<p>Set the authentication type for ESMTP AUTH authentification. 2.355 +Currently only 'cram-md5' is supported.</p> 2.356 + 2.357 +<b>auth_login</b>, Type: <i>string</i>, default: <i>none</i> 2.358 + 2.359 +<p>Your account name for ESMTP AUTH authentification.</p> 2.360 + 2.361 +<b>auth_secret</b>, Type: <i>string</i>, default: <i>none</i> 2.362 + 2.363 +<p>Your secret for ESMTP AUTH authentification.</p> 2.364 + 2.365 +<b>pop_login</b>, Type: <i>string</i>, default: <i>none</i> 2.366 + 2.367 +<p>If your Mail server requires SMTP-after-POP, set this to a 2.368 +<i>get</i> configuration. If you login to the POP server 2.369 +<em>before</em> you send, this is not necessary. See the <a href = 2.370 +"get.html"</a>get configuration</a> for more information.</p> 2.371 + 2.372 + </td></tr> 2.373 + 2.374 + <tr><td> 2.375 + <p> 2.376 + <hr> 2.377 + <address><a href = "mailto:kurth@innominate.de">Oliver Kurth</a></address> 2.378 + Last modified: Tue May 30 15:19:56 CEST 2000 2.379 + <br> 2.380 + This page was created using <a href="http://www.freddyfrog.com/hacks/genpage/">Genpage</a> - Version: 1.0.6 2.381 + </p> 2.382 + 2.383 + </table> 2.384 + </center> 2.385 + 2.386 + </BODY> 2.387 +</HEAD> 2.388 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/docs/masqmail.cx/docs/masqmail.8.html Thu Sep 18 18:57:02 2008 +0200 3.3 @@ -0,0 +1,327 @@ 3.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%"> 3.5 +<tr><td><h1>masqmail</h1> 3.6 +<h2>An offline Mail Transfer Agent</h2> 3.7 + 3.8 + 3.9 +<h2>Synopsis</h2> 3.10 +<b> 3.11 +/usr/sbin/masqmail [-C <em>file</em>] [-odq] [-bd] [-q<em>interval</em>]<br> 3.12 + 3.13 +/usr/sbin/masqmail [-odq] [-bs]<br> 3.14 + 3.15 +/usr/sbin/masqmail [-bp]<br> 3.16 + 3.17 +/usr/sbin/masqmail [-q]<br> 3.18 + 3.19 +/usr/sbin/masqmail [-qo [<em>name</em>]]<br> 3.20 + 3.21 +/usr/sbin/masqmail [-odq] [-g [<em>name</em>]]<br> 3.22 + 3.23 +/usr/sbin/masqmail [-odq] [-go [<em>name</em>]]<br> 3.24 + 3.25 +/usr/sbin/masqmail [-t] [-oi] [-f <em>address</em>] [--] <em>address...</em><br> 3.26 + 3.27 +/usr/sbin/mailq<br> 3.28 + 3.29 +</b> 3.30 + 3.31 + 3.32 +<h2>Description</h2> 3.33 + 3.34 +<p>MasqMail is a mail server designed for hosts that do 3.35 +not have a permanent internet connection eg. a home network or a 3.36 +single host at home. It has special support for connections to 3.37 +different ISPs. It replaces sendmail or other MTAs such as qmail or 3.38 +exim. It can also act as a pop3 client.</p> 3.39 + 3.40 + 3.41 + 3.42 +<h2>Options</h2> 3.43 + 3.44 +<p>Since masqmail is intended to replace sendmail, it uses the same 3.45 +command line options, but not all are implemented. There are also two 3.46 +additional options, which are unique to masqmail (-qo <em>connection</em> and -g) 3.47 +</p> 3.48 + 3.49 + 3.50 +<p><b>--</b></p> 3.51 +<p>Not a 'real' option, it means that all following arguments are to 3.52 +be understood as arguments and not as options even if they begin with a 3.53 +leading dash '-'. Mutt is known to call sendmail with this option.</p> 3.54 + 3.55 + 3.56 + 3.57 +<p><b>-bd</b></p> 3.58 +<p>Run as daemon, accepting connections, usually on port 25 if not 3.59 +configured differently. This is usually used in the startup script at system boot and 3.60 +together with the -q option (see below).</p> 3.61 + 3.62 + 3.63 + 3.64 +<p><b>-bi</b></p> 3.65 +<p>Old sendmail rebuilds its alias database when invoked with this 3.66 +option. Masqmail ignores it. Masqmail reads directly from the file 3.67 +given with alias_file in the config file.</p> 3.68 + 3.69 + 3.70 + 3.71 +<p><b>-bp</b></p> 3.72 +<p>Show the messages in the queue. Same as calling masqmail as 3.73 +'mailq'.</p> 3.74 + 3.75 + 3.76 + 3.77 +<p><b>-bs</b></p> 3.78 +<p>Accept SMTP commands from stdin. Some mailers (eg pine) use this 3.79 +option as an interface. It can also be used to call masqmail from 3.80 +inetd.</p> 3.81 + 3.82 + 3.83 + 3.84 +<p><b>-B <em>arg</em></b></p> 3.85 +<p><em>arg</em> is usually 8BITMIME. Some mailers use this 3.86 +to indicate that the message contains characters > 127. Masqmail is 3.87 +8-bit clean and ignores this, so you do not have to recompile elm, 3.88 +which is very painful ;-). Note though that this violates some 3.89 +conventions: masqmail does not convert 8 bit messages to any 3.90 +MIME format if it encounters a mail server which does not advertise 3.91 +its 8BITMIME capability, masqmail does not advertise this itself. This 3.92 +is the same practice as that of exim (but different to 3.93 +sendmail).</p> 3.94 + 3.95 + 3.96 +<p><b>-bV </b></p> 3.97 +<p>Show version information.</p> 3.98 + 3.99 + 3.100 + 3.101 + 3.102 +<p><b>-C </b><em>filename</em></p> 3.103 +<p>Use another configuration than <em>/etc/masqmail/masqmail.conf</em>. Useful for 3.104 +debugging purposes. If not invoked by a privileged user, masqmail will drop all privileges. 3.105 +</p> 3.106 + 3.107 + 3.108 + 3.109 +<p><b>-d <em>number</em></b></p> 3.110 + 3.111 +<p>Set the debug level. This takes precedence before the value of 3.112 +debug_level in the configuration file. Read the warning in the 3.113 +description of the latter. 3.114 +</p> 3.115 + 3.116 + 3.117 + 3.118 + 3.119 +<p><b>-f [<em>address</em>]</b></p> 3.120 + 3.121 +<p>Set the return path address to <em>address</em>. Only root, the 3.122 +user mail and anyoune in group trusted is allowed to do that.</p> 3.123 + 3.124 + 3.125 + 3.126 + 3.127 +<p><b>-F [<em>string</em>]</b></p> 3.128 + 3.129 +<p>Set the full sender name (in the From: header) 3.130 +to <em>string</em>.</p> 3.131 + 3.132 + 3.133 + 3.134 + 3.135 +<p><b>-g [<em>name</em>]</b></p> 3.136 + 3.137 +<p>Get mail (using pop3 or apop), using the configurations given 3.138 +with get.<em>name</em> in the main configuration. Without <em>name</em>, 3.139 +all get configurations will be used. See also <a href="masqmail.get.5.html">masqmail.get</a></p> 3.140 + 3.141 + 3.142 + 3.143 + 3.144 +<p><b>-go [<em>interval</em>] [<em>name</em>]</b></p> 3.145 + 3.146 +<p>Can be followed by a connection name. Use this option in your 3.147 +script which starts as soon as a link to the internet has been set up 3.148 +(usually ip-up). When masqmail is called with this option, the 3.149 +specified get configuration(s) is(are) read and mail will be 3.150 +retrieved from servers on the internet. 3.151 +The <em>name</em> is defined 3.152 +in the configuration (see <b>online_gets.<em>name</em></b>). 3.153 +</p><p> 3.154 +If called with an interval option (recognized by a digit 3.155 +as the first characater), masqmail starts as a daemon and tries to 3.156 +get mail in these intervals. It checks for the online status first. 3.157 +Example: masqmail -go 5m will retrieve mail 3.158 +all five minutes. 3.159 +</p><p> 3.160 +If called without <em>name</em> the online status is determined with 3.161 +the configured method (see <b>online_detect</b> in config.html). 3.162 +</p> 3.163 + 3.164 + 3.165 + 3.166 + 3.167 +<p><b>-i</b></p> 3.168 +<p>Same as -oi, see below.</p> 3.169 + 3.170 + 3.171 + 3.172 +<p><b>-Mrm <em>list</em></b></p> 3.173 +<p>Remove given messages from the queue. Only allowed for privileged users.</p> 3.174 + 3.175 + 3.176 + 3.177 +<p><b>-oem</b></p> 3.178 +<p>If the -oi ist not also given, always return with a non zero 3.179 +return code. Maybe someone tells me what this is good for...</p> 3.180 + 3.181 + 3.182 + 3.183 +<p><b>-odb</b></p> 3.184 +<p>Deliver in background. Masqmail always does this, which 3.185 +makes this option pretty much useless.</p> 3.186 + 3.187 + 3.188 + 3.189 +<p><b>-odq</b></p> 3.190 +<p>Do not attempt to deliver immediately. Any messages will be queued 3.191 +until the next queue running process picks them up and delivers 3.192 +them. You get the same effect by setting the do_queue option in 3.193 +/etc/masqmail/masqmail.conf.</p> 3.194 + 3.195 + 3.196 + 3.197 +<p><b>-oi</b></p> 3.198 +<p>A dot as a single character in a line does not terminate 3.199 +the message.</p> 3.200 + 3.201 + 3.202 + 3.203 +<p><b>-q [<em>interval</em>]</b></p> 3.204 +<p>If not given with an argument, run a queue process, ie. try to 3.205 +deliver all messages in the queue. Masqmail sends only to those 3.206 +addresses that are on the local net, not to those that are 3.207 +outside. Use -qo for those.</p> 3.208 +<p> 3.209 +If you have configured inetd to start masqmail, you can use this 3.210 +option in a cron job which starts in regular time intervals, to mimic 3.211 +the same effect as starting masqmail with -bd -q30m. 3.212 +</p><p> 3.213 +An argument may be a time interval ie. a numerical value followed 3.214 +by one of the letters. s,m,h,d,w which are interpreted as seconds, 3.215 +minutes, hours, days or weeks respectively. Example: -q30m. Masqmail 3.216 +starts as a daemon and a queue runner process will be started 3.217 +automatically once in this time interval. This is usually used 3.218 +together with -bd (see above). 3.219 +</p> 3.220 + 3.221 + 3.222 + 3.223 + 3.224 +<p><b>-qo [<em>name</em>]</b></p> 3.225 + 3.226 +<p>Can be followed by a connection name. Use this option in your 3.227 +script which starts as soon as a link to the internet has been set up 3.228 +(usually ip-up). When masqmail is called with this option, the 3.229 +specified route configuration is read and the queued mail with 3.230 +destinations on the internet will be sent. The <em>name</em> is defined 3.231 +in the configuration (see <b>online_routes.<em>name</em></b>). 3.232 +</p><p> 3.233 +If called without <em>name</em> the online status is determined with 3.234 +the configured method (see <b>online_detect</b> in config.html) 3.235 +</p> 3.236 + 3.237 + 3.238 + 3.239 + 3.240 +<p><b>-t</b></p> 3.241 +<p>Read recipients from headers. Delete 'Bcc:' headers. If any 3.242 +arguments are given, these are interpreted as recipient addresses and 3.243 +the message will not be sent to these.</p> 3.244 + 3.245 + 3.246 + 3.247 +<p><b>-v</b></p> 3.248 +<p>Log also to stdout. Currently, some log messages are 3.249 +marked as 'write to stdout' and additionally, all messages with 3.250 +priority 'LOG_ALERT' and 'LOG_WARNING' will be written to stdout 3.251 +if this option is given. It is disabled in daemon mode. 3.252 +</p> 3.253 + 3.254 + 3.255 + 3.256 + 3.257 +<h2>Environment for pipes and mdas</h2> 3.258 + 3.259 + 3.260 +<p>For security reasons, before any pipe command from an alias 3.261 +expansion or an mda is called, the environment variables will be 3.262 +completely discarded and newly set up. These are:</p> 3.263 +<p>SENDER, RETURN_PATH - the return path.</p> 3.264 +<p>SENDER_DOMAIN - the domain part of the return path.</p> 3.265 +<p>SENDER_LOCAL - the local part of the return path.</p> 3.266 +<p>RECEIVED_HOST - the host the message was received from (unless local).</p> 3.267 +<p>LOCAL_PART, USER, LOGNAME - the local part of the (original) recipient.</p> 3.268 +<p>MESSAGE_ID - the unique message id. This is not necessarily identical with the Message ID as given in the Message ID: header.</p> 3.269 +<p>QUALIFY_DOMAIN - the domain which will be appended to unqualified addresses.</p> 3.270 + 3.271 + 3.272 + 3.273 + 3.274 +<h2>Files</h2> 3.275 + 3.276 +<p><em>/etc/masqmail/masqmail.conf</em> is the main configuration 3.277 +for masqmail. Depending on the settings in this file, you will also 3.278 +have other configuration files in <em>/etc/masqmail/</em>.</p> 3.279 +<p><em>/etc/aliases</em> is the alias file, if not set differently 3.280 +in <em>/etc/masqmail/masqmail.conf</em>.</p> 3.281 +<p><em>/var/spool/masqmail/</em> is the spool directory where masqmail 3.282 +stores its spooled messages and the uniq pop ids.</p> 3.283 +<p><em>/var/spool/mail/</em> is the directory where locally delivered mail will be put, if not configured differently in <em>masqmail.conf</em>.</p> 3.284 +<p><em>/var/log/masqmail/</em> is the directory where masqmail stores 3.285 +its log mesages. This can also be somewhere else if configured 3.286 +differently by your sysadmin or the package mantainer.</p> 3.287 + 3.288 + 3.289 + 3.290 +<h2>Conforming to</h2> 3.291 + 3.292 +<p>RFC 821, 822, 1869, 1870, 2197, 2554 (SMTP)</p> 3.293 +<p>RFC 1725, 1939 (POP3)</p> 3.294 +<p>RFC 1321 (MD5)</p> 3.295 +<p>RFC 2195 (CRAM-MD5)</p> 3.296 + 3.297 + 3.298 + 3.299 +<h2>Author</h2> 3.300 + 3.301 +<p>masqmail was written by Oliver Kurth 3.302 +<oku@masqmail.cx></p><p>You will find the newest version of 3.303 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it 3.304 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list, 3.305 +you will find information about it at masqmails main site.</p> 3.306 + 3.307 + 3.308 + 3.309 +<h2>Bugs</h2> 3.310 + 3.311 +<p>You should report them to the mailing list.</p> 3.312 + 3.313 + 3.314 + 3.315 +<h2>See also</h2> 3.316 + 3.317 +<p> 3.318 +<a href="masqmail.conf.5.html">masqmail.conf</a>, <a href="masqmail.route.5.html">masqmail.route</a>, <a href="masqmail.get.5.html">masqmail.get</a>, <a href="masqmail.aliases.5.html">masqmail.aliases</a> 3.319 +</p> 3.320 + 3.321 + 3.322 + 3.323 +<h2>Comments</h2> 3.324 + 3.325 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same author.</p> 3.326 + 3.327 + 3.328 + 3.329 +</td></tr></table></center> 3.330 +</body>
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/docs/masqmail.cx/docs/masqmail.aliases.5.html Thu Sep 18 18:57:02 2008 +0200 4.3 @@ -0,0 +1,75 @@ 4.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%"> 4.5 +<tr><td><h1>masqmail.aliases</h1> 4.6 +<h2>masqmail alias file format</h2> 4.7 + 4.8 + 4.9 +<h2>Description</h2> 4.10 + 4.11 +<p>This man page describes the format of the masqmail alias file. Its usual location is <em>/etc/aliases</em>.</p> 4.12 + 4.13 + 4.14 + 4.15 +<h2>File Format</h2> 4.16 + 4.17 +<p>The alias file consists of lines of the form:</p> 4.18 + 4.19 +local_part: item1, item2, ... 4.20 + 4.21 + 4.22 +<p>Items can be surrounded by quotes '"'. If within the quotes other 4.23 +quotes are needed for an address they can be escaped with a leading 4.24 +backslash '\'.</p> 4.25 + 4.26 +<p>A leading '\' indicates that this address shall not be further 4.27 +expanded.</p> 4.28 + 4.29 +<p>A leading pipe symbol '|' indicates that the item shall be treated 4.30 +as a pipe command. The content of the message will then be sent to the 4.31 +standard input of a command. The command will run under the user id 4.32 +and group id masqmail is running as. If quotes are needed, the pipe 4.33 +symbol must appear within the quotes.</p> 4.34 + 4.35 +<p>Loops will be detected, the offending address will be ignored.</p> 4.36 + 4.37 +<p>Aliases will be expanded at delivery time. This means that 4.38 +if there is a message still in the queue and you change any alias 4.39 +which matches one of the recipient addresses, the change will have 4.40 +effect next time a delivery is attemped.</p> 4.41 + 4.42 +<p>There is no need to restart masqmail or run any command when the 4.43 +alias file has been changed.</p> 4.44 + 4.45 + 4.46 + 4.47 +<h2>Author</h2> 4.48 + 4.49 +<p>masqmail was written by Oliver Kurth 4.50 +<oku@masqmail.cx></p><p>You will find the newest version of 4.51 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it 4.52 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list, 4.53 +you will find information about it at masqmails main site.</p> 4.54 + 4.55 + 4.56 + 4.57 +<h2>Bugs</h2> 4.58 + 4.59 +<p>You should report them to the mailing list.</p> 4.60 + 4.61 + 4.62 + 4.63 +<h2>See also</h2> 4.64 + 4.65 +<p> 4.66 +<a href="masqmail.conf.5.html">masqmail.conf</a>, <a href="masqmail.8.html">masqmail</a>, 4.67 +</p> 4.68 + 4.69 + 4.70 + 4.71 +<h2>Comments</h2> 4.72 + 4.73 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same author.</p> 4.74 + 4.75 + 4.76 + 4.77 +</td></tr></table></center> 4.78 +</body>
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/docs/masqmail.cx/docs/masqmail.conf.5.html Thu Sep 18 18:57:02 2008 +0200 5.3 @@ -0,0 +1,569 @@ 5.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%"> 5.5 +<tr><td><h1>masqmail.conf</h1> 5.6 +<h2>masqmail configuration file</h2> 5.7 + 5.8 + 5.9 +<h2>Description</h2> 5.10 + 5.11 +<p>This man page describes the syntax of the main configuration file 5.12 +of masqmail. Its usual location is <em>/etc/masqmail/masqmail.conf</em></p> 5.13 + 5.14 +<p>The configuration consists of lines of the form</p> 5.15 + 5.16 +<p><b>val</b> = <em>expression</em></p> 5.17 + 5.18 +<p>Where <b>val</b> is a variable name and <em>expression</em> a string, 5.19 +which can be quoted with '"'. If the expression is on multiple lines 5.20 +or contains characters other than letters, digits or the characters 5.21 +'.', '-', '_', '/', it must be quoted. You can use quotes inside quotes 5.22 +by escaping them with a backslash.</p> 5.23 + 5.24 +<p>Each val has a type, which can be boolean, numeric, string 5.25 +or list. A boolean variable can be set with one of the values 'on', 5.26 +'yes', and 'true' or 'off', 'no' and 'false'. List items are separated 5.27 +with ';'. For some values patterns (like '*','?') can be used. The 5.28 +spaces before and after the '=' are optional.</p> 5.29 + 5.30 +<p>Most lists (exceptions: <b>local_hosts</b>, 5.31 +<b>local_nets</b>, <b>listen_addresses</b>, <b>online_routes</b> and <b>online_gets</b>) accept 5.32 +files. These will be recognized by a leading slash '/'. The contents 5.33 +of these files will be included at the position of the file name, 5.34 +there can be items or other files before and after the file entry. The 5.35 +format of the files is different though, within these files each entry 5.36 +is on another line. (And not separated by semicolons). This makes it 5.37 +easy to include large lists which are common in different 5.38 +configuration files, so they do not have to appear in every 5.39 +configuration file.</p> 5.40 + 5.41 +<p>Blank lines and lines starting with '#' are ignored.</p> 5.42 + 5.43 + 5.44 + 5.45 + 5.46 +<h2>Options</h2> 5.47 + 5.48 + 5.49 +<p><b>run_as_user = <em>boolean</em></b></p> 5.50 + 5.51 +<p>If this is set, masqmail runs with the user id of the user who 5.52 +invoked it and never changes it. This is for debugging purposes 5.53 +only. If the user is not root, masqmail will not be able to 5.54 +listen on a port < 1024 and will not be able to deliver local mail 5.55 +to others than the user.</p> 5.56 + 5.57 + 5.58 + 5.59 + 5.60 +<p><b>use_syslog = <em>boolean</em></b></p> 5.61 + 5.62 +<p>If this is set, masqmail uses syslogd for logging. It uses facility 5.63 +MAIL. You still have to set <b>log_dir</b> for debug files.</p> 5.64 + 5.65 + 5.66 + 5.67 + 5.68 +<p><b>debug_level = <em>n</em></b></p> 5.69 + 5.70 +<p>Set the debug level. Valid values are 0 to 6, increasing it further 5.71 +makes no difference. Be careful if you set this as high as 5 or higher, 5.72 +the logs may very soon fill your hard drive.</p> 5.73 + 5.74 + 5.75 + 5.76 + 5.77 +<p><b>mail_dir = <em>file</em></b></p> 5.78 + 5.79 +<p>The directory where local mail is stored, 5.80 +usually <em>/var/spool/mail</em> or <em>/var/mail</em>.</p> 5.81 + 5.82 + 5.83 + 5.84 + 5.85 +<p><b>spool_dir = <em>file</em></b></p> 5.86 + 5.87 +<p>The directory where masqmail stores its spool files (and later also 5.88 +other stuff). It must have a subdirectory <em>input</em>. 5.89 +Masqmail needs read and write permissions for this 5.90 +directory. I suggest to use <em>/var/spool/masqmail</em>.</p> 5.91 + 5.92 + 5.93 + 5.94 + 5.95 +<p><b>host_name = <em>string</em></b></p> 5.96 + 5.97 +<p>This is used in different places: Masqmail identifies itself in the 5.98 +greeting banner on incoming connections and in the HELO/EHLO command 5.99 +for outgoing connections with this name, it is used in the Received: 5.100 +header and to qualify the sender of a locally originating message.</p> 5.101 + 5.102 +<p>If the string begins with a slash '/', it it assumed that it is a 5.103 +filename, and the first line of this file will be used. Usually this will 5.104 +be '/etc/mailname' to make masqmail conform to Debian policies.</p> 5.105 + 5.106 +<p>It is not used to find whether an address is local. 5.107 +Use <b>local_hosts</b> for that.</p> 5.108 + 5.109 + 5.110 + 5.111 + 5.112 +<p><b>remote_port = <em>n</em></b></p> 5.113 + 5.114 +<p>The remote port number to be used. This defaults to port 25.</p> 5.115 +<p>This option is deprecated. Use <b>host_name</b> in the route 5.116 +configuration instead. See <a href="masqmail.route.5.html">masqmail.route</a>.</p> 5.117 + 5.118 + 5.119 + 5.120 + 5.121 +<p><b>local_hosts = <em>list</em></b></p> 5.122 + 5.123 +<p>A semicolon ';' separated list of hostnames which are considered 5.124 +local. Normally you set it to "localhost;foo;foo.bar.com" if your host 5.125 +has the fully qualified domain name 'foo.bar.com'.</p> 5.126 + 5.127 + 5.128 + 5.129 + 5.130 +<p><b>local_nets = <em>list</em></b></p> 5.131 + 5.132 +<p>A semicolon ';' separated list of hostnames which are on the 5.133 +'local' net. Delivery to these hosts is attempted immediately. You can 5.134 +use patterns with '*', eg. "*.bar.com".</p> 5.135 + 5.136 + 5.137 + 5.138 + 5.139 +<p><b>local_addresses = <em>list</em></b></p> 5.140 + 5.141 +<p>A semicolon ';' separated list of fully qualified email-addresses 5.142 +which are considered local although their domain name part is not in 5.143 +the list of <b>local_hosts</b>. </p> 5.144 +<p>For example: There are two people working at your 5.145 +LAN: person1@yourdomain and person2@yourdomain. But there are 5.146 +other persons @yourdomain which are NOT local. So you can not put 5.147 +yourdomain to the list of local_hosts. If person1 now wants 5.148 +to write to person2@yourdomain and this mail should not leave the LAN 5.149 +then you can put</p> 5.150 +<p>local_addresses = "person1@yourdomain;person2@yourdomain"</p> 5.151 +<p>to your masqmail.conf.</p> 5.152 + 5.153 + 5.154 + 5.155 + 5.156 +<p><b>not_local_addresses = <em>list</em></b></p> 5.157 + 5.158 +<p>A semicolon ';' separated list of fully qualified email-addresses 5.159 +which are considered not local although their domain name part is in 5.160 +the list of <b>local_hosts</b>. </p> 5.161 +<p>This ist the opposite of the previous case. The majority of addresses 5.162 +of a specific domain are local. But some users are not. With this 5.163 +option you can easily exclude these users.</p> 5.164 +<p>Example:</p> 5.165 +<p>local_hosts = "localhost;myhost;mydomain.net"</p> 5.166 +<p>not_local_addresses = "eric@mydomain.net"</p> 5.167 + 5.168 + 5.169 + 5.170 + 5.171 +<p><b>listen_addresses = <em>list</em></b></p> 5.172 + 5.173 +<p>A semicolon ';' separated list of interfaces on which connections 5.174 +will be accepted. An interface ist defined by a hostname, optionally 5.175 +followed by a colon ':' and a number for the port. If this is left out, 5.176 +port 25 will be used.</p> 5.177 +<p>You can set this to "localhost:25;foo:25" if your hostname is 'foo'.</p> 5.178 +<p>Note that the names are resolved to IP addreses. If your host has 5.179 +different names which resolve to the same IP, use only one of them, 5.180 +otherwise you will get an error message. 5.181 +</p> 5.182 + 5.183 + 5.184 + 5.185 + 5.186 +<p><b>do_save_envelope_to = <em>boolean</em></b></p> 5.187 + 5.188 +<p>If this is set to true, a possibly existing Envelope-to: header in an 5.189 +incoming mail which is received via either pop3 or smtp will be saved as 5.190 +an X-Orig-Envelope-to: header.</p> 5.191 +<p>This is useful if you retrieve mail from a pop3 server with either masqmail 5.192 +or fetchmail, and the server supports Envelope-to: headers, and you want to make use 5.193 +of those with a mail filtering tool, eg. procmail. It cannot be preserved because 5.194 +masqmail sets such a header by itself.</p> 5.195 +<p>Default is false.</p> 5.196 + 5.197 + 5.198 + 5.199 + 5.200 +<p><b>do_relay = <em>boolean</em></b></p> 5.201 + 5.202 +<p>If this is set to false, mail with a return path that is not local and a 5.203 +destination that is also not local will not be accepted via smtp and a 550 5.204 +reply will be given. Default is true.</p> 5.205 +<p>Note that this will not protect you from spammers using open relays, but from 5.206 +users unable to set their address in their mail clients.</p> 5.207 + 5.208 + 5.209 + 5.210 + 5.211 +<p><b>do_queue = <em>boolean</em></b></p> 5.212 + 5.213 +<p>If this is set, mail will not be delivered immediately when 5.214 +accepted. Same as calling masqmail with the <b>-odq</b> option.</p> 5.215 + 5.216 + 5.217 + 5.218 + 5.219 +<p><b>online_routes.<em>name</em> = <em>list</em></b></p> 5.220 + 5.221 + 5.222 +<p>Replace <em>name</em> with a name to identify a connection. Set this 5.223 +to a filename (or a list of filenames) for the special route configuration for that 5.224 +connection. You will use that name to call masqmail with the 5.225 + <b>-qo</b> option every time a connection to your ISP is set 5.226 +up.</p> 5.227 + 5.228 +<p>Example: Your ISP has the name FastNet. Then you write the 5.229 +following line in the main configuration:</p> 5.230 + 5.231 +<p><b>online_routes.FastNet</b> = <em>"/etc/masqmail/fastnet.route"</em></p> 5.232 + 5.233 +<p><em>/etc/masqmail/fastnet.route</em> is the route configuration 5.234 +file, see <a href="masqmail.route.5.html">masqmail.route</a>. As soon as a link to FastNet has been set up, you 5.235 +call masqmail <b>-qo</b> <em>FastNet</em>. Masqmail will then 5.236 +read the specified file and send the mails.</p> 5.237 + 5.238 + 5.239 + 5.240 + 5.241 + 5.242 +<p><b>connect_route.<em>name</em> = <em>list</em></b></p> 5.243 + 5.244 +<p>Old name for <b>online_routes</b>.</p> 5.245 + 5.246 + 5.247 + 5.248 + 5.249 + 5.250 +<p><b>local_net_route = <em>file</em></b></p> 5.251 + 5.252 +<p>This is similar to <b>online_routes.<em>name</em></b> but for the 5.253 +local net. Recipient addresses that are in local_nets will be 5.254 +routed using this route configuration. Main purpose is to define a 5.255 +mail server with mail_host in your local network. In simple 5.256 +environments this can be left unset. If unset, a default route 5.257 +configuration will be used.</p> 5.258 + 5.259 + 5.260 + 5.261 + 5.262 +<p><b>alias_file = <em>file</em></b></p> 5.263 + 5.264 +<p>Set this to the location of your alias file. If unset, no aliasing 5.265 +will be done.</p> 5.266 + 5.267 + 5.268 + 5.269 + 5.270 +<p><b>alias_local_caseless = <em>boolean</em></b></p> 5.271 + 5.272 +<p>If this is set, local parts in the alias file will be matched 5.273 +disregarding upper/lower case.</p> 5.274 + 5.275 + 5.276 + 5.277 + 5.278 +<p><b>pipe_fromline = <em>boolean</em></b></p> 5.279 + 5.280 +<p>If this is set, a from line will be prepended to the output stream whenever 5.281 +a pipe command is called after an alias expansion. Default is false.</p> 5.282 + 5.283 + 5.284 + 5.285 + 5.286 +<p><b>pipe_fromhack = <em>boolean</em></b></p> 5.287 + 5.288 +<p>If this is set, each line beginning with 'From ' is replaced with '>From ' whenever 5.289 +a pipe command is called after an alias expansion. You probably want this if you have 5.290 +set <b>pipe_fromline</b> above. Default is false.</p> 5.291 + 5.292 + 5.293 + 5.294 + 5.295 +<p><b>mbox_default = <em>string</em></b></p> 5.296 + 5.297 +<p>The default local delivery method. Can be one of mbox, mda or 5.298 +maildir (the latter only if maildir support is enabled at compile 5.299 +time). Default is mbox. You can override this for each user by using 5.300 +the <b>mbox_users</b>, <b>mda_users</b> or <b>maildir_users</b> options 5.301 +(see below). 5.302 +</p> 5.303 + 5.304 + 5.305 + 5.306 + 5.307 +<p><b>mbox_users = <em>list</em></b></p> 5.308 + 5.309 +<p>A list of users which wish delivery to an mbox style mail folder.</p> 5.310 + 5.311 + 5.312 + 5.313 + 5.314 +<p><b>mda_users = <em>list</em></b></p> 5.315 + 5.316 +<p>A list of users which wish local delivery to an mda. You have to 5.317 +set <b>mda</b> (see below) as well.</p> 5.318 + 5.319 + 5.320 + 5.321 + 5.322 +<p><b>maildir_users = <em>list</em></b></p> 5.323 + 5.324 +<p>A list of users which wish delivery to a qmail style maildir. The 5.325 +path to maildir is ~/Maildir/. The maildir will be created if it 5.326 +does not exist.</p> 5.327 + 5.328 + 5.329 + 5.330 + 5.331 +<p><b>mda = <em>expand string</em></b></p> 5.332 + 5.333 +<p>If you want local delivery to be transferred to an mda (Mail 5.334 +Delivery Agent), set this to a command. The argument will be expanded 5.335 +on delivery time, you can use variables beginning with a '$' sign, 5.336 +optionally enclosed in curly braces. Variables you can use are:</p> 5.337 +<p>uid - the unique message id. This is not necessarily identical with 5.338 +the Message ID as given in the Message ID: header.</p> 5.339 +<p>received_host - the host the mail was received from</p> 5.340 +<p>ident - the ident, this is either the ident delivered by the ident 5.341 +protocol or the user id of the sender if the message was received locally.</p> 5.342 +<p>return_path_local - the local part of the return path (sender).</p> 5.343 +<p>return_path_domain - the domain part of the return path (sender).</p> 5.344 +<p>return_path - the complete return path (sender).</p> 5.345 +<p>rcpt_local - the local part of the recipient.</p> 5.346 +<p>rcpt_domain - the domain part of the recipient.</p> 5.347 +<p>rcpt - the complete recipient address.</p> 5.348 +<p>Example:</p><p>mda="/usr/bin/procmail -Y -d ${rcpt_local}"</p> 5.349 +<p>For the mda, as for pipe commands, a few environment variables will 5.350 +be set as well. See <a href="masqmail.8.html">masqmail</a>. To use environment variables for the mda, 5.351 +the '$' sign has to be escaped with a backslash, otherwise they will 5.352 +be tried to be expanded with the internal variables.</p> 5.353 + 5.354 + 5.355 + 5.356 + 5.357 + 5.358 +<p><b>mda_fromline = <em>boolean</em></b></p> 5.359 + 5.360 +<p>If this is set, a from line will be prepended to the output stream whenever 5.361 +a message is delivered to an mda. Default is false.</p> 5.362 + 5.363 + 5.364 + 5.365 + 5.366 +<p><b>mda_fromhack = <em>boolean</em></b></p> 5.367 + 5.368 +<p>If this is set, each line beginning with 'From ' is replaced with '>From ' whenever 5.369 +a message is delivered to an mda. You probably want this if you have 5.370 +set <b>mda_fromline</b> above. Default is false.</p> 5.371 + 5.372 + 5.373 + 5.374 + 5.375 +<p><b>online_detect = <em>string</em></b></p> 5.376 + 5.377 +<p>Defines the method MasqMail uses to detect whether there is 5.378 +currently an online connection. It can have the 5.379 +values <b>file</b>, <b>pipe</b> or <b>mserver</b>.</p> 5.380 + 5.381 +<p>When it is set to <b>file</b>, MasqMail first checks for the 5.382 +existence of <b>online_file</b> (see below) and if it exists, it reads 5.383 +it. The content of the file should be the name of the current 5.384 +connection as defined with <b>connect_route.<em>name</em></b> (without 5.385 +a trailing newline character).</p> 5.386 + 5.387 +<p>When it is set to <b>pipe</b>, MasqMail calls the executable given by 5.388 +the <b>online_pipe</b> option (see below) and reads the current online 5.389 +status from its standard output.</p> 5.390 + 5.391 +<p>When it is set to <b>mserver</b>, MasqMail connects to the 5.392 +masqdialer server using the value of <b>mserver_iface</b> and asks it 5.393 +whether a connection exists and for the name, which should be the name 5.394 +of the current connection as defined with <b>connect_route.<em>name</em></b>.</p> 5.395 + 5.396 +<p>No matter how MasqMail detects the online status, only messages 5.397 +that are accepted at online time will be delivered using the 5.398 +connection. The spool still has to be emptied with masqmail <b>-qo</b> 5.399 +<em>connection</em>.</p> 5.400 + 5.401 + 5.402 + 5.403 + 5.404 +<p><b>online_file = <em>file</em></b></p> 5.405 + 5.406 +<p>This is the name of the file checked for when MasqMail determines 5.407 +whether it is online. The file should only exist when there is 5.408 +currently a connection. Create it in your ip-up script with eg.</p> 5.409 + 5.410 +<p>echo -n <name> > /tmp/connect_route</p> 5.411 +<p>chmod 0644 /tmp/connect_route</p> 5.412 + 5.413 +<p>Do not forget to delete it in your ip-down script.</p> 5.414 + 5.415 + 5.416 + 5.417 + 5.418 +<p><b>online_pipe = <em>file</em></b></p> 5.419 + 5.420 +<p>This is the name of the executable which will be called to determine 5.421 +the online status. This executable should just print the name oif the current 5.422 +connection to the standard output and return a zero status code. masqmail assumes 5.423 +it is offline if the script returns with a non zero status. Simple example:</p> 5.424 + 5.425 +<p>#!/bin/sh</p> 5.426 +<p></p> 5.427 +<p>[ -e /tmp/connect_route ] || exit 1</p> 5.428 +<p>cat /tmp/connect_route</p> 5.429 +<p>exit 0</p> 5.430 + 5.431 +<p>Of course, instead of the example above you could as well use <b>file</b> as 5.432 +the online detection method, but you can do something more sophisticated.</p> 5.433 + 5.434 + 5.435 + 5.436 + 5.437 +<p><b>mserver_iface = <em>interface</em></b></p> 5.438 + 5.439 +<p>The interface the masqdialer server is listening to. Usually this 5.440 +will be "localhost:224" if mserver is running on the same host as 5.441 +masqmail. But using this option, you can also let masqmail run on 5.442 +another host by setting <b>mserver_iface</b> to another hostname, 5.443 +eg. "foo:224".</p> 5.444 + 5.445 + 5.446 + 5.447 + 5.448 +<p><b>get.<em>name</em> = <em>file</em></b></p> 5.449 + 5.450 +<p>Replace <em>name</em> with a name to identify a get 5.451 +configuration. Set this to a filename for the get configuration. These 5.452 +files will be used to retrieve mail when called with the -g option.</p> 5.453 + 5.454 + 5.455 + 5.456 + 5.457 +<p><b>online_gets.<em>name</em> = <em>list</em></b></p> 5.458 + 5.459 +<p>Replace <em>name</em> with a name to identify an online 5.460 +configuration. Set this to a filename (or a list of filenames) for the get configuration. These 5.461 +files will be used to retrieve mail when called with the -go option.</p> 5.462 + 5.463 + 5.464 + 5.465 + 5.466 +<p><b>ident_trusted_nets = <em>list</em></b></p> 5.467 + 5.468 +<p><em>list</em> is a list of networks of the form a.b.c.d/e 5.469 +(eg. 192.168.1.0/24), from which the ident given by the ident protocol 5.470 +will be trusted, so a user can delete his mail from the queue if the 5.471 +ident is identical to his login name.</p> 5.472 + 5.473 + 5.474 + 5.475 + 5.476 +<p><b>errmsg_file = <em>file</em></b></p> 5.477 + 5.478 +<p>Set this to a template which will be used to generate delivery failure 5.479 +reports. Variable parts within the template begin with a dollar sign and 5.480 +are identical to those which can be used as arguments for the mda command, 5.481 +see <b>mda</b> above. Additional information can be included with 5.482 +@failed_rcpts, @msg_headers and @msg_body, these must be at the 5.483 +beginning of a line and will be replaced with the list of the failed recipients, 5.484 +the message headers and the message body of the failed message.</p> 5.485 +<p>Default is /usr/share/masqmail/tpl/failmsg.tpl.</p> 5.486 + 5.487 + 5.488 + 5.489 + 5.490 +<p><b>warnmsg_file = <em>file</em></b></p> 5.491 + 5.492 +<p>Set this to a template which will be used to generate delivery warning 5.493 +reports. It uses the same mechanisms for variables as <b>errmsg_file</b>, 5.494 +see above. 5.495 +</p> 5.496 +<p>Default is /usr/share/masqmail/tpl/warnmsg.tpl.</p> 5.497 + 5.498 + 5.499 + 5.500 + 5.501 +<p><b>warn_intervals</b> = <em>list</em></p> 5.502 + 5.503 +<p>Set this to a list of time intervals, at which delivery warnings (starting 5.504 +with the receiving time of the message) shall be generated.</p> 5.505 +<p>A warning will only be generated just after an attempt to deliver the 5.506 +mail and if that attempt failed temporarily. So a warning may be generated after 5.507 +a longer time, if there was no attempt before.</p> 5.508 +<p>Default is "1h;4h;8h;1d;2d;3d"</p> 5.509 + 5.510 + 5.511 + 5.512 + 5.513 +<p><b>max_defer_time</b> = <em>time</em></p> 5.514 + 5.515 +<p>This is the maximum time, in which a temporarily failed mail will be kept 5.516 +in the spool. When this time is exceeded, it will be handled as a delivery failure, 5.517 +and the message will be bounced.</p> 5.518 +<p>The excedence of this time will only be noticed if the message was actually 5.519 +tried to be delivered. If, for example, the message can only be delivered when 5.520 +online, but you have not been online for that time, no bounce will be generated.</p> 5.521 +<p>Default is 4d (4 days)</p> 5.522 + 5.523 + 5.524 + 5.525 + 5.526 +<p><b>log_user = <em>name</em></b></p> 5.527 + 5.528 +<p>Replace <em>name</em> with a valid local or remote mail address.</p> 5.529 +<p>If this option is not empty, then a copy of every mail, 5.530 +that passes trough the masqmail system will also be sent to the 5.531 +given mail address.</p> 5.532 +<p>For example you can feed your mails into a program like hypermail for 5.533 +archiving purpose by placing an appropriate pipe command in masqmail.alias</p> 5.534 + 5.535 + 5.536 + 5.537 + 5.538 + 5.539 +<h2>Author</h2> 5.540 + 5.541 +<p>masqmail was written by Oliver Kurth 5.542 +<oku@masqmail.cx></p><p>You will find the newest version of 5.543 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it 5.544 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list, 5.545 +you will find information about it at masqmails main site.</p> 5.546 + 5.547 + 5.548 + 5.549 +<h2>Bugs</h2> 5.550 + 5.551 +<p>You should report them to the mailing list.</p> 5.552 + 5.553 + 5.554 + 5.555 +<h2>See also</h2> 5.556 + 5.557 +<p> 5.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> 5.559 +</p> 5.560 + 5.561 + 5.562 + 5.563 + 5.564 +<h2>Comments</h2> 5.565 + 5.566 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same 5.567 +author.</p> 5.568 + 5.569 + 5.570 + 5.571 +</td></tr></table></center> 5.572 +</body>
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/docs/masqmail.cx/docs/masqmail.get.5.html Thu Sep 18 18:57:02 2008 +0200 6.3 @@ -0,0 +1,175 @@ 6.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%"> 6.5 +<tr><td><h1>masqmail.get</h1> 6.6 +<h2>masqmail get configuration file</h2> 6.7 + 6.8 + 6.9 +<h2>Description</h2> 6.10 + <p>This man page describes the options available for the 6.11 +masqmail get configuration.</p> 6.12 + 6.13 + 6.14 + 6.15 + 6.16 +<h2>Options</h2> 6.17 + 6.18 + 6.19 + 6.20 +<p><b>protocol</b> = <em>string</em></p> 6.21 + 6.22 +<p>The protocol with which you retrieve your mail. Currently only 6.23 +'pop3' and 'apop' are supported. There is no default.</p> 6.24 + 6.25 + 6.26 + 6.27 + 6.28 +<p><b>server</b> = <em>string</em></p> 6.29 + 6.30 +<p>The server you get your mail from.</p> 6.31 + 6.32 + 6.33 + 6.34 + 6.35 +<p><b>resolve_list</b> = <em>list</em></p> 6.36 + 6.37 +<p>Specify the method how the domain of the server is resolved. Possible values are 6.38 +dns_mx, dns_a, byname. For 'dns_mx', the domain is assumed to be an MX 6.39 +pointer to a list of host names, these will be tried each in order 6.40 +(lowest preference value first, equal preference values in random 6.41 +order). For 'dns_a', the domain is assumed to be an A pointer. For 6.42 +'byname', the library function <b>gethostbyname (3)</b> will be used.</p> 6.43 +<p>The default is "dns_a;byname". It does not make much sense here to use 'dns_mx'.</p> 6.44 + 6.45 + 6.46 + 6.47 + 6.48 +<p><b>user</b> = <em>string</em></p> 6.49 + 6.50 +<p>Your login name.</p> 6.51 + 6.52 + 6.53 + 6.54 + 6.55 +<p><b>pass</b> = <em>string</em></p> 6.56 + 6.57 +<p>Your password.</p> 6.58 + 6.59 + 6.60 + 6.61 + 6.62 +<p><b>address</b> = <em>address</em></p> 6.63 + 6.64 +<p>The address where the retrieved mail should be sent to. It can be 6.65 +any address, but you probably want to set this to a local address on 6.66 +your LAN.</p> 6.67 + 6.68 + 6.69 + 6.70 + 6.71 +<p><b>return_path</b> = <em>address</em></p> 6.72 + 6.73 +<p>If set, masqmail sets the return path to this address. Bounces 6.74 +generated during further delivery will be sent to this address. If 6.75 +unset, masqmail looks for the Return-Path: header in the mail, if 6.76 +this does not exist it uses the From: address and if this fails, 6.77 +postmaster will be used. 6.78 +</p><p> 6.79 +It is in most cases not useful to set this to the same address as 6.80 +the 'address' option as this may generate multiple bounces. 6.81 +postmaster is recommended.</p> 6.82 + 6.83 + 6.84 + 6.85 + 6.86 +<p><b>do_keep</b> = <em>boolean</em></p> 6.87 + 6.88 +<p>If you want to keep your mail on the server after you retrieved it, 6.89 +set this to true. It is recommended that you also set do_uidl, 6.90 +otherwise you will get the mail again each time you connect to the 6.91 +server. Masqmail does not check any headers before it retrieves mail, 6.92 +which may mark it as already fetched. Note that this behaviour is 6.93 +different to that of fetchmail. The default is false.</p> 6.94 + 6.95 + 6.96 + 6.97 + 6.98 +<p><b>do_uidl</b> = <em>boolean</em></p> 6.99 + 6.100 +<p>If set, MasqMail keeps a list of unique IDs of mails already 6.101 +fetched, so that they will not be retrieved again. Default is false.</p> 6.102 + 6.103 + 6.104 + 6.105 + 6.106 +<p><b>do_uidl_dele</b> = <em>boolean</em></p> 6.107 + 6.108 +<p>If set, and <b>do_uidl</b> is also set, MasqMail sends a delete (DELE) 6.109 +command to the server for each message uid in the uid listing at the 6.110 +beginning of the session. This prevents mail to be left on the server if 6.111 +masqmail gets interrupted during a session before it can send the QUIT 6.112 +command to the server. Default is false. 6.113 +</p> 6.114 + 6.115 + 6.116 + 6.117 + 6.118 +<p><b>max_size</b> = <em>numeric</em></p> 6.119 + 6.120 +<p>If set to a value > 0, only messages smaller than this in bytes will be 6.121 +retrieved. The default is 0.</p> 6.122 + 6.123 + 6.124 + 6.125 + 6.126 +<p><b>max_count</b> = <em>numeric</em></p> 6.127 + 6.128 +<p>If set to a value > 0, only <b>max_count</b> messages will be retrieved. 6.129 +The default is 0.</p> 6.130 + 6.131 + 6.132 + 6.133 + 6.134 +<p><b>wrapper</b> = <em>command</em></p> 6.135 + 6.136 +<p>If set, instead of opening a connection to a remote server, <em>command</em> will 6.137 +be called and all traffic will be piped to its 6.138 +stdin and from its stdout. Purpose is to tunnel ip traffic, eg. for ssl.</p> 6.139 +<p>Example for ssl tunneling:</p> 6.140 +<p>wrapper="/usr/bin/openssl s_client -quiet -connect pop.gmx.net:995 2>/dev/null"</p> 6.141 + 6.142 + 6.143 + 6.144 + 6.145 + 6.146 +<h2>Author</h2> 6.147 + 6.148 +<p>masqmail was written by Oliver Kurth 6.149 +<oku@masqmail.cx></p><p>You will find the newest version of 6.150 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it 6.151 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list, 6.152 +you will find information about it at masqmails main site.</p> 6.153 + 6.154 + 6.155 + 6.156 +<h2>Bugs</h2> 6.157 + 6.158 +<p>You should report them to the mailing list.</p> 6.159 + 6.160 + 6.161 + 6.162 +<h2>See also</h2> 6.163 + 6.164 +<p> 6.165 +<a href="masqmail.8.html">masqmail</a>, <a href="masqmail.route.5.html">masqmail.route</a>, <a href="masqmail.conf.5.html">masqmail.conf</a> 6.166 +</p> 6.167 + 6.168 + 6.169 + 6.170 +<h2>Comments</h2> 6.171 + 6.172 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same 6.173 +author.</p> 6.174 + 6.175 + 6.176 + 6.177 +</td></tr></table></center> 6.178 +</body>
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/docs/masqmail.cx/docs/masqmail.route.5.html Thu Sep 18 18:57:02 2008 +0200 7.3 @@ -0,0 +1,385 @@ 7.4 +<body text="#000000" link="#0000ff" bgcolor="#ffffff"><center><table width="80%"> 7.5 +<tr><td><h1>masqmail.route</h1> 7.6 +<h2>masqmail route configuration file</h2> 7.7 + 7.8 + 7.9 +<h2>Description</h2> 7.10 + 7.11 +<p>This man page describes the syntax of the route configuration files 7.12 +of <a href="masqmail.8.html">masqmail</a>. Their usual locations are in <em>/etc/masqmail/</em>.</p> 7.13 + 7.14 + 7.15 + 7.16 +<h2>Options</h2> 7.17 + 7.18 + 7.19 + 7.20 +<p><b>protocol</b> = <em>string</em></p> 7.21 + 7.22 +<p><em>string</em> can be one of 'smtp' or 'pipe', default is 7.23 +'smtp'. If set to 'smtp', mail will be sent with the SMTP protocol to 7.24 +its destination. If set to 'pipe', you also have to set 'pipe' 7.25 +to a command, the message will then be piped to a program. See option 'pipe' below.</p> 7.26 + 7.27 + 7.28 + 7.29 + 7.30 +<p><b>mail_host</b> = <em>string</em></p> 7.31 + 7.32 +<p>This is preferably the mail server of your ISP. All outgoing 7.33 +messages will be sent to this host which will distribute them to their 7.34 +destinations. If you do not set this mails will be sent 7.35 +directly. Because the mail server is probably 'near' to you, mail 7.36 +transfer will be much faster if you use it.</p> 7.37 +<p>You can optionally give a port number following the host name 7.38 +and a colon, eg mail_host="mail.foo.com:25".</p> 7.39 + 7.40 + 7.41 + 7.42 + 7.43 +<p><b>resolve_list</b> = <em>list</em></p> 7.44 + 7.45 +<p>Specify the method how the domain of the server is resolved. Possible values are 7.46 +dns_mx, dns_a, byname. For 'dns_mx', the domain is assumed to be an MX 7.47 +pointer to a list of host names, these will be tried each in order 7.48 +(lowest preference value first, equal preference values in random 7.49 +order). For 'dns_a', the domain is assumed to be an A pointer. For 7.50 +'byname', the library function <b>gethostbyname (3)</b> will be used.</p> 7.51 +<p>The default is "dns_mx;dns_a;byname".</p> 7.52 + 7.53 + 7.54 + 7.55 + 7.56 +<p><b>connect_error_fail</b> = <em>boolean</em></p> 7.57 + 7.58 +<p>If this is set, a connection error will cause a mail delivery to 7.59 +fail, ie. it will be bounced. If it is unset, it will just be defered.</p> 7.60 +<p>Default is false. The reason for this is that masqmail is designed 7.61 +for non permanent internet connections, where such errors may occur 7.62 +quite often, and a bounce would be annoying.</p> 7.63 +<p>For the default local_net route is is set to true.</p> 7.64 + 7.65 + 7.66 + 7.67 + 7.68 +<p><b>helo_name</b> = <em>string</em></p> 7.69 + 7.70 +<p>Set the name given with the HELO/EHLO command. If this is not 7.71 +set, <b>host_name</b> from <em>masqmail.conf</em> will be used, if 7.72 +the <b>do_correct_helo</b> option (see below) is unset.</p> 7.73 + 7.74 + 7.75 + 7.76 + 7.77 +<p><b>do_correct_helo</b> = <em>boolean</em></p> 7.78 + 7.79 +<p>If this is set, masqmail tries to look up your host name as it 7.80 +appears on the internet and sends this in the HELO/EHLO command. Some 7.81 +servers are so picky that they want this. Which is really 7.82 +crazy. It just does not make any sense to lie about ones own identity, 7.83 +because it can always be looked up by the server. Nobody should 7.84 +believe in the name given by HELO/EHLO anyway. If this is not 7.85 +set, <b>host_name</b> from <em>masqmail.conf</em> or as given with 7.86 +the <b>helo_name</b> (see above) will be used.</p> 7.87 + 7.88 + 7.89 + 7.90 + 7.91 +<p><b>do_pipelining</b> = <em>boolean</em></p> 7.92 + 7.93 +<p>If this is set to false, masqmail will not use ESMTP PIPELINING, even 7.94 +if the server announces that it is able to cope with it. Default is true.</p> 7.95 +<p>You do not want to set this to false unless the mail setup on the 7.96 +remote server side is really broken. Keywords: wingate.</p> 7.97 + 7.98 + 7.99 + 7.100 + 7.101 +<p><b>allowed_mail_locals</b> = <em>list</em></p> 7.102 + 7.103 +<p>This is a semicolon ';' separated list of local parts which will be 7.104 +allowed to send mail through this connection. If unset 7.105 +and <b>not_allowed_mail_locals</b> is also unset, all users are 7.106 +allowed.</p> 7.107 + 7.108 + 7.109 + 7.110 + 7.111 +<p><b>not_allowed_mail_locals</b> = <em>list</em></p> 7.112 + 7.113 +<p>This is a semicolon ';' separated list of local parts which will be 7.114 +not allowed to send mail through this connection. Local 7.115 +parts in this list will not be allowed to use this route even if they 7.116 +are part of <b>allowed_mail_locals</b> (see above).</p> 7.117 + 7.118 + 7.119 + 7.120 + 7.121 +<p><b>allowed_return_paths</b> = <em>list</em></p> 7.122 + 7.123 +<p>This is a semicolon ';' separated list of addresses. Messages which 7.124 +have one one of these addresses as the return path will be used using 7.125 +this route (if not also in <b>not_allowed_return_paths</b> or an item 7.126 +in <b>not_allowed_mail_locals</b> matches).</p> 7.127 +<p>Patterns containing '?' and '*' can be used. The special item "<>" matches 7.128 +the null sender address (eg. failure notices or delivery notifications).</p> 7.129 + 7.130 + 7.131 + 7.132 + 7.133 +<p><b>not_allowed_return_paths</b> = <em>list</em></p> 7.134 + 7.135 +<p>This is a semicolon ';' separated list of addresses. Messages which 7.136 +have one one of these addresses as the return path will not be used using 7.137 +this route (even if also in <b>allowed_return_paths</b> or an item 7.138 +in <b>allowed_mail_locals</b> matches).</p> 7.139 +<p>Patterns containing '?' and '*' can be used. The special item "<>" matches 7.140 +the null sender address (eg. failure notices or delivery notifications).</p> 7.141 + 7.142 + 7.143 + 7.144 + 7.145 +<p><b>allowed_rcpt_domains</b> = <em>list</em></p> 7.146 + 7.147 +<p>A list of recipient domains where mail will be sent to. This is for 7.148 +example useful if you use this route configuration when connected to 7.149 +another LAN via ppp. Patterns containing '?' and '*' can be used.</p> 7.150 + 7.151 + 7.152 + 7.153 + 7.154 +<p><b>not_allowed_rcpt_domains</b> = <em>list</em></p> 7.155 + 7.156 +<p>A list of recipient domains where mail will not be sent 7.157 +to. This is for example useful if you send mail directly (<b>mail_host</b> is 7.158 +not set) and you know of hosts that will not accept mail from you 7.159 +because they use a dialup list (eg. <a href = "http://maps.vix.com/dul/">http://maps.vix.com/dul/</a>. If any domain 7.160 +matches both <b>allowed_rcpt_domains</b> and <b>not_allowed_rcpt_domains</b>, 7.161 +mail will not be sent to this domain. Patterns containing '?' and '*' can be used.</p> 7.162 + 7.163 + 7.164 + 7.165 + 7.166 +<p><b>set_h_from_domain</b> = <em>string</em></p> 7.167 + 7.168 +<p>Replace the domain part in 'From:' headers with this value. This 7.169 +may be useful if you use a private, outside unknown address on your 7.170 +local LAN and want this to be replaced by the domain of the address of 7.171 +your email addrsss on the internet. Note that this is different to <b> 7.172 +set_return_path_domain</b>, see below.</p> 7.173 + 7.174 + 7.175 + 7.176 + 7.177 +<p><b>set_return_path_domain</b> = <em>string</em></p> 7.178 + 7.179 +<p>Sets the domain part of the envelope from address. Some hosts check 7.180 +whether this is the same as the net the connection is coming from. If 7.181 +not, they reject the mail because they suspect spamming. It should be 7.182 +a valid address, because some mail servers also check 7.183 +that. You can also use this to set it to your usual address on the 7.184 +internet and put a local address only known on your LAN in the 7.185 +configuration of your mailer. Only the domain part will 7.186 +be changed, the local part remains unchanged. Use <b> 7.187 +map_return_path_addresses</b> for rewriting local parts.</p> 7.188 + 7.189 + 7.190 + 7.191 + 7.192 +<p><b>map_h_from_addresses</b> = <em>list</em></p> 7.193 + 7.194 +<p>This is similar to <b>set_h_from_domain</b>, but more flexible. Set 7.195 +this to a list which maps local parts to a full RFC 822 compliant 7.196 +email address, the local parts (the keys) are separated from 7.197 +the addresses (the values) by colons (':').</p> 7.198 + 7.199 +<p>Example:</p> 7.200 + 7.201 +<p>map_h_from_addresses = "john: John Smith <jsmith@mail.academic.edu>; 7.202 +charlie: Charlie Miller <cmiller@mx.commercial.com>"</p> 7.203 +<p>You can use patterns, eg. * as keys.</p> 7.204 + 7.205 + 7.206 + 7.207 + 7.208 +<p><b>map_h_reply_to_addresses</b> = <em>list</em></p> 7.209 + 7.210 +<p>Same as <b>map_h_from_addresses</b>, but for the 'Reply-To:' header.</p> 7.211 + 7.212 + 7.213 + 7.214 + 7.215 +<p><b>map_h_mail_followup_to_addresses</b> = <em>list</em></p> 7.216 + 7.217 +<p>Same as <b>map_h_from_addresses</b>, but for the 'Mail-Followup-To:' 7.218 +header. Useful when replying to mailing lists.</p> 7.219 + 7.220 + 7.221 + 7.222 + 7.223 +<p><b>map_return_path_addresses</b> = <em>list</em></p> 7.224 + 7.225 +<p>This is similar to <b>set_return_path_domain</b>, but more 7.226 +flexible. Set this to a list which maps local parts to a full RFC 821 7.227 +compliant email address, the local parts (the keys) are 7.228 +separated from the addresses (the values) by colons 7.229 +(':'). Note that this option takes RFC 821 addresses 7.230 +while <b>map_h_from_addresses</b> takes RFC 822 addresses. The 7.231 +most important difference is that RFC 821 addresses have no full 7.232 +name.</p> 7.233 + 7.234 +<p>Example:</p> 7.235 +<p> 7.236 +map_return_path_addresses = 7.237 +"john: <jsmith@mail.academic.edu>; 7.238 +charlie: <cmiller@mx.commercial.com>" 7.239 +</p> 7.240 +<p>You can use patterns, eg. * as keys.</p> 7.241 + 7.242 + 7.243 + 7.244 + 7.245 +<p><b>expand_h_sender_address</b> = <em>boolean</em></p> 7.246 + 7.247 +<p>This sets the domain of the sender address as given by the Sender: 7.248 +header to the same address as in the envelope return path address 7.249 +(which can be set by either <b>set_return_path_domain</b> or <b>map_return_path_addresses</b>). 7.250 +This is for mail clients (eg. Microsoft Outlook) which use this address as the sender 7.251 +address. Though they should use the From: address, see RFC 7.252 +821. If <a href="http://www.fetchmail.org">fetchmail</a> encounters an unqualified Sender: 7.253 +address, it will be expanded to the domain of the pop server, which is 7.254 +almost never correct. Default is true.</p> 7.255 + 7.256 + 7.257 + 7.258 + 7.259 +<p><b>expand_h_sender_domain</b> = <em>boolean</em></p> 7.260 + 7.261 +<p>Like <b>expand_h_sender_address</b>, but sets the domain only. 7.262 +Deprecated, will be removed in a later version.</p> 7.263 + 7.264 + 7.265 + 7.266 + 7.267 +<p><b>last_route</b> = <em>boolean</em></p> 7.268 + 7.269 +<p>If this is set, a mail which would have been delivered using this 7.270 +route, but has failed temporarily, will not be tried to be delivered 7.271 +using the next route.</p> 7.272 +<p>If you have set up a special route with filters using the lists 7.273 +'allowed_rcpt_domains', 'allowed_return_paths', and 7.274 +'allowed_mail_locals' or their complements (not_), and the mail 7.275 +passing these rules should be delivered using this route only, you 7.276 +should set this to 'true'. Otherwise the mail would be passed to the 7.277 +next route (if any), unless that route has rules which prevent 7.278 +that.</p> 7.279 +<p>Default is false.</p> 7.280 + 7.281 + 7.282 + 7.283 + 7.284 +<p><b>auth_name</b> = <em>string</em></p> 7.285 + 7.286 +<p>Set the authentication type for ESMTP AUTH authentification. 7.287 +Currently only 'cram-md5' and 'login' are supported.</p> 7.288 + 7.289 + 7.290 + 7.291 + 7.292 +<p><b>auth_login</b> = <em>string</em></p> 7.293 + 7.294 +<p>Your account name for ESMTP AUTH authentification.</p> 7.295 + 7.296 + 7.297 + 7.298 + 7.299 +<p><b>auth_secret</b> = <em>string</em></p> 7.300 + 7.301 +<p>Your secret for ESMTP AUTH authentification.</p> 7.302 + 7.303 + 7.304 + 7.305 + 7.306 +<p><b>pop3_login</b> = <em>file</em></p> 7.307 + 7.308 +<p>If your Mail server requires SMTP-after-POP, set this to a 7.309 +get configuration (see <a href="masqmail.get.5.html">masqmail.get</a>). 7.310 +If you login to the POP server 7.311 +before you send, this is not necessary.</p> 7.312 + 7.313 + 7.314 + 7.315 + 7.316 +<p><b>wrapper</b> = <em>command</em></p> 7.317 + 7.318 +<p>If set, instead of opening a connection to a remote server, <em>command</em> will 7.319 +be called and all traffic will be piped to its 7.320 +stdin and from its stdout. Purpose is to tunnel ip traffic, eg. for ssl.</p> 7.321 +<p>Example for ssl tunneling:</p> 7.322 +<p>wrapper="/usr/bin/openssl s_client -quiet -connect pop.gmx.net:995 2>/dev/null"</p> 7.323 + 7.324 + 7.325 + 7.326 + 7.327 +<p><b>pipe</b> = <em>command</em></p> 7.328 + 7.329 +<p>If set, and protocol is set to 'pipe', <em>command</em> will be 7.330 +called and the message will be piped to its stdin. Purpose is to use 7.331 +gateways to uucp, fax, sms or whatever else.</p> 7.332 +<p>You can use variables to give as arguments to the command, these 7.333 +are the same as for the mda in the main configuration, see <a href="masqmail.conf.5.html">masqmail.conf</a>.</p> 7.334 + 7.335 + 7.336 + 7.337 + 7.338 +<p><b>pipe_fromline = <em>boolean</em></b></p> 7.339 + 7.340 +<p>If this is set, and protocol is set to 'pipe', a from line will be prepended to the output stream whenever 7.341 +a pipe command is called. Default is false.</p> 7.342 + 7.343 + 7.344 + 7.345 + 7.346 +<p><b>pipe_fromhack = <em>boolean</em></b></p> 7.347 + 7.348 +<p>If this is set, and protocol is set to 'pipe', each line beginning with 'From ' 7.349 +is replaced with '>From ' whenever a pipe command is called. You probably want this if you have 7.350 +set <b>pipe_fromline</b> above. Default is false.</p> 7.351 + 7.352 + 7.353 + 7.354 + 7.355 + 7.356 +<h2>Author</h2> 7.357 + 7.358 +<p>masqmail was written by Oliver Kurth 7.359 +<oku@masqmail.cx></p><p>You will find the newest version of 7.360 +masqmail at <a href = "http://masqmail.cx/masqmail/">http://masqmail.cx/masqmail/</a> or search for it 7.361 +in freshmeat (<a href = "http://www.freshmeat.net">http://www.freshmeat.net</a>). There is also a mailing list, 7.362 +you will find information about it at masqmails main site.</p> 7.363 + 7.364 + 7.365 + 7.366 +<h2>Bugs</h2> 7.367 + 7.368 +<p>You should report them to the mailing list.</p> 7.369 + 7.370 + 7.371 + 7.372 +<h2>See also</h2> 7.373 + 7.374 +<p> 7.375 +<a href="masqmail.8.html">masqmail</a>, <a href="masqmail.conf.5.html">masqmail.conf</a>, <a href="masqmail.get.5.html">masqmail.get</a> 7.376 +</p> 7.377 + 7.378 + 7.379 + 7.380 +<h2>Comments</h2> 7.381 + 7.382 +<p>This man page was written using <a href="http://masqmail.cx/xml2man/">xml2man</a> by the same 7.383 +author.</p> 7.384 + 7.385 + 7.386 + 7.387 +</td></tr></table></center> 7.388 +</body>
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/docs/masqmail.cx/download/ChangeLog Thu Sep 18 18:57:02 2008 +0200 8.3 @@ -0,0 +1,440 @@ 8.4 +0.2.20 Mon, 19 May 2003 21:14:06 +0200 8.5 + * fixed a segfaulting bug in spool.c caused by folded headers 8.6 + * regard connect_error_fail when failing for pipes (Debian Bug #186364) 8.7 + * hopefully fixed uid/gid problem in peidopen.c 8.8 +0.2.19 Wed, 12 Mar 2003 21:33:53 +0100 8.9 + * fixed a bug in addr_string (set buffer = NULL if g_free'd buffer) 8.10 +0.2.18 Fri, 06 Dec 2002 14:57:41 +0100 8.11 + * new option connect_error_fail 8.12 + * install /var/{log,spool} before subdirs, so 8.13 + they get correct ownerships, if installing to a tmp. directory 8.14 + Thx to Juergen Daubert. 8.15 + * failure notices and warnings also if connection fails 8.16 +0.2.17 Thu, 28 Nov 2002 14:59:24 +0100 8.17 + * fixed errors in man page masqmail.conf.5 about online_detect 8.18 + Thx to Juergen Daubert. 8.19 + * fixed a segfaulting bug in accept.c on pop retrieval, if there 8.20 + is no return_path in the mail and Sender: is empty. 8.21 + Thx to Olaf Buddenhagen for debug information. 8.22 + * implemented 'last_route' option 8.23 + * moved *.tpl to /usr/share/masqmail/tpl (from /etc/masqmail/tpl) 8.24 + * french translation of warnmsg.tpl by Rémi Denis-Courmont 8.25 + * added delivery warn messages for deferals 8.26 + new options: 'warn_intervals', 'warnmsg_file', 'max_defer_time' 8.27 + * warn/fail also if remote SMTP server replies with 4xx or 5xx 8.28 + just after EHLO/HELO (yes, that was a bug) 8.29 + * removed a few -Wall warnings. Thanks to Juergen Daubert. 8.30 +0.2.16 Tue, 12 Nov 2002 17:27:13 +0100 8.31 + * fixed debugging, which has been broken in 0.2.15 8.32 +0.2.15 Wed, 06 Nov 2002 12:19:55 +0100 8.33 + * added french translation of delivery failure message template. 8.34 + Thanks to Rémi Denis-Courmont 8.35 + * accept -f "" without segfaulting. Thanks to Ralf Friedl. 8.36 + * fixed buffer overflows in conf.c. Thanks to Damian M Gryski. 8.37 + * read conf file _after_ dropping privileges 8.38 +0.2.14 Sat, 26 Oct 2002 14:40:49 +0200 8.39 + * corrected html version of documentation 8.40 + * include masqmail.8 man page (was garbled in 0.2.13) 8.41 + * small lintian fixes for Debian 8.42 +0.2.13 Wed, 23 Oct 2002 20:54:39 +0200 8.43 + * fixed a possible buffer overflow (IMHO not exploitable) Thanks to Anonymous. 8.44 +0.2.12 Wed, 23 Oct 2002 18:57:42 +0200 8.45 + * new do_pipelining option (to switch it off if necessary) 8.46 + * new helo_name option for route 8.47 + * fixed remote_port option (but marked it as deprecated) 8.48 + * swapped setegid/seteuid in maildir_out() 8.49 + * try again on EAGAIN failure for local delivery via mbox 8.50 +0.2.11: 8.51 + * make it possible for *.route file to have mode 600, owned by root. 8.52 + Thx to Juergen Daubert for noticing. 8.53 + * do not choke on trailing blanks after comments in conf file. Anonymous 8.54 + again. 8.55 + * try again on EAGAIN failure for local delivery via mda 8.56 + * fixed a potential buffer overflow in conf.c. Thanks to Anonymous 8.57 + again. 8.58 + * set umask 066 for log files. Thanks to Anonymous. 8.59 + * implemented map_h_mail_followup_to_addresses 8.60 + * fixed a bug: masqmail -t with empty body caused weird 8.61 + errors. Thanks to Anonymous. 8.62 + * added do_save_envelope_to option 8.63 +0.2.10: 8.64 + * fixed a small bug in mserver.c (atoi) (Thanks to Gert Ohme) 8.65 + * allow ';' in rval also if rval is unqoted 8.66 + * write pidfiles to /var/run/masqmail{,-get}.pid 8.67 + * now runs on freebsd without leaving zombies 8.68 + * use setjmp() in readsock.c for timeouts 8.69 +0.2.9: 8.70 + * attempts to make it compile on freebsd 8.71 + - works, but leaves zombies behind (will be done next release, I hope) 8.72 + * removed some bashisms from configure.ac 8.73 + * fixed segfault when called with -t under some circumstances 8.74 + * some fixes about locking when fetching mail (yes, 0 _is_ a valid fd...) 8.75 + * some speedups for uidl handling, and do not bloat log files any more 8.76 +0.2.8: 8.77 + * use flock() for locking in retrieving mails (get.c) 8.78 + * can use /etc/mailname as host_name (for Debian) 8.79 + * added ESMTP LOGIN 8.80 + * made uidl handling even more safe 8.81 +0.2.7: 8.82 + * fixed stupid locking bug 8.83 + * do not complain about 'unknown mode' when getting mail 8.84 + * added italian version of failmsg.tpl (by Paolo) 8.85 + * changed MIME boundaries in failmsg.tpl (Paolo) 8.86 + * applied patches from Paolo (Gabel - ): 8.87 + mostly replacing g_strdup_printf() with g_strdup(), a few ticks ('), 8.88 + changed SENDER_LOCAL environment variable and fixed missing '\' in 8.89 + debian/masqmail.ip-up 8.90 +0.2.6: 8.91 + * rediscovered previously undocumented allowed_return_paths option for 8.92 + routes and made it usable for null sender addresses. 8.93 + * added mbox_default, and {mbox,mda,maildir}_users options 8.94 + * changes to vsnprintf function use in pop3_in.c and smtp_in.c (by egp) 8.95 + * fixes to ip-up/ip-down scripts (by Ben Low) 8.96 + * ENABLE_SMTP_SERVER define was incorrectly written as 8.97 + ENABLE_MODE_SMTP (by Ben Low) 8.98 + * fixed bug in get_header() in src/header.c (by egp) 8.99 +0.2.5: 8.100 + * PowerPC fix for varargs functions 8.101 + * relay checking: if do_relay is set to false, do not allow non local 8.102 + to non local addresses 8.103 + * alias is always caseless for postmaster (disregarding 8.104 + alias_local_caseless option) 8.105 + * do not rebounce to postmaster 8.106 + * implemented Maildir support 8.107 + * rearranged append_file in local.c 8.108 + * use sysexits.h for correct error reply for failure messages (mda only) 8.109 +0.2.4: 8.110 + * fixed uidl bug: uidl list was not written if a mail was not 8.111 + fetched because it was in the list 8.112 + * fixed bug in src/conf.c: g_free'd twice in destroy_route() 8.113 + * security fix, Debian Bug#102092: 'Privilege escalation in masqmail 8.114 + piped alias handling': fixed by using set[ug]id instead of sete[ug]id 8.115 + in peopen.c (noted by Colin Phipps) 8.116 + * limit count of children in pop3_in.c and wait for them 8.117 + * ignore SIGPIPE signal 8.118 + * docu updates by Uli Funcke 8.119 + * find path to masqmail via --prefix or --exec-prefix option for configure 8.120 + * implemented -v (log to stdout) option 8.121 +0.2.3: 8.122 + * local_addresses and not_local_addreses option (patch by Uli Funcke) 8.123 + * replaced /usr/sbin/masqmail in fail_msg.c with /usr/sbin/sendmail 8.124 + * typo in man pages (noted by Sebastian Inacker) 8.125 + * hostnames can now begin with a digit (noted by CatcherInTheRye) 8.126 + * chdir to '/' (on some systems getcwd() failes when changing uid) 8.127 + * implemented lock_dir option 8.128 + * ignore EINVAL after fdatasync 8.129 + * configure option to link with libcrypto 8.130 + * configure option to disable resolver support 8.131 + * configure option to enable mserver support 8.132 + * configure option to disable smtp server 8.133 + * configure option to link glib statically 8.134 + * msg_count option for get configuration 8.135 + * bug fix: do not terminate if accept() return 8.136 + error (patch by Edouard G. Parmelan) 8.137 + * removed some files from package in 8.138 + debian (by Edouard G. Parmelan)) 8.139 + * mailrm alias (by Edouard G. Parmelan) 8.140 + * bug fix: removed superfluous g_free from 8.141 + dot_unlock() (by Edouard G. Parmelan) 8.142 + * write uidl list to temporary file first 8.143 + * write uidl list each time a message was retrieved 8.144 + (avoid duplicate mails when interupted) 8.145 +0.2.2: 8.146 + * fix of Debian Bug#92894 by Gregor Hoffleit 8.147 + (correct error reply for lacking permissions) 8.148 + * fixed 'last line missing' bug 8.149 + * fixed spool locking bug: lock was deleted 8.150 + if unsuccessful (unlocking it) 8.151 + * added patch from Uli Funcke for log_user 8.152 + (user getting all delivered mail) 8.153 + * implemented get daemon 8.154 + * create lock file when getting mail 8.155 + * use tables for finding route and get lists 8.156 +0.2.1: 8.157 + * expand_h_sender_address now defaults to true (as described in docs) 8.158 + * included documentation patch by Marc Herbert (masqmail call in ifup configuration) 8.159 + * complain to log if failure message template cannot be opened 8.160 + * errmsg_file defaults to /etc/masqmail/tpl/failmsg.tpl 8.161 + * corrected error message for insufficient permissions (Debian Bug #92894) 8.162 + * get mail depending on connection: -go option and online_get 8.163 +0.2.0: 8.164 + * included the debian/ directory from the debian package. 8.165 + * added return_path option for get configuration 8.166 + * added max_messages option for get configuration 8.167 + * added independent program 'mservdetect', which can be used with 8.168 + online_detect=pipe as replacement for online_detect=mserver 8.169 + * added online detection method 'pipe' 8.170 + * replaced configure option --with-conffile with --with-confdir, default 8.171 + is now /etc/masqmail/ (/etc/masqmail/masqmail.conf for the conf file). 8.172 + * added do_uidl_dele option (delete messages in uid listing on server) 8.173 + * qualify address for get configuration. 8.174 + * better checking for valid From: address when retrieving mail via pop3 8.175 + and this is used as the return path. 8.176 + * port number for mail_host in routes possible 8.177 + * introduce delivery failue notices 8.178 + * added addr_string() function for easy output of addresses 8.179 + * expire spool lock files after a while (currently 300s) 8.180 + * started development branch 0.2.x 8.181 + 8.182 +0.1.12: 8.183 + * previous fix auf AUTH broke it - reverted it partially and fixed it again 8.184 + * bug fix in get.c: retrieval via pop from different server could cause mail to be lost 8.185 +0.1.11: 8.186 + * bug fix in smtp_out.c: of AUTH methods supplied by server, only the first was recognized 8.187 +0.1.10: 8.188 + * added support for IP address as mail_host in routes 8.189 + * include <time.h> in masqmail.h to make it compile with glibc 2.2.2 8.190 +0.1.9: 8.191 + * fixed a few typos in man pages 8.192 + * ignore -v option 8.193 + * added patch from Bernhard Ehlers to program aliases runq, rmail, smtpd and in.smtpd 8.194 + * added patch from Edouard G. Parmelan to correct default directories to install 8.195 + * implemtented pipe, pipe_fromhack and pipe_fromline options 8.196 + for routes (for protocol 'pipe') 8.197 + * implememted 'pipe' protocol for routes 8.198 + * memset to 0 of configuration structures (it is safer and easier) 8.199 + * list of routes for each connection 8.200 + * do not be picky about EOF if locally received message is not terminated by a dot 8.201 + * speeded up accept.c for large messages (noted by Falko Flessner) 8.202 +0.1.8: 8.203 + * security bug fix (Debian Bug#81079): if local address cannot be 8.204 + resolved, masqmail listened on an arbitrary port (fixed by Adel 8.205 + Belhouane) 8.206 + * bug fix: -d without argument caused segfault (Thanks to Jan Setzer) 8.207 + * added more help for configure 8.208 + * Iain Lea sent a spec file for Redhat. Thanks! 8.209 + * lines can now be indefinetely long for mail acception (well, nearly...) 8.210 + * implemented 'wrapper' options for routes and get configurations for ssl and maybe other purposes 8.211 + * unified read_sockline() for smtp_out.c, smtp_in.c, pop3_in.c, accept.c and mserver.c 8.212 + * escaping of quotes in configuration now possible and now works 8.213 + correctly in alias file (Edouard G. Parmelan sent a patch, but I fixed it differently) 8.214 + * kill -HUP seems to work now. 8.215 + * close all file descriptors >= 3 on start (patch by Edouard G. Parmelan) 8.216 + * replaced exit() with _exit where appropriate (children) 8.217 + * added pipe_fromhack and pipe_fromline options 8.218 + * added mda support and mda_fromhack and mda_fromline options 8.219 + * user can delete his own mail if received via smtp from one of ident_trusted_nets 8.220 + * bug fix in lookup.c: if the name that an MX points could not be resolved, delete entry 8.221 + * added expand_h_sender_address option. expend_h_sender_domain should be obsolete now. 8.222 + * unprivileged user can delete his own mail from queue if received locally 8.223 + * replaced popen() in local.c with peopen() from snippet from sourceforge. Fixed a bug there. 8.224 +0.1.7: 8.225 + * debug option can be changed for privileged users only 8.226 + * fixed a security hole: -C option for unprivileged users now implies 8.227 + run_as_user and drops _all_ privileges 8.228 + * environment variables for pipe transport 8.229 + * wildcards for map_* options 8.230 + * rearranged interface handling, IP addresses now possible for 8.231 + listen_addresses and mserver_iface 8.232 + * beautified masqmail.c 8.233 + * revised uid and gid settings in spool.c and local.c (pipe transport) 8.234 + * optionally use ident protocol (RFC 1413) and store user id in spool file 8.235 + * proper spool file locking 8.236 +0.1.6: 8.237 + * record user id in spool file (though it is not used anywhere) 8.238 + * command line option to remove messages from queue (-Mrm) 8.239 + * command line option for version information (-bV) 8.240 +0.1.5: 8.241 + * implemented -F option 8.242 + * removed bug in accept.c (dot bug, noted by Andre Masloch) 8.243 + * location of main conf is now configurable with ./configure 8.244 + (suggested by Greger Hoffleit). Default is /etc/masqmail.conf. 8.245 + * remote_port defaults to 25 (noted by Andre Masloch) 8.246 + * docu fixes: remote_port documented and typo fix (noted by Andre Masloch. Again :-)) 8.247 + * do not return failure on exit on delivery if mail queue was empty (noted by Andre Masloch) 8.248 + * qualify -f address with host_name if unqualified (noted by Andre Masloch) 8.249 +0.1.4: 8.250 + * Jens Askengren discovered a segfaulting bug when parsing headers. 8.251 +0.1.3: 8.252 + * warn if pop/auth options are given, but compiled without support 8.253 + * fixed allowed_rcpt_domains option (was broken since 0.1.0, but nobody noticed) 8.254 + * exit with 1 if queue run fails for any reason (not for daemon) 8.255 + * fail if alias file cannot be read 8.256 + * better handling of SMTP SIZE error 8.257 + * implemented alias_local_caseless option (suggestion by Andre Masloch) 8.258 + * case insensitive domain matching (noted by Andre Masloch) 8.259 + * removed nearly all warnings if compiled with -Wall 8.260 +0.1.2: 8.261 + * some changes in configure.in 8.262 + * continue if get conf could not be read. Thanks to Edouard G. Parmelan! 8.263 + * fixed another bug on pipe addresses in spool.c 8.264 + * Andre Masloch found a bug in spool.c which caused a segfault on pipe addresses. Thanks! 8.265 +0.1.1: 8.266 + * Edouard G. Parmelan sent a patch for starting a queue run on start of daemon. Thanks! 8.267 + * rpm packages for SuSE 8.268 + * regard CFLAGS in Makefile.am 8.269 + * implemtented -g <name> option 8.270 + * be more verbose in pop3_get.c 8.271 + * implemented -f option (set return path) 8.272 + * fixed bug: "no debug file, msg was:" in smtp_out.c when debugging was off 8.273 + * internal changes of smtp_out_log_failure() 8.274 + * removed 'no log file' error 8.275 + * complain if host name could not be resolved in connect.c 8.276 + * added option resolve_list for route and get configurations 8.277 + * removed bug in rcptlist_with_one_of_hostlist(): exited when 8.278 + list was empty 8.279 +0.1.0: 8.280 + * included ESMTP AUTH support (as client), CRAM-MD5 only 8.281 + * included pop3 client support, with UIDL and APOP, single drop only 8.282 + * rearranged routing code: 8.283 + - messages will be deleted from spool earlier, as soon as they are delivered 8.284 + - unified online/offline delivery, making it more simple 8.285 + 8.286 +0.0.13: 8.287 + * ignore set_h_{from,reply_to}_domain if map_h_{from,reply_to}_addresses 8.288 + is set and warn in logs about misconfiguration. 8.289 + * fail if there are no recipients 8.290 + * fixed bug: if called with -t, qualify recipient address with host_name 8.291 + * fixed bug: if called with -bi, no longer wait for message on stdin 8.292 +0.0.12: 8.293 + * warn if spool file could not be deleted (Thanks to Alberto González 8.294 + Palomo) 8.295 + * fixed bug: set len for getsockname 8.296 + * fixed bug: set local_net_routes to NULL if there is no local net 8.297 + (noted by Frank Schnekenbuehl) 8.298 + * say 'mail queue is empty' if mail queue is empty (Thanks to 8.299 + Frank Schnekenbuehl) 8.300 + * fixed bug: setegid in local.c (was noted by both Michael Piefel and 8.301 + Alberto González Palomo) 8.302 +0.0.11: 8.303 + * if Bcc: headers have been removed (-t option), and there is no To: 8.304 + or Cc: header,an empty Bcc: header will be created (RFC 822 8.305 + compliance!) 8.306 + * fixed bug: if rcpts are given on command line To: headers were 8.307 + created, even if they already existed. This caused Bcc: recipient 8.308 + addresses to be revealed if they were given on the cmd line. 8.309 + Now a To: header is only created if there is no To:, Cc: or Bcc: 8.310 + header. Thanks to Richard Clamp for pointing this out. 8.311 + * fixed bug: segfault when -d option was given without arguments 8.312 + * fixed bug: segfault when configuration file not found 8.313 +0.0.10: 8.314 + * removed -g option from Makefile 8.315 + * fixed bug: -odq did not work, was broken in some earlier version 8.316 + * addresses with leading '\' will not be expanded any further in aliases 8.317 + * pipe transport implemented 8.318 + * alias support implemented. 8.319 + * changed permissions for queue runs again: got to be root, 8.320 + mail or in group trusted. 8.321 + * some configuration parameters can be read from files 8.322 + * internal changes in routing logics/deliver code, preparing for 8.323 + aliases support. 8.324 + * Gregor Hoffleit sent another patch: use liblockfile if available 8.325 + (Debian!) and DESTDIR will be used. Also updated the NEWS file. Thanks 8.326 + again! 8.327 + * define fdatasync to fsync if not available. 8.328 + * lookup.c includes sys/types.h, some environments need this 8.329 + * fixed bug in RFC 822 parsing: name in brackets after address 8.330 + caused problems. Thanks to David Maslen. 8.331 + * values in tables without leading spaces 8.332 +0.0.9: 8.333 + * anyone in group 'trusted' is now allowed to do queue runs. Thanks to 8.334 + Alberto Gonzalez Palomo for the suggestion. 8.335 + * changed umask for spool writing to 026. 8.336 + * removed silly 'no rcpt domain for this route' message 8.337 + * there is now a mailing list 8.338 + (see http://www.innominate.org/mailman/listinfo/masqmail) 8.339 + * Gregor Hoffleit sent a patch to make masqmail work with mutt (and 8.340 + balsa and any other MUA that uses the mutt libs): it now supports 8.341 + '--' in options. Thanks! 8.342 + * accept_message() supports flag ACC_NO_RECVD_HDR (but this is not 8.343 + used in masqmail). 8.344 + * accept_message() is no longer responsible for queuing, makes it 8.345 + easier to recycle the code for other projects (eg. jpilot-Mail) 8.346 +0.0.8: 8.347 + * added a FAQ page. 8.348 + * removed all warnings, at least for egcs. Output of make looks 8.349 + pretty now ;-) 8.350 + * added allowed_mail_locals and not_allowed_mail_locals options for 8.351 + routes. 8.352 + * implemented folding und unfolding of headers (but currently used 8.353 + for the Received: header only). 8.354 + * corrected docs: should be 'online_detect', NOT 'detect_online'. 8.355 + * mailq now gives information about the time mails spent in the queue, 8.356 + the message size and the received host. 8.357 + * added allowed_rcpt_domains option for routes. 8.358 + * increased buffer size to 1024 for SMTP responses when delivering. 8.359 + * fixed minor bug: slash in unquoted strings in conf parsing was not 8.360 + allowed. 8.361 +0.0.7: 8.362 + * fixed a bug in smtp_out.c: sock was tested before it was initialized. 8.363 + * fixed a bug in the configuration code: for statements in two 8.364 + adjacent lines, the second was not recognized. 8.365 +0.0.6: 8.366 + * rewrote part of the configuration parsing code because it caused 8.367 + problems with reading config statements on multiple lines. 8.368 + * added a LF after each mail local mail spool file, as this 8.369 + seems to be required for some MUAs and especially cucipop when 8.370 + it reads mails. Otherwise mails seem to be concatenated. Thanks 8.371 + to Dale Perkel for pointing this out. 8.372 +0.0.5: 8.373 + * added expand_h_sender_domain option (boolean, default: true) 8.374 + because some clients use the Sender: address as the sender address 8.375 + (though it should be the From: address). 8.376 + * changed configure script to better recognize whether libresolv 8.377 + should be linked or not. 8.378 + * fixed a nasty bug: if masqmail -q was called (or qo <name> 8.379 + and a mail was not delivered), the headers were lost! Problem was an 8.380 + additional LF after received_host in the spool file. 8.381 +0.0.4: 8.382 + * 'From' hack is now a 'From ' hack. 8.383 + * configure now accepts options --with-logdir=LOGDIR and 8.384 + --with-spooldir=SPOOLDIR. 8.385 + * the directories /var/masqmail and /var/spool/masqmail will now be 8.386 + created with make install; user and group will be set appropriately 8.387 + * configure now accepts options --with-user=USER and --with-group=GROUP 8.388 + * dove into autoconf: configure now recognizes libc5 and links with 8.389 + libresolv only for libc6 and defines getline for libc5 8.390 + * fixed timeout code when sending. This was broken in some earlier 8.391 + version. 8.392 +0.0.3: 8.393 + * fixed bug in spool write code: rcpt address was written incorrectly 8.394 + to spool file under some circumstances (with a LF). 8.395 + * added methods for online detection (file and mserver) and added code 8.396 + to deliver immediately when mail is received at online time. 8.397 + * too many changes to list: rearranged routing code, unified smtp 8.398 + deliveries to the local net with online deliveries, so now route 8.399 + configurations can be used for the local net. Also multiple messages 8.400 + per connection for the local net possible. And reduced code size. 8.401 + * fixed bug: if server does not use neither the esmtp size extension 8.402 + nor pipelining, output after MAIL FROM was not flushed. So MM waited 8.403 + forever for a response... 8.404 +0.0.2: 8.405 + * fixed bug: euid was not set properly for local delivery 8.406 + * when debugging, it does not write the whole message to the log 8.407 + any more. 8.408 + * added 'From' hack 8.409 + * qualified address for return path and recipients is now required 8.410 + if not accepted locally, if locally accepted the addresses will be 8.411 + qualified with host_name. (Thereby fixed a seg fault bug) 8.412 + * added -i option (same as -oi) 8.413 + * added more header rewriting (set_ and map_ options) 8.414 + * fixed bug: potential seg fault when writing spool files because it 8.415 + was not read properly 8.416 + * multiple messages per connection now also if mail is sent directly 8.417 + (same for local_nets is still missing, but I will use routes for these 8.418 + anyway in the future) 8.419 + * the queue will now be read in random order 8.420 + * implemented multiple messages per connection (but only online 8.421 + and if mail_host is defined) 8.422 + * implemented rewriting of local parts in return path for online 8.423 + delivery 8.424 + * domain matching is no longer case sensitive (had to define 8.425 + _GNU_SOURCE so that I could use FNM_CASEFOLD for fnmatch) 8.426 + * added do_correct_helo option for routes 8.427 + * fixed bug: corrected retrying hosts if one failed (connect.c). 8.428 +0.0.1: 8.429 + * fixed bug: seg fault when delivering online directly and there was 8.430 + more than one rcpt to a single host. 8.431 + * fixed bug: if mail was succesfully delivered in online mode to all 8.432 + rcpts, and if there were additional (local) rcpts for which the mail 8.433 + was not yet delivered, the mail was deleted from spool. 8.434 + * rearranged smtp_out.c to prepare for multiple messages per connection 8.435 + * log now shows the real host a message is sent to by SMTP (previously 8.436 + it was the one looked for, now it is the one that was found by DNS) 8.437 + * added NOOP, HELP and not recognized replies in smtp_in 8.438 + * fixed bug: forgot to close dup_sock in accept_connect (listen.c) 8.439 + * can now list the queue with the -bp option or when called as mailq 8.440 + * debug_level is now configurable and -d option added 8.441 + * corrected rfc821 address parsing and rearranged code 8.442 +0.0.0: 8.443 + * initial release
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 9.2 +++ b/docs/masqmail.cx/download/ChangeLog-stable Thu Sep 18 18:57:02 2008 +0200 9.3 @@ -0,0 +1,284 @@ 9.4 +0.1.17: Wed, 06 Nov 2002 12:19:55 +0100 9.5 + * fixed buffer overflows in conf.c. Thanks to Damian M Gryski. 9.6 + * read conf file _after_ dropping privileges 9.7 +0.1.16: 9.8 + * PowerPC fix for varargs functions 9.9 + * g_free fix in src/conf.c 9.10 +0.1.15: 9.11 + * security fix, Debian Bug#102092: 'Privilege escalation in masqmail 9.12 + piped alias handling': fixed by using set[ug]id instead of sete[ug]id 9.13 + in peopen.c (noted by Colin Phipps) 9.14 + * synced fix by Edouard G. Parmelan for listen.c: do not terminate on 9.15 + 'reset by peer'. 9.16 +0.1.14: 9.17 + * fix of Debian Bug#92894 by Gregor Hoffleit 9.18 + (correct error reply for lacking permissions) 9.19 + * fixed 'last line missing' bug 9.20 + * fixed spool locking bug: lock was deleted 9.21 + if unsuccessful (unlocking it) 9.22 +0.1.13: 9.23 + * qualify address for get configuration. 9.24 + * better checking for valid From: address when retrieving mail via pop3 9.25 + and this is used as the return path. 9.26 +0.1.12: 9.27 + * previous fix auf AUTH broke it - reverted it partially and fixed it again 9.28 + * bug fix in get.c: retrieval via pop from different server could cause mail to be lost 9.29 +0.1.11: 9.30 + * bug fix in smtp_out.c: of AUTH methods supplied by server, only the first was recognized 9.31 +0.1.10: 9.32 + * added support for IP address as mail_host in routes 9.33 + * include <time.h> in masqmail.h to make it compile with glibc 2.2.2 9.34 +0.1.9: 9.35 + * fixed a few typos in man pages 9.36 + * ignore -v option 9.37 + * added patch from Bernhard Ehlers to program aliases runq, rmail, smtpd an in.smtpd 9.38 + * added patch from Edouard G. Parmelan to correct default directories to install 9.39 + * implemtented pipe, pipe_fromhack and pipe_fromline options 9.40 + for routes (for protocol 'pipe') 9.41 + * implememted 'pipe' protocol for routes 9.42 + * memset to 0 of configuration structures (it is safer and easier) 9.43 + * list of routes for each connection 9.44 + * do not be picky about EOF if locally received message is not terminated by a dot 9.45 + * speeded up accept.c for large messages (noted by Falko Flessner) 9.46 +0.1.8: 9.47 + * security bug fix (Debian Bug#81079): if local address cannot be 9.48 + resolved, masqmail listened on an arbitrary port (fixed by Adel 9.49 + Belhouane) 9.50 + * bug fix: -d without argument caused segfault (Thanks to Jan Setzer) 9.51 + * added more help for configure 9.52 + * Iain Lea sent a spec file for Redhat. Thanks! 9.53 + * lines can now be indefinetely long for mail acception (well, nearly...) 9.54 + * implemented 'wrapper' options for routes and get configurations for ssl and maybe other purposes 9.55 + * unified read_sockline() for smtp_out.c, smtp_in.c, pop3_in.c, accept.c and mserver.c 9.56 + * escaping of quotes in configuration now possible and now works 9.57 + correctly in alias file (Edouard G. Parmelan sent a patch, but I fixed it differently) 9.58 + * kill -HUP seems to work now. 9.59 + * close all file descriptors >= 3 on start (patch by Edouard G. Parmelan) 9.60 + * replaced exit() with _exit where appropriate (children) 9.61 + * added pipe_fromhack and pipe_fromline options 9.62 + * added mda support and mda_fromhack and mda_fromline options 9.63 + * user can delete his own mail if received via smtp from one of ident_trusted_nets 9.64 + * bug fix in lookup.c: if the name that an MX points could not be resolved, delete entry 9.65 + * added expand_h_sender_address option. expend_h_sender_domain should be obsolete now. 9.66 + * unprivileged user can delete his own mail from queue if received locally 9.67 + * replaced popen() in local.c with peopen() from snippet from sourceforge. Fixed a bug there. 9.68 +0.1.7: 9.69 + * debug option can be changed for privileged users only 9.70 + * fixed a security hole: -C option for unprivileged users now implies 9.71 + run_as_user and drops _all_ privileges 9.72 + * environment variables for pipe transport 9.73 + * wildcards for map_* options 9.74 + * rearranged interface handling, IP addresses now possible for 9.75 + listen_addresses and mserver_iface 9.76 + * beautified masqmail.c 9.77 + * revised uid and gid settings in spool.c and local.c (pipe transport) 9.78 + * optionally use ident protocol (RFC 1413) and store user id in spool file 9.79 + * proper spool file locking 9.80 +0.1.6: 9.81 + * record user id in spool file (though it is not used anywhere) 9.82 + * command line option to remove messages from queue (-Mrm) 9.83 + * command line option for version information (-bV) 9.84 +0.1.5: 9.85 + * implemented -F option 9.86 + * removed bug in accept.c (dot bug, noted by Andre Masloch) 9.87 + * location of main conf is now configurable with ./configure 9.88 + (suggested by Greger Hoffleit). Default is /etc/masqmail.conf. 9.89 + * remote_port defaults to 25 (noted by Andre Masloch) 9.90 + * docu fixes: remote_port documented and typo fix (noted by Andre Masloch. Again :-)) 9.91 + * do not return failure on exit on delivery if mail queue was empty (noted by Andre Masloch) 9.92 + * qualify -f address with host_name if unqualified (noted by Andre Masloch) 9.93 +0.1.4: 9.94 + * Jens Askengren discovered a segfaulting bug when parsing headers. 9.95 +0.1.3: 9.96 + * warn if pop/auth options are given, but compiled without support 9.97 + * fixed allowed_rcpt_domains option (was broken since 0.1.0, but nobody noticed) 9.98 + * exit with 1 if queue run fails for any reason (not for daemon) 9.99 + * fail if alias file cannot be read 9.100 + * better handling of SMTP SIZE error 9.101 + * implemented alias_local_caseless option (suggestion by Andre Masloch) 9.102 + * case insensitive domain matching (noted by Andre Masloch) 9.103 + * removed nearly all warnings if compiled with -Wall 9.104 +0.1.2: 9.105 + * some changes in configure.in 9.106 + * continue if get conf could not be read. Thanks to Edouard G. Parmelan! 9.107 + * fixed another bug on pipe addresses in spool.c 9.108 + * Andre Masloch found a bug in spool.c which caused a segfault on pipe addresses. Thanks! 9.109 +0.1.1: 9.110 + * Edouard G. Parmelan sent a patch for starting a queue run on start of daemon. Thanks! 9.111 + * rpm packages for SuSE 9.112 + * regard CFLAGS in Makefile.am 9.113 + * implemtented -g <name> option 9.114 + * be more verbose in pop3_get.c 9.115 + * implemented -f option (set return path) 9.116 + * fixed bug: "no debug file, msg was:" in smtp_out.c when debugging was off 9.117 + * internal changes of smtp_out_log_failure() 9.118 + * removed 'no log file' error 9.119 + * complain if host name could not be resolved in connect.c 9.120 + * added option resolve_list for route and get configurations 9.121 + * removed bug in rcptlist_with_one_of_hostlist(): exited when 9.122 + list was empty 9.123 +0.1.0: 9.124 + * included ESMTP AUTH support (as client), CRAM-MD5 only 9.125 + * included pop3 client support, with UIDL and APOP, single drop only 9.126 + * rearranged routing code: 9.127 + - messages will be deleted from spool earlier, as soon as they are delivered 9.128 + - unified online/offline delivery, making it more simple 9.129 + 9.130 +0.0.13: 9.131 + * ignore set_h_{from,reply_to}_domain if map_h_{from,reply_to}_addresses 9.132 + is set and warn in logs about misconfiguration. 9.133 + * fail if there are no recipients 9.134 + * fixed bug: if called with -t, qualify recipient address with host_name 9.135 + * fixed bug: if called with -bi, no longer wait for message on stdin 9.136 +0.0.12: 9.137 + * warn if spool file could not be deleted (Thanks to Alberto González 9.138 + Palomo) 9.139 + * fixed bug: set len for getsockname 9.140 + * fixed bug: set local_net_routes to NULL if there is no local net 9.141 + (noted by Frank Schnekenbuehl) 9.142 + * say 'mail queue is empty' if mail queue is empty (Thanks to 9.143 + Frank Schnekenbuehl) 9.144 + * fixed bug: setegid in local.c (was noted by both Michael Piefel and 9.145 + Alberto González Palomo) 9.146 +0.0.11: 9.147 + * if Bcc: headers have been removed (-t option), and there is no To: 9.148 + or Cc: header,an empty Bcc: header will be created (RFC 822 9.149 + compliance!) 9.150 + * fixed bug: if rcpts are given on command line To: headers were 9.151 + created, even if they already existed. This caused Bcc: recipient 9.152 + addresses to be revealed if they were given on the cmd line. 9.153 + Now a To: header is only created if there is no To:, Cc: or Bcc: 9.154 + header. Thanks to Richard Clamp for pointing this out. 9.155 + * fixed bug: segfault when -d option was given without arguments 9.156 + * fixed bug: segfault when configuration file not found 9.157 +0.0.10: 9.158 + * removed -g option from Makefile 9.159 + * fixed bug: -odq did not work, was broken in some earlier version 9.160 + * addresses with leading '\' will not be expanded any further in aliases 9.161 + * pipe transport implemented 9.162 + * alias support implemented. 9.163 + * changed permissions for queue runs again: got to be root, 9.164 + mail or in group trusted. 9.165 + * some configuration parameters can be read from files 9.166 + * internal changes in routing logics/deliver code, preparing for 9.167 + aliases support. 9.168 + * Gregor Hoffleit sent another patch: use liblockfile if available 9.169 + (Debian!) and DESTDIR will be used. Also updated the NEWS file. Thanks 9.170 + again! 9.171 + * define fdatasync to fsync if not available. 9.172 + * lookup.c includes sys/types.h, some environments need this 9.173 + * fixed bug in RFC 822 parsing: name in brackets after address 9.174 + caused problems. Thanks to David Maslen. 9.175 + * values in tables without leading spaces 9.176 +0.0.9: 9.177 + * anyone in group 'trusted' is now allowed to do queue runs. Thanks to 9.178 + Alberto Gonzalez Palomo for the suggestion. 9.179 + * changed umask for spool writing to 026. 9.180 + * removed silly 'no rcpt domain for this route' message 9.181 + * there is now a mailing list 9.182 + (see http://www.innominate.org/mailman/listinfo/masqmail) 9.183 + * Gregor Hoffleit sent a patch to make masqmail work with mutt (and 9.184 + balsa and any other MUA that uses the mutt libs): it now supports 9.185 + '--' in options. Thanks! 9.186 + * accept_message() supports flag ACC_NO_RECVD_HDR (but this is not 9.187 + used in masqmail). 9.188 + * accept_message() is no longer responsible for queuing, makes it 9.189 + easier to recycle the code for other projects (eg. jpilot-Mail) 9.190 +0.0.8: 9.191 + * added a FAQ page. 9.192 + * removed all warnings, at least for egcs. Output of make looks 9.193 + pretty now ;-) 9.194 + * added allowed_mail_locals and not_allowed_mail_locals options for 9.195 + routes. 9.196 + * implemented folding und unfolding of headers (but currently used 9.197 + for the Received: header only). 9.198 + * corrected docs: should be 'online_detect', NOT 'detect_online'. 9.199 + * mailq now gives information about the time mails spent in the queue, 9.200 + the message size and the received host. 9.201 + * added allowed_rcpt_domains option for routes. 9.202 + * increased buffer size to 1024 for SMTP responses when delivering. 9.203 + * fixed minor bug: slash in unquoted strings in conf parsing was not 9.204 + allowed. 9.205 +0.0.7: 9.206 + * fixed a bug in smtp_out.c: sock was tested before it was initialized. 9.207 + * fixed a bug in the configuration code: for statements in two 9.208 + adjacent lines, the second was not recognized. 9.209 +0.0.6: 9.210 + * rewrote part of the configuration parsing code because it caused 9.211 + problems with reading config statements on multiple lines. 9.212 + * added a LF after each mail local mail spool file, as this 9.213 + seems to be required for some MUAs and especially cucipop when 9.214 + it reads mails. Otherwise mails seem to be concatenated. Thanks 9.215 + to Dale Perkel for pointing this out. 9.216 +0.0.5: 9.217 + * added expand_h_sender_domain option (boolean, default: true) 9.218 + because some clients use the Sender: address as the sender address 9.219 + (though it should be the From: address). 9.220 + * changed configure script to better recognize whether libresolv 9.221 + should be linked or not. 9.222 + * fixed a nasty bug: if masqmail -q was called (or qo <name> 9.223 + and a mail was not delivered), the headers were lost! Problem was an 9.224 + additional LF after received_host in the spool file. 9.225 +0.0.4: 9.226 + * 'From' hack is now a 'From ' hack. 9.227 + * configure now accepts options --with-logdir=LOGDIR and 9.228 + --with-spooldir=SPOOLDIR. 9.229 + * the directories /var/masqmail and /var/spool/masqmail will now be 9.230 + created with make install; user and group will be set appropriately 9.231 + * configure now accepts options --with-user=USER and --with-group=GROUP 9.232 + * dove into autoconf: configure now recognizes libc5 and links with 9.233 + libresolv only for libc6 and defines getline for libc5 9.234 + * fixed timeout code when sending. This was broken in some earlier 9.235 + version. 9.236 +0.0.3: 9.237 + * fixed bug in spool write code: rcpt address was written incorrectly 9.238 + to spool file under some circumstances (with a LF). 9.239 + * added methods for online detection (file and mserver) and added code 9.240 + to deliver immediately when mail is received at online time. 9.241 + * too many changes to list: rearranged routing code, unified smtp 9.242 + deliveries to the local net with online deliveries, so now route 9.243 + configurations can be used for the local net. Also multiple messages 9.244 + per connection for the local net possible. And reduced code size. 9.245 + * fixed bug: if server does not use neither the esmtp size extension 9.246 + nor pipelining, output after MAIL FROM was not flushed. So MM waited 9.247 + forever for a response... 9.248 +0.0.2: 9.249 + * fixed bug: euid was not set properly for local delivery 9.250 + * when debugging, it does not write the whole message to the log 9.251 + any more. 9.252 + * added 'From' hack 9.253 + * qualified address for return path and recipients is now required 9.254 + if not accepted locally, if locally accepted the addresses will be 9.255 + qualified with host_name. (Thereby fixed a seg fault bug) 9.256 + * added -i option (same as -oi) 9.257 + * added more header rewriting (set_ and map_ options) 9.258 + * fixed bug: potential seg fault when writing spool files because it 9.259 + was not read properly 9.260 + * multiple messages per connection now also if mail is sent directly 9.261 + (same for local_nets is still missing, but I will use routes for these 9.262 + anyway in the future) 9.263 + * the queue will now be read in random order 9.264 + * implemented multiple messages per connection (but only online 9.265 + and if mail_host is defined) 9.266 + * implemented rewriting of local parts in return path for online 9.267 + delivery 9.268 + * domain matching is no longer case sensitive (had to define 9.269 + _GNU_SOURCE so that I could use FNM_CASEFOLD for fnmatch) 9.270 + * added do_correct_helo option for routes 9.271 + * fixed bug: corrected retrying hosts if one failed (connect.c). 9.272 +0.0.1: 9.273 + * fixed bug: seg fault when delivering online directly and there was 9.274 + more than one rcpt to a single host. 9.275 + * fixed bug: if mail was succesfully delivered in online mode to all 9.276 + rcpts, and if there were additional (local) rcpts for which the mail 9.277 + was not yet delivered, the mail was deleted from spool. 9.278 + * rearranged smtp_out.c to prepare for multiple messages per connection 9.279 + * log now shows the real host a message is sent to by SMTP (previously 9.280 + it was the one looked for, now it is the one that was found by DNS) 9.281 + * added NOOP, HELP and not recognized replies in smtp_in 9.282 + * fixed bug: forgot to close dup_sock in accept_connect (listen.c) 9.283 + * can now list the queue with the -bp option or when called as mailq 9.284 + * debug_level is now configurable and -d option added 9.285 + * corrected rfc821 address parsing and rearranged code 9.286 +0.0.0: 9.287 + * initial release
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/docs/masqmail.cx/download/INSTALL Thu Sep 18 18:57:02 2008 +0200 10.3 @@ -0,0 +1,135 @@ 10.4 +simple installation instructions, see docs/install.html for more. 10.5 + 10.6 +To compile MasqMail you need glib 1.2 (http://www.gtk.org). 10.7 + 10.8 +You need a user and a group for masqmail to run, I suggest user 10.9 +'mail' and group 'trusted'. Say: 10.10 + 10.11 +groupadd -g 42 trusted 10.12 +useradd -u 42 -g 42 -d / -s /bin/sh -c "Mail Transfer Agent" mail 10.13 + 10.14 +If you use other names than 'mail' and 'trusted' use the options 10.15 +described below for configure. The 42 is just a suggestion, you can 10.16 +use any number you like, but preferably one < 100. It does not have 10.17 +to be the same for the user 'mail' and the group 'trusted'. 10.18 + 10.19 +Then do: 10.20 + 10.21 +./configure 10.22 +make 10.23 +make install 10.24 + 10.25 +Debian: 10.26 +If you compile for Debian, do the configure with at least these options, 10.27 +this makes it compatible with the official debian package: 10.28 +./configure --with-liblockfile --with-group=mail 10.29 +you do not need the group 'trusted', use 'mail' instead. 10.30 + 10.31 +You can also build your own Debian package with 10.32 +dpkg-buildpackage -rfakeroot 10.33 +You need to have fakeroot installed to do this. Or, as root, do: 10.34 +dpkg-buildpackage 10.35 + 10.36 +SuSE/Redhat: 10.37 +There are spec files for rpm creation in suse/ or redhat/. You may have to adjust these files. 10.38 + 10.39 + 10.40 +Sorry, but after that you are not yet finished. For instruction on how 10.41 +to deliver mail using a connection to your ISP see 10.42 +docs/install.html. It is probably a good idea to copy the files 10.43 +docs/*.html to a directory where you can access them with a browser. 10.44 + 10.45 +additional options for configure: 10.46 +--------------------------------- 10.47 + 10.48 +--with-user=USER sets the user as which MasqMail will run. Default is 10.49 +'mail'. USER has to exist before you 'make install'. 10.50 + 10.51 +--with-group=GROUP sets the group as which MasqMail will run. Default 10.52 +is 'trusted'. GROUP has to exist before you 'make install'. 10.53 + 10.54 +--with-logdir=LOGDIR sets the directory where MasqMail stores its log 10.55 +files. It will be created if it does not exist. Default is /var/masqmail/. 10.56 + 10.57 +--with-spooldir=SPOOLDIR sets the directory where MasqMail stores its 10.58 +spool files. It will be created if it does not exist. Default is 10.59 +/var/spool/masqmail/. 10.60 + 10.61 +--with-confdir=CONFDIR sets the default configuration directory to 10.62 +CONFDIR, in case you prefer another location than /etc/masqmail/. 10.63 + 10.64 +--enable-auth enables ESMTP AUTH support (disabled by default) 10.65 + 10.66 +--disable-pop3 disables pop3 support (enabled by default) 10.67 + 10.68 +--enable-maildir enables qmail style Maildir support (disabled by default) 10.69 + 10.70 +--enable-ident enable RFC 1413 support. If you have the libident 10.71 +dynamic library installed, this will be linked, otherwise it will be 10.72 +statically linked using the sources included in the package. 10.73 + 10.74 +--disable-resolver disable resolver support. Without the resolver functions, 10.75 +masqmail uses only gethostbyname() to resolve DNS names, and you cannot send 10.76 +mail without a smart host. Not recommended. You save 3K at most. 10.77 + 10.78 +--disable-smtp-server disable SMTP server support. You may want this if you do 10.79 +not need masqmail to listen. In this case, you cannot use masqmail as a smart 10.80 +host for other hosts on your LAN, you cannot use mail clients that send SMTP, 10.81 +you cannot even use pine. In short, use of this option is discouraged unless 10.82 +your resources are extremely limited. 10.83 + 10.84 +--enable-mserver enable online detection by connecting to the mserver 10.85 +(masqdialer system). 10.86 + 10.87 +--with-libcryto instead of using the md5 and hmac functions within the package, 10.88 +link dynamically with libcrypto. This applies only if you have pop3 or SMTP 10.89 +AUTH enabled. Makes only sense if your resources are limited and you have 10.90 +libcrypto installed. Untested. 10.91 + 10.92 +--with-glib-static link with glib statically. This makes the binary larger 10.93 +by around 30K (i386 architecture), but if masqmail is the only binary using 10.94 +glib, you save some space in total, because you do not need the shared glib 10.95 +library installed. 10.96 + 10.97 +--disable-debug disable debugging, setting it on by command line or configuration 10.98 +has no effect. Strongly discouraged, since you miss valuable information if something 10.99 +goes wrong. You save 6K. 10.100 + 10.101 +BTW, to get 3K of space, call 10.102 +strip --remove-section=.comment --remove-section=.note --strip-unneeded src/masqmail 10.103 + 10.104 +after make install: 10.105 +------------------- 10.106 + 10.107 +You can also use these instructions to omit 'make install' if you do 10.108 +not want to use it. 10.109 + 10.110 +Check that 'make install' worked correctly. The following command: 10.111 + 10.112 +ls -ld /usr/sbin/masqmail /var/masqmail/ /var/spool/masqmail /var/spool/masqmail/input 10.113 + 10.114 +should give output similar to 10.115 + 10.116 +-rwsr-xr-x 1 root root 86955 Oct 14 14:27 /usr/sbin/masqmail 10.117 +drwxr-xr-x 2 mail trusted 1024 Oct 14 14:29 /var/masqmail/ 10.118 +drwxr-xr-x 3 mail trusted 1024 Oct 14 14:27 /var/spool/masqmail 10.119 +drwxr-xr-x 2 mail trusted 1024 Oct 14 18:32 /var/spool/masqmail/input 10.120 +drwxr-xr-x 2 mail trusted 1024 Oct 14 18:32 /var/spool/masqmail/lock 10.121 +drwxr-xr-x 2 mail trusted 1024 Oct 14 18:32 /var/spool/masqmail/popuidl 10.122 + 10.123 +(important is the set-user-id bit for /usr/sbin/masqmail and the 10.124 +ownership of all items). 10.125 + 10.126 +Use the example configuration files in examples/ to edit your own. The 10.127 +main configuration should go to /etc/masqmail.conf. I recommend to 10.128 +make a directory /etc/masqmail for the *.route amd *.get files. 10.129 + 10.130 +The default destination for the executable 'masqmail' is 10.131 +/usr/sbin. Check that it has the set user id bit set. (chmod u+s 10.132 +/usr/sbin/masqmail does no harm in any case). 10.133 + 10.134 +If you want to replace sendmail, move your old sendmail binary to 10.135 +another name and make a symbolic link /usr/sbin/sendmail -> 10.136 +/usr/sbin/masqmail. 10.137 + 10.138 +
11.1 Binary file docs/masqmail.cx/download/MasqMail-0.1.17.tar.gz has changed
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/docs/masqmail.cx/download/NEWS Thu Sep 18 18:57:02 2008 +0200 12.3 @@ -0,0 +1,253 @@ 12.4 +Here I add changes which may be important for you. See ChangeLog for more 12.5 +details and the manual pages for a more complete description 12.6 +of added options. 12.7 + 12.8 +0.2.17 12.9 + 12.10 +- delivery warnings have been finally implemented: if delivery of a mail 12.11 +fails temporarily, warning mail will be generated, informing the sender 12.12 +of the problem. After some time, the mail will be handled as failing 12.13 +permanently, and be bounced. New options: 'warn_intervals', 12.14 +'max_defer_time' and 'warnmsg_file'. 12.15 + 12.16 +- the message templates for failures and warnings will now be installed 12.17 +into /usr/share/masqmail/tpl/, and no longer to /etc/masqmail/tpl/. The 12.18 +default for the search path (options 'errmsg_file' and 'warnmsg_file' 12.19 +has been changed accordingly. 12.20 + 12.21 +- new option 'last_route'. See man 5 masqmail.route. 12.22 + 12.23 +0.2.12 12.24 +two new options have been added: 12.25 +- do_pipelining will be used only in broken mail setups. Actually, I 12.26 +implemented it only to test such a setup. 12.27 + 12.28 +- helo_name for routes sets the helo_name. This may be useful for 12.29 +eg. ssh tunneling, or if do_correcthelo does not work, because you are 12.30 +behind a firewall. 12.31 + 12.32 +- the old 'remote_port' option should not be used any more. Set the 12.33 +port with mail_host="foo.bar.com:1234" in the route file instead. 12.34 + 12.35 +0.2.11 12.36 + 12.37 +- two new options have been added: do_save_envelope_to for the main 12.38 +configuration and map_h_mail_followup_to_addresses for the route 12.39 +files. See the man pages on purpose and usage. 12.40 + 12.41 +- the route files can now be mode 0400, owned by root. Previous 12.42 +versions had problems when sendmail was called directly by a 12.43 +non-priviledged user, because the route files could not be read. 12.44 + 12.45 +0.2.10 12.46 + 12.47 +- this version should work on FreeBSD. At least I care now if it does not. 12.48 + 12.49 +- masqmail now writes pid files to /var/run/, one for the smtp/queue 12.50 +daemon and one for the get daemon. So you now know whom to kill ;-) 12.51 + 12.52 +- much effort has been put into the Debian package, which now uses debconf. 12.53 + 12.54 +0.2.7 12.55 + 12.56 +- sorry for my reluctany in the last months... 12.57 +- my email address is oku@masqmail.cx. I hope that I keep this for the rest 12.58 +of my life... 12.59 + 12.60 +0.2.6 12.61 + 12.62 +- you can configure the prefered local delivery mechanism for each user. See 12.63 +man page masqmail.conf (5), options mbox_default, mbox_users, mda_users and 12.64 +maildir_users. BIT FAT NOTE: if you used an mda, set mbox_default = "mda" 12.65 +(or use the mda_users option). Just setting mda is not enough any more. 12.66 + 12.67 +- there are the allowed_return_paths and not_allowed_return_paths for the 12.68 +route configurations, this enables better checking for return path addresses 12.69 +than allowed_mail_locals. You can also use this to enable or disable messages 12.70 +from null sender addresses (<>) using "<>". 12.71 +note: this option has been there for quite a time... I just forgot to document it. 12.72 + 12.73 +0.2.5 12.74 + 12.75 +- simple relay checking: if you set do_relay=false in masqmail.conf, users 12.76 +with a return path that is not local will get a 550 reply if they try to 12.77 +deliver to a not local address. This is for users to force them to have a 12.78 +proper configuration. It is _not_ to prevent spammers from using your MTA 12.79 +as a relay, it can be easily forged! masqmail is not designed to be an always 12.80 +accessible MTA for an internet site. 12.81 + 12.82 +- added Maildir support. To use it, add --enable-maildir as ./configure 12.83 +optiom. Currently, if enabled, all local deliveries are to Maildir 12.84 +(in ~user/Maildir), and none to mailbox. This is preliminary, future versions 12.85 +will be configurable (probably together with mda delivery). 12.86 + 12.87 +0.2.4 12.88 + 12.89 +- added -v option, this logs to stdout, so you see what happens when 12.90 +calling masqmail from command line. This is not yet finished, and only 12.91 +for fetching mails completed. 12.92 + 12.93 +0.2.3 12.94 + 12.95 +- new option lock_dir where locks will be put to. Defaults to the spool 12.96 +dir with '/lock/' appended (if spool_dir is /var/spool/masqmail/, lock_dir 12.97 +is /var/spool/masqmail/lock/). 12.98 + 12.99 +- You can use the 'do_uidl_dele' option more reliably. The uidl list 12.100 +will be written immediately after a message was fetched, so if you use the 12.101 +do_uidl and do_uidl_dele option you can safely interrupt masqmail when it is 12.102 +getting mail via pop3, and do not get the message again next time. 12.103 + 12.104 +- there are a lot of new options for ./configure to customize masqmail 12.105 +to your needs. See INSTALL. 12.106 + 12.107 +- Uli Funcke sent a patch with the new options 'local_addresses' and 12.108 +'not_local_addresses' for masqmail.conf. With these, you can declare single 12.109 +email addresses as local, though they normally are not, and vice versa, 12.110 +declare addresses as not local though normally they are (determined with 12.111 +local_hosts). These options are not yet documented. 12.112 + 12.113 +0.2.2 12.114 +- with -go5m you can now run a get daemon, the command 'masqmail -go5m' will fetch 12.115 +mail every five minutes, using the detected online configuration. 12.116 + 12.117 +0.2.1 12.118 + 12.119 +- there is a new option for the main conf: online_gets. Using this option, 12.120 +you can retrieve mail with just calling masqmail -go, masqmail will detect 12.121 +whether it is online (similar to conect_routes (which is now called 12.122 +online_routes)). 12.123 + 12.124 +0.2.0 12.125 + 12.126 +This is the first release of he development branch of masqmail 12.127 + 12.128 +- the default configuration is now /etc/masqmail/masqmail.conf 12.129 + (as it already was for the debian package). The --with-conffile 12.130 + option for configure has been replaced by the --with-confdir option. 12.131 + 12.132 +- added delivery failure notices: 12.133 + o you can customize your own delivery failure report, its 12.134 + default location is /etc/masqmail/tpl/failmsg.tpl 12.135 + o if a delivery via a route fails permanently (the server replied with a 5xx status) 12.136 + the message will be bounced, if it is bounced, no further delivery will be attempted. 12.137 + This is different to previous versions, where failed messages were kept in the queue until 12.138 + it was finally delivered, deleted or forever. 12.139 + 12.140 +- there is a new online detection method: pipe. This allows you more 12.141 + flexibility to detect the current online status, eg. the DHCP status on notebooks. 12.142 + 12.143 +This method will once replace the 'mserver' option, 12.144 +you can already use the program mservdetect to use it: 12.145 + 12.146 +online_method=pipe 12.147 +online_pipe="/usr/bin/mservdetect localhost 222" 12.148 + 12.149 +instead of 12.150 + 12.151 +online_etect=mserver 12.152 +mserver_iface="localhost:222" 12.153 + 12.154 +0.1.9 12.155 + 12.156 +- you can use pipes in routes to implement gateways to uucp, fax, sms etc. 12.157 +The setup is similar to mda transport. See man pages. 12.158 + 12.159 +- for each connection (connect_routes), you can now give a list of 12.160 +route files, which will be used in the order given. You can use the 12.161 +filter rules (allowed_* and not_allowed_* rules) within each route. 12.162 + 12.163 +0.1.8 12.164 + 12.165 +- for pop retrieval and smtp sending you can use a wrapper for eg. ssl 12.166 +tunneling. See man pages. 12.167 + 12.168 +- a user can delete his mail from the spool with -Mrm if received 12.169 +locally, and if you configure with --enable-ident and set 12.170 +ident_trusted_nets also if received via smtp. 12.171 + 12.172 +- a backslash now works to escape characters in the configuration, so 12.173 +you can now use quotes inside quotes. All other characters with a 12.174 +leading backslash will be converted to itself (\a becomes a, \\ 12.175 +becomes \). 12.176 + 12.177 +- you can now use an mda for local mails. The mda will be called 12.178 +*after* alias expansion. See documentation for more. 12.179 + 12.180 +0.1.0 12.181 +- masqmail can now retrieve mail with pop3. See the manual on how to do that. 12.182 +- supports now ESMTP AUTH as a client. 12.183 +- when called with -qo (without a connection name), the online status 12.184 +will be checked with the configured method. 12.185 + 12.186 +0.0.10 12.187 +- there is now alias support. Give the location of the alias file (usually /etc/aliases) with eg. 12.188 +alias_file = "/etc/aliases" 12.189 +- delivery to pipes is now possible, but only if it appears in an alias file. Example: 12.190 +pipe: |/usr/bin/command 12.191 +will expand the address pipe to "|/usr/bin/command" which invokes '/usr/bin/command' 12.192 +as the user and group masqmail is running as. 12.193 +- entries starting with '\' in alias files will not be exanded further 12.194 + 12.195 +- changed permissions for queue runs again: got to be root, mail or in group trusted. 12.196 + 12.197 +- some configuration parameters can be read from files, these are 12.198 +allowed_mail_locals, not_allowed_mail_locals, allowed_rcpt_domains, not_allowed_rcpt_domains, 12.199 +map_return_path_addresses, map_h_from_addresses, map_h_reply_to_addresses 12.200 +any entry in these list beginning with a '/' are regarded as 12.201 +filenames, the content of these will be put at that location. Entries 12.202 +in these files are separated by new lines. Example: 12.203 +in the route file you have: 12.204 +map_h_from_addresses = "/etc/masqmail/hfrom.map" 12.205 +and hfrom.map contains: 12.206 + 12.207 +john: John Smith <jsmith@mail.academic.edu> 12.208 +cmiller: "Charlie Miller" <cmiller@foo.com> 12.209 + 12.210 +UPDATE (Jan 2000): The new home location of MasqMail is 12.211 +http://www.innominate.org/~oku/masqmail/, the new email adress of the 12.212 +author is Oliver Kurth <kurth@innominate.de>. 12.213 + 12.214 +0.0.9 12.215 +- see ChangeLog. 12.216 + 12.217 +NOTE: The home location of MasqMail at 12.218 +http://merlin.uni-sw.gwdg.de/~okurth/masqmail/ is uncertain from the 12.219 +beginning of Nov. 1999! See http://www.freshmeat.net for new 12.220 +announcements. I leave the university and begin a new job on Nov. 1st 1999 12.221 +in Berlin :-). 12.222 + 12.223 +0.0.8: 12.224 +- there is now a FAQ page. See docs/faq.html. 12.225 +- added allowed_rcpt_domains option for routes. 12.226 +- added allowed_mail_locals and not_allowed_mail_locals options for routes. 12.227 +- mailq now gives information about the time mails spent in the queue, 12.228 +the message size and the received host. 12.229 + 12.230 +0.0.7: 12.231 +-bug fix release: for statements in two adjacent lines, the second was not recognized. 12.232 + 12.233 +0.0.6: 12.234 +- bug fix release: some MUAs (cucipop) saw the locally delivered mails 12.235 +concatenated. (cucipop is not a MUA but a pop server, but it has to read the 12.236 +mails). 12.237 + 12.238 +0.0.5: 12.239 +- fixed a bug that caused the headers to be lost under some circumstances. 12.240 +- added expand_h_sender_domain option for routes. 12.241 +- rewrote the libresolv part in configure. Should work better now. 12.242 + 12.243 +0.0.4: 12.244 +- MM should now recognize whether libresolv should be linked. 12.245 +- added --with-logdir=LOGDIR and --with-spooldir=SPOOLDIR to set directories. 12.246 + These will be created if not already existent. 12.247 +- added --with-user=USER, --with-group=GROUP options to set user and group id 12.248 + for MasqMail. 12.249 + 12.250 +0.0.3: 12.251 +- MasqMail can now deliver mails that are received at online 12.252 + time immediately to the internet. See the options detect_online, 12.253 + mserver_iface and online_file. 12.254 +- You can define a route configuration for the local net. See option 12.255 + local_net_route. 12.256 +
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/docs/masqmail.cx/download/index.html Thu Sep 18 18:57:02 2008 +0200 13.3 @@ -0,0 +1,54 @@ 13.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 13.5 +<HTML> 13.6 + <HEAD> 13.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 13.8 + </HEAD> 13.9 + <BODY> 13.10 +<H1>Index of /~okurth/masqmail/download</H1> 13.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=D">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 13.12 +<HR> 13.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 13.14 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 13.15 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 13.16 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 13.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 13.18 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 13.19 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 13.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 13.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 13.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 13.23 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 13.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 13.25 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 13.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 13.27 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 13.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 13.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 13.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 13.31 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 13.32 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 13.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 13.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 13.35 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 13.36 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 13.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 13.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 13.39 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 13.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 13.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 13.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 13.43 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 13.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 13.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 13.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 13.47 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 13.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 13.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 13.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 13.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 13.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 13.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 13.54 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 13.55 +</PRE><HR> 13.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 13.57 +</BODY></HTML>
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/docs/masqmail.cx/download/index.html?D=A Thu Sep 18 18:57:02 2008 +0200 14.3 @@ -0,0 +1,54 @@ 14.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 14.5 +<HTML> 14.6 + <HEAD> 14.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 14.8 + </HEAD> 14.9 + <BODY> 14.10 +<H1>Index of /~okurth/masqmail/download</H1> 14.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=D">Description</A> 14.12 +<HR> 14.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 14.14 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 14.15 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 14.16 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 14.17 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 14.18 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 14.19 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 14.20 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 14.21 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 14.22 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 14.23 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 14.24 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 14.25 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 14.26 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 14.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 14.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 14.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 14.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 14.31 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 14.32 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 14.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 14.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 14.35 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 14.36 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 14.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 14.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 14.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 14.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 14.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 14.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 14.43 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 14.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 14.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 14.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 14.47 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 14.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 14.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 14.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 14.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 14.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 14.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 14.54 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 14.55 +</PRE><HR> 14.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 14.57 +</BODY></HTML>
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/docs/masqmail.cx/download/index.html?D=D Thu Sep 18 18:57:02 2008 +0200 15.3 @@ -0,0 +1,54 @@ 15.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 15.5 +<HTML> 15.6 + <HEAD> 15.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 15.8 + </HEAD> 15.9 + <BODY> 15.10 +<H1>Index of /~okurth/masqmail/download</H1> 15.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 15.12 +<HR> 15.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 15.14 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 15.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 15.16 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 15.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 15.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 15.19 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 15.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 15.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 15.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 15.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 15.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 15.25 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 15.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 15.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 15.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 15.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 15.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 15.31 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 15.32 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 15.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 15.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 15.35 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 15.36 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 15.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 15.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 15.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 15.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 15.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 15.42 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 15.43 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 15.44 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 15.45 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 15.46 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 15.47 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 15.48 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 15.49 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 15.50 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 15.51 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 15.52 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 15.53 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 15.54 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 15.55 +</PRE><HR> 15.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 15.57 +</BODY></HTML>
16.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 16.2 +++ b/docs/masqmail.cx/download/index.html?M=A Thu Sep 18 18:57:02 2008 +0200 16.3 @@ -0,0 +1,54 @@ 16.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 16.5 +<HTML> 16.6 + <HEAD> 16.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 16.8 + </HEAD> 16.9 + <BODY> 16.10 +<H1>Index of /~okurth/masqmail/download</H1> 16.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=D">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 16.12 +<HR> 16.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 16.14 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 16.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 16.16 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 16.17 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 16.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 16.19 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 16.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 16.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 16.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 16.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 16.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 16.25 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 16.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 16.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 16.28 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 16.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 16.30 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 16.31 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 16.32 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 16.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 16.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 16.35 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 16.36 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 16.37 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 16.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 16.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 16.40 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 16.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 16.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 16.43 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 16.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 16.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 16.46 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 16.47 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 16.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 16.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 16.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 16.51 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 16.52 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 16.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 16.54 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 16.55 +</PRE><HR> 16.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 16.57 +</BODY></HTML>
17.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 17.2 +++ b/docs/masqmail.cx/download/index.html?M=D Thu Sep 18 18:57:02 2008 +0200 17.3 @@ -0,0 +1,54 @@ 17.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 17.5 +<HTML> 17.6 + <HEAD> 17.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 17.8 + </HEAD> 17.9 + <BODY> 17.10 +<H1>Index of /~okurth/masqmail/download</H1> 17.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 17.12 +<HR> 17.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 17.14 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 17.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 17.16 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 17.17 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 17.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 17.19 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 17.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 17.21 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 17.22 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 17.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 17.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 17.25 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 17.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 17.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 17.28 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 17.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 17.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 17.31 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 17.32 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 17.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 17.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 17.35 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 17.36 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 17.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 17.38 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 17.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 17.40 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 17.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 17.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 17.43 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 17.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 17.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 17.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 17.47 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 17.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 17.49 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 17.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 17.51 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 17.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 17.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 17.54 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 17.55 +</PRE><HR> 17.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 17.57 +</BODY></HTML>
18.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 18.2 +++ b/docs/masqmail.cx/download/index.html?N=A Thu Sep 18 18:57:02 2008 +0200 18.3 @@ -0,0 +1,54 @@ 18.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 18.5 +<HTML> 18.6 + <HEAD> 18.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 18.8 + </HEAD> 18.9 + <BODY> 18.10 +<H1>Index of /~okurth/masqmail/download</H1> 18.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=D">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 18.12 +<HR> 18.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 18.14 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 18.15 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 18.16 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 18.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 18.18 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 18.19 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 18.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 18.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 18.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 18.23 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 18.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 18.25 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 18.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 18.27 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 18.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 18.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 18.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 18.31 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 18.32 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 18.33 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 18.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 18.35 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 18.36 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 18.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 18.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 18.39 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 18.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 18.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 18.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 18.43 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 18.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 18.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 18.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 18.47 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 18.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 18.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 18.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 18.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 18.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 18.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 18.54 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 18.55 +</PRE><HR> 18.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 18.57 +</BODY></HTML>
19.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 19.2 +++ b/docs/masqmail.cx/download/index.html?N=D Thu Sep 18 18:57:02 2008 +0200 19.3 @@ -0,0 +1,54 @@ 19.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 19.5 +<HTML> 19.6 + <HEAD> 19.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 19.8 + </HEAD> 19.9 + <BODY> 19.10 +<H1>Index of /~okurth/masqmail/download</H1> 19.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 19.12 +<HR> 19.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 19.14 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 19.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 19.16 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 19.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 19.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 19.19 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 19.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 19.21 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 19.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 19.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 19.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 19.25 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 19.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 19.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 19.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 19.29 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 19.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 19.31 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 19.32 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 19.33 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 19.34 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 19.35 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 19.36 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 19.37 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 19.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 19.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 19.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 19.41 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 19.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 19.43 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 19.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 19.45 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 19.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 19.47 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 19.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 19.49 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 19.50 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 19.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 19.52 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 19.53 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 19.54 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 19.55 +</PRE><HR> 19.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 19.57 +</BODY></HTML>
20.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 20.2 +++ b/docs/masqmail.cx/download/index.html?S=A Thu Sep 18 18:57:02 2008 +0200 20.3 @@ -0,0 +1,54 @@ 20.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 20.5 +<HTML> 20.6 + <HEAD> 20.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 20.8 + </HEAD> 20.9 + <BODY> 20.10 +<H1>Index of /~okurth/masqmail/download</H1> 20.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=D">Size</A> <A HREF="index.html?D=A">Description</A> 20.12 +<HR> 20.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 20.14 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 20.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 20.16 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 20.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 20.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 20.19 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 20.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 20.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 20.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 20.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 20.24 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 20.25 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 20.26 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 20.27 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 20.28 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 20.29 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 20.30 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 20.31 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 20.32 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 20.33 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 20.34 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 20.35 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 20.36 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 20.37 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 20.38 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 20.39 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 20.40 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 20.41 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 20.42 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 20.43 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 20.44 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 20.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 20.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 20.47 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 20.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 20.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 20.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 20.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 20.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 20.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 20.54 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 20.55 +</PRE><HR> 20.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 20.57 +</BODY></HTML>
21.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 21.2 +++ b/docs/masqmail.cx/download/index.html?S=D Thu Sep 18 18:57:02 2008 +0200 21.3 @@ -0,0 +1,54 @@ 21.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 21.5 +<HTML> 21.6 + <HEAD> 21.7 + <TITLE>Index of /~okurth/masqmail/download</TITLE> 21.8 + </HEAD> 21.9 + <BODY> 21.10 +<H1>Index of /~okurth/masqmail/download</H1> 21.11 +<PRE><IMG SRC="../../../icons/blank.gif" ALT=" "> <A HREF="index.html?N=A">Name</A> <A HREF="index.html?M=A">Last modified</A> <A HREF="index.html?S=A">Size</A> <A HREF="index.html?D=A">Description</A> 21.12 +<HR> 21.13 +<IMG SRC="../../../icons/back.gif" ALT="[DIR]"> <A HREF="../index.html">Parent Directory</A> 17-Sep-2003 14:46 - 21.14 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz">masqmail-0.2.19.tar.gz</A> 19-Mar-2003 02:03 238k GZIP compressed file 21.15 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz</A> 04-Jun-2003 00:48 237k GZIP compressed file 21.16 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz">masqmail-0.2.18.tar.gz</A> 06-Dec-2002 06:27 236k GZIP compressed file 21.17 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz">masqmail-0.2.17.tar.gz</A> 28-Nov-2002 07:20 235k GZIP compressed file 21.18 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz">masqmail-0.2.16.tar.gz</A> 12-Nov-2002 08:46 230k GZIP compressed file 21.19 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz">masqmail-0.2.15.tar.gz</A> 06-Nov-2002 05:18 230k GZIP compressed file 21.20 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz">masqmail-0.2.14.tar.gz</A> 26-Oct-2002 06:23 230k GZIP compressed file 21.21 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz">masqmail-0.2.13.tar.gz</A> 23-Oct-2002 12:14 229k GZIP compressed file 21.22 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz">masqmail-0.2.12.tar.gz</A> 23-Oct-2002 10:12 229k GZIP compressed file 21.23 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz</A> 06-Nov-2002 14:15 171k GZIP compressed file 21.24 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail_0.2.17-0.sarge1_i386.deb">masqmail_0.2.17-0.sarge1_i386.deb</A> 29-Nov-2002 02:52 113k 21.25 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog">ChangeLog</A> 04-Jun-2003 00:48 21k 21.26 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</A> 28-Nov-2002 07:21 15k 21.27 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="ChangeLog-stable">ChangeLog-stable</A> 06-Nov-2002 14:15 14k 21.28 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="NEWS">NEWS</A> 28-Nov-2002 07:22 10k 21.29 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</A> 06-Dec-2002 06:29 8k 21.30 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</A> 04-Jun-2003 00:49 7k 21.31 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</A> 26-Oct-2002 06:26 7k 21.32 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</A> 19-Mar-2003 02:17 6k 21.33 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</A> 06-Nov-2002 05:23 6k 21.34 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="INSTALL">INSTALL</A> 19-Mar-2003 02:04 5k 21.35 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</A> 12-Nov-2002 08:47 5k 21.36 +<IMG SRC="../../../icons/unknown.gif" ALT="[ ]"> <A HREF="masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</A> 26-Oct-2002 06:26 5k 21.37 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc</A> 04-Jun-2003 00:51 1k GZIP compressed file 21.38 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.asc">masqmail-0.2.19.tar.gz.asc</A> 19-Mar-2003 02:19 1k GZIP compressed file 21.39 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.asc">masqmail-0.2.18.tar.gz.asc</A> 06-Dec-2002 06:28 1k GZIP compressed file 21.40 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.asc">masqmail-0.2.17.tar.gz.asc</A> 28-Nov-2002 07:24 1k GZIP compressed file 21.41 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.asc">masqmail-0.2.16.tar.gz.asc</A> 12-Nov-2002 08:49 1k GZIP compressed file 21.42 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.asc">masqmail-0.2.15.tar.gz.asc</A> 06-Nov-2002 05:21 1k GZIP compressed file 21.43 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.asc">masqmail-0.2.14.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 21.44 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.asc">masqmail-0.2.13.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 21.45 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.asc">masqmail-0.2.12.tar.gz.asc</A> 26-Oct-2002 06:31 1k GZIP compressed file 21.46 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.20.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum</A> 04-Jun-2003 00:49 1k GZIP compressed file 21.47 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.19.tar.gz.md5sum">masqmail-0.2.19.tar.gz.md5sum</A> 19-Mar-2003 02:20 1k GZIP compressed file 21.48 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.18.tar.gz.md5sum</A> 06-Dec-2002 06:29 1k GZIP compressed file 21.49 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.17.tar.gz.md5sum">masqmail-0.2.17.tar.gz.md5sum</A> 28-Nov-2002 07:23 1k GZIP compressed file 21.50 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.16.tar.gz.md5sum">masqmail-0.2.16.tar.gz.md5sum</A> 12-Nov-2002 08:49 1k GZIP compressed file 21.51 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.15.tar.gz.md5sum">masqmail-0.2.15.tar.gz.md5sum</A> 06-Nov-2002 05:18 1k GZIP compressed file 21.52 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.14.tar.gz.md5sum">masqmail-0.2.14.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 21.53 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.13.tar.gz.md5sum">masqmail-0.2.13.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 21.54 +<IMG SRC="../../../icons/compressed.gif" ALT="[CMP]"> <A HREF="masqmail-0.2.12.tar.gz.md5sum">masqmail-0.2.12.tar.gz.md5sum</A> 26-Oct-2002 06:26 1k GZIP compressed file 21.55 +</PRE><HR> 21.56 +<ADDRESS>Apache/1.3.41 Server at www.sonic.net Port 80</ADDRESS> 21.57 +</BODY></HTML>
22.1 Binary file docs/masqmail.cx/download/masqmail-0.2.12-0.2.13.xdelta has changed
23.1 Binary file docs/masqmail.cx/download/masqmail-0.2.12.tar.gz has changed
24.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 24.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.12.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 24.3 @@ -0,0 +1,7 @@ 24.4 +-----BEGIN PGP SIGNATURE----- 24.5 +Version: GnuPG v1.2.0 (GNU/Linux) 24.6 + 24.7 +iD8DBQA9upkVUmVSJkUeqxsRAsKDAJsEPCe2XpRkXYbGhI+lCM60i0K8MgCgvr+C 24.8 +YGmEka1JaGUIDcfqLRGdoOY= 24.9 +=tmHp 24.10 +-----END PGP SIGNATURE-----
25.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 25.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.12.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 25.3 @@ -0,0 +1,1 @@ 25.4 +14c3d9556e5af3bca594527d1b039c1d masqmail-0.2.12.tar.gz
26.1 Binary file docs/masqmail.cx/download/masqmail-0.2.13-0.2.14.xdelta has changed
27.1 Binary file docs/masqmail.cx/download/masqmail-0.2.13.tar.gz has changed
28.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 28.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.13.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 28.3 @@ -0,0 +1,7 @@ 28.4 +-----BEGIN PGP SIGNATURE----- 28.5 +Version: GnuPG v1.2.0 (GNU/Linux) 28.6 + 28.7 +iD8DBQA9upkMUmVSJkUeqxsRAnVyAJwPmp2RvdQ69Xj5iurp2hQm1j/LogCgtoCh 28.8 +VCrngwBbCBnH2kXLxipJQSk= 28.9 +=gB5g 28.10 +-----END PGP SIGNATURE-----
29.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 29.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.13.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 29.3 @@ -0,0 +1,1 @@ 29.4 +a9984f77386074ace9e5310193e004e2 masqmail-0.2.13.tar.gz
30.1 Binary file docs/masqmail.cx/download/masqmail-0.2.14-0.2.15.xdelta has changed
31.1 Binary file docs/masqmail.cx/download/masqmail-0.2.14.tar.gz has changed
32.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 32.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.14.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 32.3 @@ -0,0 +1,7 @@ 32.4 +-----BEGIN PGP SIGNATURE----- 32.5 +Version: GnuPG v1.2.0 (GNU/Linux) 32.6 + 32.7 +iD8DBQA9upjbUmVSJkUeqxsRAkReAKDPhwRMa+nJ0zdsBLlh0uC63xaGugCfX1lh 32.8 +cUq5RWJXANnNLmgPtK0IaHg= 32.9 +=6kWS 32.10 +-----END PGP SIGNATURE-----
33.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 33.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.14.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 33.3 @@ -0,0 +1,1 @@ 33.4 +8e18a831759e778ec59820e642763a5e masqmail-0.2.14.tar.gz
34.1 Binary file docs/masqmail.cx/download/masqmail-0.2.15-0.2.16.xdelta has changed
35.1 Binary file docs/masqmail.cx/download/masqmail-0.2.15.tar.gz has changed
36.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 36.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.15.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 36.3 @@ -0,0 +1,7 @@ 36.4 +-----BEGIN PGP SIGNATURE----- 36.5 +Version: GnuPG v1.2.1 (GNU/Linux) 36.6 + 36.7 +iD8DBQA9yRdtUmVSJkUeqxsRAupDAJwLvm7nS8qAfibgUNSu4fZWlc/NGACgq1ia 36.8 +WIzmQI9ExSJbVRICQpPcNzU= 36.9 +=SVCn 36.10 +-----END PGP SIGNATURE-----
37.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 37.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.15.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 37.3 @@ -0,0 +1,1 @@ 37.4 +bb8402650531aefc33ea524470909bea masqmail-0.2.15.tar.gz
38.1 Binary file docs/masqmail.cx/download/masqmail-0.2.16-0.2.17.xdelta has changed
39.1 Binary file docs/masqmail.cx/download/masqmail-0.2.16.tar.gz has changed
40.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 40.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.16.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 40.3 @@ -0,0 +1,7 @@ 40.4 +-----BEGIN PGP SIGNATURE----- 40.5 +Version: GnuPG v1.2.1 (GNU/Linux) 40.6 + 40.7 +iD8DBQA90TEDUmVSJkUeqxsRAmWDAKC0rG7PHMByAuDawBinabrtb31rtQCgpyU/ 40.8 +WMwoz4WDwOYe0P48QQ3faHM= 40.9 +=JT9R 40.10 +-----END PGP SIGNATURE-----
41.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 41.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.16.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 41.3 @@ -0,0 +1,1 @@ 41.4 +ca133930a57433350597330e3d946cf9 masqmail-0.2.16.tar.gz
42.1 Binary file docs/masqmail.cx/download/masqmail-0.2.17-0.2.18.xdelta has changed
43.1 Binary file docs/masqmail.cx/download/masqmail-0.2.17.tar.gz has changed
44.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 44.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.17.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 44.3 @@ -0,0 +1,7 @@ 44.4 +-----BEGIN PGP SIGNATURE----- 44.5 +Version: GnuPG v1.2.1 (GNU/Linux) 44.6 + 44.7 +iD8DBQA95jUSUmVSJkUeqxsRAhyuAJ9pXlwIhBBCI0dngCpcECYyWa8SCACfVLEy 44.8 +pbUMyITisEJcdztrAT9bYJU= 44.9 +=IqKw 44.10 +-----END PGP SIGNATURE-----
45.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 45.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.17.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 45.3 @@ -0,0 +1,1 @@ 45.4 +d7d649f2d11e51f12fff890fe28d06e9 masqmail-0.2.17.tar.gz
46.1 Binary file docs/masqmail.cx/download/masqmail-0.2.18-0.2.19.xdelta has changed
47.1 Binary file docs/masqmail.cx/download/masqmail-0.2.18.tar.gz has changed
48.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 48.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.18.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 48.3 @@ -0,0 +1,7 @@ 48.4 +-----BEGIN PGP SIGNATURE----- 48.5 +Version: GnuPG v1.2.1 (GNU/Linux) 48.6 + 48.7 +iD8DBQA98LQYUmVSJkUeqxsRAvTfAKDWg3aLIRn7m8WGhAWL+8d0RQsJkQCeJKOI 48.8 +wWgXBlVUbddbkv2eAuiIYBM= 48.9 +=eruP 48.10 +-----END PGP SIGNATURE-----
49.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 49.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.18.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 49.3 @@ -0,0 +1,1 @@ 49.4 +cf340e06d0da28fa8dbbf2cc12d76c51 masqmail-0.2.18.tar.gz
50.1 Binary file docs/masqmail.cx/download/masqmail-0.2.19-0.2.20.xdelta has changed
51.1 Binary file docs/masqmail.cx/download/masqmail-0.2.19.tar.gz has changed
52.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 52.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.19.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 52.3 @@ -0,0 +1,7 @@ 52.4 +-----BEGIN PGP SIGNATURE----- 52.5 +Version: GnuPG v1.2.1 (GNU/Linux) 52.6 + 52.7 +iD8DBQA+eEQXUmVSJkUeqxsRAhHCAJwO+PEr4JcqDiaMbcaA6+ediUW3nwCfZd+F 52.8 +YkbUkb4GOrLIpvDG8kNcum0= 52.9 +=zAed 52.10 +-----END PGP SIGNATURE-----
53.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 53.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.19.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 53.3 @@ -0,0 +1,1 @@ 53.4 +0069709ebb8b04f151c326ecb52b83c6 masqmail-0.2.19.tar.gz
54.1 Binary file docs/masqmail.cx/download/masqmail-0.2.20.tar.gz has changed
55.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 55.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.20.tar.gz.asc Thu Sep 18 18:57:02 2008 +0200 55.3 @@ -0,0 +1,7 @@ 55.4 +-----BEGIN PGP SIGNATURE----- 55.5 +Version: GnuPG v1.2.2 (GNU/Linux) 55.6 + 55.7 +iD8DBQA+3aTwUmVSJkUeqxsRAgdnAJ9dW61FU5wdFdG1WgKNuNnEXhuaMQCg3qNe 55.8 +hX37oV2Mr9FxdpzIif35rak= 55.9 +=OAFZ 55.10 +-----END PGP SIGNATURE-----
56.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 56.2 +++ b/docs/masqmail.cx/download/masqmail-0.2.20.tar.gz.md5sum Thu Sep 18 18:57:02 2008 +0200 56.3 @@ -0,0 +1,1 @@ 56.4 +74540980ecde45783e888d1da80cb318 masqmail-0.2.20.tar.gz
57.1 Binary file docs/masqmail.cx/download/masqmail_0.2.17-0.sarge1_i386.deb has changed
58.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 58.2 +++ b/docs/masqmail.cx/faq.html Thu Sep 18 18:57:02 2008 +0200 58.3 @@ -0,0 +1,189 @@ 58.4 +<HTML> 58.5 +<HEAD> 58.6 +<TITLE>MasqMail - Manual 58.7 +</TITLE> 58.8 +</HEAD> 58.9 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 58.10 + 58.11 + <center> 58.12 + <table width="80%"> 58.13 + <tr><td> 58.14 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 58.15 + <tr> 58.16 + <td> 58.17 + <a href="manual.html"> 58.18 + <img width="20" src = "../images/u_arrow.gif" alt = "manual"> 58.19 + </a> 58.20 + </td> 58.21 + <td align=center width="100%"><font size="6" color = "#ffffff">Frequently Asked Questions</font></td> 58.22 + <td> 58.23 + <a href="config.html"> 58.24 + <img width="20" src = "../images/l_arrow.gif" alt = "Configuration"> 58.25 + </a> 58.26 + </td> 58.27 + </tr> 58.28 + </table> 58.29 + 58.30 + 58.31 + Some of these questions were never asked, but I thought they will be 58.32 + some time. Some <em>were</em> asked. 58.33 + 58.34 + <h4>General Questions</h4> 58.35 + <ul> 58.36 + <li><a href="faq.html#1_0">1.0: When do I need MasqMail?</a></li> 58.37 + <li><a href="faq.html#1_1">1.1: When do I <em>not</em> need MasqMail?</a></li> 58.38 + <li><a href="faq.html#1_2">1.2: Can I retrieve mail with MasqMail?</a></li> 58.39 + <li><a href="faq.html#1_3">1.3: Is there a mailing list for MasqMail?</a></li> 58.40 + </ul> 58.41 + 58.42 + <h4>Setup</h4> 58.43 + <ul> 58.44 + <li><a href="faq.html#2_0">2.0: After starting masmail, I get the following 58.45 + message: "could not gain root privileges. Is the setuid bit set?"</a></li> 58.46 + <li><a href="faq.html#2_1">2.1: After starting masmail, I get the following 58.47 + message: "bind: (terminating): Address already in use"</a></li> 58.48 + </ul> 58.49 + 58.50 + <h4>Header Rewriting</h4> 58.51 + <ul> 58.52 + <li><a href="faq.html#3_0">3.0: My friends told me that they do not see my 58.53 + full name in their inbox, although it is configured in my mail 58.54 + client.</a></li> 58.55 + </ul> 58.56 + 58.57 + <h4>Delivering Online</h4> 58.58 + <ul> 58.59 + <li><a href="faq.html#4_0">4.0: With connection methed <em>file</em>, I get the following message in the log file: "Could not open /tmp/connect_route: Permission denied".</a></li> 58.60 + <li><a href="faq.html#4_1">4.1: With connection methed <em>file</em>, I get the following message in the log file: "route with name <em>name</em> not found.".</a></li> 58.61 + </ul> 58.62 + 58.63 + <h4>Bugs</h4> 58.64 + <ul> 58.65 + <li><a href="faq.html#5_0">5.0: I found a bug.</a></li> 58.66 + <li><a href="faq.html#5_1">5.1: I think I found a bug, but I am not sure whether I configured MasqMail incorrectly.</a></li> 58.67 + </ul> 58.68 + 58.69 + <a name="1_0"> <h4>1.0: When do I need MasqMail?</h4></a> 58.70 + 58.71 + <p> You do not <em>need</em> it. But it makes sending mails via a 58.72 + dialup connection a lot easier.</p> 58.73 + 58.74 + <p>It is useful if you dial to the internet from time to time via a 58.75 + modem and connect to different providers, each one with a different 58.76 + configuration. Other MTAs are not flexible enough if you have to send 58.77 + mails via different mail servers for each provider. With MasqMail you 58.78 + can configure a different one for each provider and even set your 58.79 + return addresses differently.</p> 58.80 + 58.81 + <p>It is also useful if you have a LAN with a gateway which is 58.82 + connected to the internet via a modem because you can rewrite your 58.83 + address depending on whether the recipients are <em>inside</em> or 58.84 + <em>outside</em> your LAN. So responses and delivery failures on your 58.85 + LAN will be sent to you without leaving it, while those outside will 58.86 + be delivered to your address outside. (But it does not yet send 58.87 + delivery failures itself yet.)</p> 58.88 + 58.89 + <p>MasqMail is also often used on notebooks.</p> 58.90 + 58.91 + <a name="1_1"><h4>1.1: When do I <em>not</em> need MasqMail?</h4></a> 58.92 + 58.93 + <p>The use of MasqMail is <em>strongly</em> discouraged if you have a 58.94 + permanent connection to the internet without a firewall. First because 58.95 + it does not have the ability to block relaying (it relays every mail) 58.96 + and second because there are no capabilities to protect against 58.97 + SPAM. You will not take advantages of its features anyway.</p> 58.98 + 58.99 + <a name="1_2"><h4>1.2: Can I retrieve mail with MasqMail?</h4></a> 58.100 + 58.101 + <p>Yes, for version >= 0.1.0 you can retrieve mail via the POP3 and 58.102 + APOP protocol from single drop mailboxes (in case you do not know 58.103 + about single/mutidrop, you probaby use single drop mailboxes).</p> 58.104 + 58.105 + <p>You can also use fetchmail or other pop/imap clients to feed 58.106 + it.</p> 58.107 + 58.108 + <a name="1_3"><h4>1.3: Is there a mailing list for MasqMail?</h4></a> 58.109 + 58.110 + <p>Yes, there is! See <a href="http://www.innominate.org/mailman/listinfo/masqmail">here</a>.</p> 58.111 + 58.112 + <a name="2_0"><h4>2.0: After starting masmail, I get the following 58.113 + message: "could not gain root privileges. Is the setuid bit set?"</h4></a> 58.114 + 58.115 + <p>Set the set-user-id-bit with chmod u+s /usr/sbin/masqmail.</p> 58.116 + 58.117 + <a name="2_1"><h4>2.1: After starting masmail, I get the following 58.118 + message: "bind: (terminating): Address already in use"</h4></a> 58.119 + 58.120 + <p>This means that there is already a process listening on a port, 58.121 + usually 25. You either have another MTA running in background 58.122 + (sendmail, exim, etc...) or another instance of masqmail.</p> 58.123 + 58.124 + <p>It may also mean that the ports you configured MM to listen to 58.125 + (with 'listen_addresses') are on the same IP address, eg. you may have 58.126 + set your hostname to 127.0.0.1 and try to listen on localhost and your 58.127 + host name. In this case either set your hostname to another IP address 58.128 + or delete one of the conflicting entries.</p> 58.129 + 58.130 + <a name="3_0"><h4>3.0: My friends told me that they do not see my full 58.131 + name in their inbox, although it is configured in my mail 58.132 + client.</h4></a> 58.133 + 58.134 + <p>You probably used the <b>map_h_from_addresses</b> feature in the 58.135 + route configuration and forgot to set your real name. The syntax 58.136 + is:</p> 58.137 + 58.138 + <pre> 58.139 +map_h_from_addresses = "charlie:Charlie Miller <cmiller@foo.com>"; 58.140 + </pre> 58.141 + 58.142 + <p>Do not forget the <em>Charlie Miller</em>.</p> 58.143 + 58.144 + <a name="4_0"><h4>4.0: With connection method <em>file</em>, I get the 58.145 + following message in the log file: "Could not open /tmp/connect_route: 58.146 + Permission denied".</h4></a> 58.147 + 58.148 + <p>In your ip-up script, you have to set read permission to the user 58.149 + masqmail runs as. After you write the file with the connection name, 58.150 + set read permission to all with chmod ugo+r <em>file</em>. 58.151 + 58.152 + <a name="4_1"><h4>4.1: With connection methed <em>file</em>, I get the 58.153 + following message in the log file: "route with name <em>name</em> not 58.154 + found.".</h4></a> 58.155 + 58.156 + <p>Check whether the name in the file is really identical to name you 58.157 + gave to the route configuration (case sensitive!). Maybe there is a 58.158 + linefeed after the name in the file. Write it with echo -n.</p> 58.159 + 58.160 + <a name="5_0"><h4>5.0: I found a bug.</h4></a> 58.161 + 58.162 + <p>Make sure you are using the newest version, in case of doubt search 58.163 + it in <a href="http://www.freshmeat.net">freshmeat</a>. If you do, tell 58.164 + <a href = "mailto:Oliver Kurth <kurth@innominate.de>">me</a>. See 58.165 + also the section <a href="index.html#bugs">bugs</a> on the <a 58.166 + href="index.html">main</a> page.</p> 58.167 + 58.168 + <a name="5_1"><h4>5.1: I think I found a bug, but I am not sure 58.169 + whether I configured MasqMail incorrectly.</h4></a> 58.170 + 58.171 + <p>Don't care. Tell <a href = "mailto:Oliver Kurth 58.172 + <kurth@innominate.de>">me</a>. Or write to the <a 58.173 + href="http://www.innominate.org/mailman/listinfo/masqmail">mailing 58.174 + list</a>.</p> 58.175 + 58.176 + </td></tr> 58.177 + 58.178 + <tr><td> 58.179 + <p> 58.180 + <hr> 58.181 + <address><a href = "mailto:kurth@innominate.de">Oliver Kurth</a></address> 58.182 + Last modified: Tue May 30 15:19:56 CEST 2000 58.183 + <br> 58.184 + This page was created using <a href="http://www.freddyfrog.com/hacks/genpage/">Genpage</a> - Version: 1.0.6 58.185 + </p> 58.186 + 58.187 + </table> 58.188 + </center> 58.189 + 58.190 + </BODY> 58.191 +</HEAD> 58.192 +
59.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 59.2 +++ b/docs/masqmail.cx/index.html Thu Sep 18 18:57:02 2008 +0200 59.3 @@ -0,0 +1,295 @@ 59.4 +<HTML> 59.5 +<HEAD> 59.6 +<TITLE>MasqMail 59.7 +</TITLE> 59.8 +</HEAD> 59.9 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 59.10 + 59.11 + <center> 59.12 + <table width="80%"> 59.13 + <tr><td> 59.14 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 59.15 +<tr> 59.16 +<td align=center width="100%"><font size="6" color="#ffffff">MasqMail</font></td> 59.17 +</tr> 59.18 +</table> 59.19 + 59.20 +<center><img src="logo_masqmail.jpg" alt="MasqMail"></img></center><br> 59.21 + 59.22 +<a href="index.html#intro">Introduction</a><br> 59.23 +<a href="index.html#features">Features</a><br> 59.24 +<a href="index.html#how">How it works</a><br> 59.25 +<a href="index.html#plat">Platforms</a><br> 59.26 +<a href="index.html#limit">Limitations</a><br> 59.27 +<a href="index.html#secure">Security</a><br> 59.28 +<a href="index.html#require">Requirements</a><br> 59.29 +<a href="index.html#down">Download</a><br> 59.30 +<a href="index.html#docu">Documentation</a></br> 59.31 +<a href="index.html#road">Roadmap</a><br> 59.32 +<a href="index.html#list">Mailing List</a><br> 59.33 +<a href="index.html#bugs">Bugs and Suggestions</a><br> 59.34 +<br> 59.35 + 59.36 + 59.37 +<h2>Introduction</h2> 59.38 + 59.39 +<p>MasqMail is a mail server designed for hosts that do not have a 59.40 +permanent internet connection eg. a home network or a single host at 59.41 +home. It has special support for connections to different ISPs. It 59.42 +replaces sendmail or other MTAs such as qmail or exim.<p> 59.43 + 59.44 +<p>Since version 0.0.10 it supports alias address expansion and can 59.45 +deliver to pipes.</p> 59.46 + 59.47 +<p>MasqMail is released under the <a href="http://www.fsf.org">GPL</a> 59.48 +license.</p> 59.49 + 59.50 +<a name="features"></a> <h2>Features</h2> 59.51 + 59.52 +<ul> 59.53 +<li>Delivers only when online to a destination 'outside' your LAN</li> 59.54 +<li>Support for multiple Providers (ie. Mail Servers, or direct delivery)</li> 59.55 +<li>Rewriting of Return addresses (Return-Path:, From:, Reply-To:), 59.56 +configurable for each Provider separately</li> 59.57 +<li>can also be used as a Mail Server on a LAN</li> 59.58 +<li>alias support</li> 59.59 +<li>delivery to pipes</li> 59.60 +<li>delivery to MDAs (eg. procmail)</li> 59.61 +<li>Maildir support (version >= 0.2.5)</li> 59.62 +<li>routing depending on sender</li> 59.63 +<li>AUTH (RFC 2554) support (as client, since version 0.1.0)</li> 59.64 +<li>SMTP-after-POP</li> 59.65 +<li>POP3 client</li> 59.66 +<li>POP3 client daemon (fetch mail in regular intervals if online)</li> 59.67 +</ul> 59.68 + 59.69 +<a name="how"></a> <h2>How it works</h2> 59.70 + 59.71 +<p>When offline, MasqMail queues all mail with a destination outside 59.72 +of the local network. When you connect to the internet, masqmail will 59.73 +be called with a connection name as an argument. MasqMail then sends 59.74 +the queued mail to the configured mailserver for that ISP. When a 59.75 +message from the local net is received when online, MasqMail delivers 59.76 +it immediately. If there is no mail server for that ISP, MasqMail can 59.77 +also send the mails directly to their destinations.</p> 59.78 + 59.79 +<p>For each ISP different return addresses can be configured. This 59.80 +makes it possible to get around spam traps which desire your return 59.81 +address to be from the same domain as the host the mail is coming 59.82 +from. This is not a problem if you always connect to a single ISP, but 59.83 +is one if you use different ones from time to time. It also makes it 59.84 +possible to configure your mailer to a return address on your local 59.85 +network which maybe totally unknown outside. So delivery failure 59.86 +messages originating on your local net can be sent directly to you, 59.87 +while those that occur outside will be sent to the configured 59.88 +address. <em>(Note that the return path is different from the From: 59.89 +address or the Reply-to: address. You can still have a single address 59.90 +where you want replys to be sent to).</em></p> 59.91 + 59.92 +<p>When offline, MasqMail behaves just like any other ordinary mail 59.93 +server (with a few limitations, but these will be fixed in the 59.94 +future).</p> 59.95 + 59.96 +<p>To detect its online status, MasqMail can take advantage of the <a 59.97 +href="http://cpwright.com/mserver/">masqdialer</a> system. But it also 59.98 +works well without it.</p> 59.99 + 59.100 +<p>See the <a href="manual.html">manual</a> for more information.</p> 59.101 + 59.102 +<a name="plat"></a> 59.103 +<h2>Platforms</h2> 59.104 + 59.105 +<p>MasqMail is being developed for Linux. It may run on other Un*x like 59.106 +platforms, but it will certainly not run on Windows or a 59.107 +Mac. Currently I see no point in porting it to other platforms.</p> 59.108 + 59.109 +<p>But it is possible to use a Windows (or Mac or any system that 59.110 +knows about SMTP) host as a client. Just configure your mailer to use 59.111 +the machine MasqMail is running on as your mail server.</p> 59.112 + 59.113 +<a name="limit"></a> 59.114 +<h2>Limitations</h2> 59.115 + 59.116 +<p>MasqMail is still in an early stage of development so use it with 59.117 +caution! There may still be serious bugs in it, so mail might 59.118 +get lost. But in the nearly two years of its existence so far there 59.119 +was only one time a bug which caused mail retrieved via pop3 to be 59.120 +lost in rare circumstances.</p> 59.121 + 59.122 +<p>There are also some features every MTA should have:</p> 59.123 + 59.124 +<ul> 59.125 + 59.126 +<li> it does not use .forward files (but it uses alias files since 0.0.10)</li> 59.127 +<li> it does not support retrieving mail from a multi-drop mailboxes</li> 59.128 + 59.129 +</ul> 59.130 + 59.131 +<p>But these are worked on.</p> 59.132 + 59.133 +<p>MasqMail is <em>not</em> designed to run on a host with a permanent 59.134 +internet connection. It does not have the ability to check for spam 59.135 +mail and it will relay everything from everywhere to everywhere. Use 59.136 +another mail server such as <a href="http://www.exim.org">exim</a> 59.137 +for permanent connections.</p> 59.138 + 59.139 +<p>BTW: I am already using it...</p> 59.140 + 59.141 +<a name="secure"></a> 59.142 +<h2>Security</h2> 59.143 + 59.144 +<p>I hope that I have not done anything stupid, but there may be 59.145 +security holes in it. If you find one, please tell me.</p> 59.146 + 59.147 +<p>MasqMail does not listen to a port to the internet (unless you 59.148 +manage to configure it to do so... which is pretty senseless anyway), 59.149 +so that door is closed.</p> 59.150 + 59.151 +<p>MasqMail is designed to run with an own user and group id. It uses 59.152 +root permission only when necessary, ie. to open a listening port and 59.153 +to change identity to some user when it delivers local mail.</p> 59.154 + 59.155 +<a name="require"></a> 59.156 +<h2>Requirements</h2> 59.157 + 59.158 +<p>MasqMail requires glib 1.2 or greater. You may find this strange 59.159 +since glib was originally written for gimp and is used by <a 59.160 +href="http://www.gtk.org">gtk</a>, but glib does not necessarily have 59.161 +to do with GUIs. It has some useful list and string functions, and I 59.162 +use only these. This may change in the future when I write my own 59.163 +utilities.</p> 59.164 + 59.165 +<p>I develop MasqMail with a Debian woody distribution, Kernel 2.4.x and 59.166 +glibc (libc6) with gcc 2.95. There have been reports that it compiles and 59.167 +runs under Redhat, SuSE, slackware, with libc5 (since 0.0.4) and Kernel 59.168 +2.0.x and 2.2.x, and FreeBSD, OpenBSD and NetBSD.</p> 59.169 + 59.170 +<a name="down"></a> 59.171 +<h2>Download</h2> 59.172 + 59.173 +<a href="download/masqmail-0.2.20.tar.gz">masqmail-0.2.20.tar.gz (http)</a> (unstable version, about 242K)<br> 59.174 +<a href="download/masqmail-0.2.20.tar.gz.asc">masqmail-0.2.20.tar.gz.asc (http)</a> 59.175 +detached <a href="http://www.gnupg.org">GnuPG</a> signature, signed with 59.176 +<a href="oku.asc">451EAB1B</a>, fingerprint <pre>CDA0 CB53 83C6 84DF 760F 6BFE 5265 5226 451E AB1B</pre> 59.177 +<a href="download/masqmail-0.2.18.tar.gz.md5sum">masqmail-0.2.20.tar.gz.md5sum (http)</a> (md5sum)<br> 59.178 +<!-- 59.179 +<br> 59.180 +<a href="http://www.sonic.net/~okurth/debian/dists/sid/main/binary-i386/masqmail_0.2.19-1_i386.deb">masqmail_0.2.19-1_i386.deb</a> Debian package for sid<br> 59.181 +<br> 59.182 +<a href="download/masqmail_0.2.18-0.sarge1_i386.deb">masqmail_0.2.18-0.sarge1_i386.deb</a> Debian package for sarge 59.183 +--> 59.184 +<br> 59.185 +<br> 59.186 +xdelta (binary patches), apply with 59.187 +<pre> 59.188 +xdelta patch file.xdelta old.tar.gz new.tar.gz 59.189 +</pre> 59.190 +<a href="download/masqmail-0.2.12-0.2.13.xdelta">masqmail-0.2.12-0.2.13.xdelta</a> (5K)<br> 59.191 +<a href="download/masqmail-0.2.13-0.2.14.xdelta">masqmail-0.2.13-0.2.14.xdelta</a> (7K)<br> 59.192 +<a href="download/masqmail-0.2.14-0.2.15.xdelta">masqmail-0.2.14-0.2.15.xdelta</a> (6K)<br> 59.193 +<a href="download/masqmail-0.2.15-0.2.16.xdelta">masqmail-0.2.15-0.2.16.xdelta</a> (5K)<br> 59.194 +<a href="download/masqmail-0.2.16-0.2.17.xdelta">masqmail-0.2.16-0.2.17.xdelta</a> (15K)<br> 59.195 +<a href="download/masqmail-0.2.17-0.2.18.xdelta">masqmail-0.2.17-0.2.18.xdelta</a> (8K)<br> 59.196 +<a href="download/masqmail-0.2.18-0.2.19.xdelta">masqmail-0.2.18-0.2.19.xdelta</a> (6K)<br> 59.197 +<a href="download/masqmail-0.2.19-0.2.20.xdelta">masqmail-0.2.19-0.2.20.xdelta</a> (6K)<br> 59.198 + 59.199 +<p>Note: the unstable version is pretty stable already.</p> 59.200 + 59.201 +<a href="download/MasqMail-0.1.17.tar.gz">MasqMail-0.1.17.tar.gz (http)</a> (stable version, about 174K)<br> 59.202 +<!-- 59.203 +<br> 59.204 +<a href="../debian/dists/woody/main/binary-i386/masqmail_0.1.17-2_i386.deb">masqmail_0.1.17-2_i386.deb</a> Debian package for woody 59.205 +--> 59.206 +<br> 59.207 + 59.208 +<p>Waldemar Brodkorb has made rpms for SuSE 7.0 and 7.1 <em>with</em> ESMTP AUTH, 59.209 +see <a href="http://packman.links2linux.de/index.php4?action=091">this page</a></p> 59.210 + 59.211 +<a href="download/ChangeLog">ChangeLog (unstable)</a><br> 59.212 +<a href="download/ChangeLog-stable">ChangeLog (stable)</a><br> 59.213 +<br> 59.214 +See <a href="download/index.html">download/</a> if your are curious for older versions. 59.215 + 59.216 +<p>masqmail is also in Debian. You will find it <a 59.217 +href="http://packages.debian.org/masqmail">here</a>.</p> 59.218 + 59.219 +<a name="docu"></a> 59.220 +<h2>Documentation</h2> 59.221 + 59.222 +<p>masqmail comes with a bunch of man pages, these are also available 59.223 +<a href="manual.html">online</a>. Some people have written introductory pages 59.224 +for the initial installation:</p> 59.225 + 59.226 +<p> 59.227 +Christoph Hertel has written a <a href="http://instruction.at/mmquickconfig">quick help</a> page for masqmail. 59.228 +</p> 59.229 + 59.230 +<a name="road"></a> 59.231 +<h2>Roadmap</h2> 59.232 + 59.233 +<p>MasqMail will be optimized for slow connections. It uses ESMTP 59.234 +pipelining both when sending and receiving and sends all messages to a 59.235 +single host in a single connection.</p> 59.236 + 59.237 +<p>Apart from the missing things mentioned above, I plan to implement 59.238 +the following features:</p> 59.239 + 59.240 +<ul> 59.241 +<li>ODMR support as a client</li> 59.242 +<li>POP3 multidrop support</li> 59.243 +</ul> 59.244 + 59.245 +<a name="list"></a> 59.246 +<h2>Mailing List</h2> 59.247 + 59.248 +<p>There is now a <a 59.249 +href="http://lists.masqmail.cx/cgi-bin/mailman/listinfo/masqmail">Mailing 59.250 +List</a> for MasqMail. To subscribe or to view the archive use the 59.251 +link.</p> 59.252 + 59.253 +<a name="bugs"></a> 59.254 +<h2>Bugs and Feedback</h2> 59.255 + 59.256 +<p>Since MasqMail is very young, bugs are quite probable. If you 59.257 +encounter one, send it to <a 59.258 +href="mailto:oku@masqmail.cx">me</a>. Please tell me the versions of: 59.259 +<ul> 59.260 +<li>MasqMail</li> 59.261 +<li>libc</li> 59.262 +<li>OS (Linux) (use uname -a)</li> 59.263 +<li>glib (use glib-config --version)</li> 59.264 +<li>the compiler (use gcc -v)</li> 59.265 +</ul> 59.266 + 59.267 +<p>If not already so, set the debug level to at least 5 and send the 59.268 +debug.log (only the important part please...).</p> 59.269 + 59.270 +<p>To improve MasqMail, bug reports are really needed! The more bug 59.271 +reports I get the more stable it will get.</p> 59.272 + 59.273 +<p>Suggestions are always welcome. If there is a feature that you 59.274 +would like to have in MasqMail, contact me, and I will think about 59.275 +it. You are also welcome to send patches, but at this stage of 59.276 +development there will be no CVS access.</p> 59.277 + 59.278 +<p>If you are using it and are happy with, you can also write that to 59.279 +me. To make <em>me</em> happy.</p> 59.280 + 59.281 +<p>If you are not happy with it, you can keep that for 59.282 +yourself. Before you send some flame, please read these pages very 59.283 +carefully again.</p> 59.284 + 59.285 +</ul> 59.286 + </td></tr> 59.287 + 59.288 + <tr><td> 59.289 + <p> 59.290 + <hr> 59.291 + <address>Oliver Kurth <oku at masqmail dot cx></address> 59.292 + </p> 59.293 + 59.294 + </table> 59.295 + </center> 59.296 + 59.297 + </BODY> 59.298 +</HEAD>
60.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 60.2 +++ b/docs/masqmail.cx/install.html Thu Sep 18 18:57:02 2008 +0200 60.3 @@ -0,0 +1,219 @@ 60.4 + 60.5 + 60.6 + 60.7 + 60.8 + 60.9 + 60.10 + 60.11 + 60.12 +<HTML> 60.13 +<HEAD> 60.14 +<TITLE>MasqMail - Manual 60.15 +</TITLE> 60.16 +</HEAD> 60.17 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 60.18 + 60.19 + <center> 60.20 + <table width="80%"> 60.21 + <tr><td> 60.22 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 60.23 +<tr> 60.24 + <td> 60.25 + <a href="manual.html"> 60.26 + <img width="20" src = "../images/u_arrow.gif" alt = "manual"> 60.27 + </a> 60.28 + </td> 60.29 +<td align=center width="100%"><font size="6" color = "#ffffff">Installation</font></td> 60.30 +<td> 60.31 + <a href="options.html"> 60.32 + <img width="20" src = "../images/r_arrow.gif" alt = "Options"> 60.33 + </a> 60.34 +</td> 60.35 +</tr> 60.36 +</table> 60.37 + 60.38 + 60.39 +<p>You need a user and a group for masqmail to run, I suggest user 60.40 +'mail' and group 'trusted'. Say:</p> 60.41 + 60.42 +<pre> 60.43 +groupadd -g 42 trusted 60.44 +useradd -u 42 -g 42 -d / -s /bin/sh -c "Mail Transfer Agent" mail 60.45 +</pre> 60.46 + 60.47 +<p>If you use other names than <i>mail</i> and <i>trusted</i> use the options 60.48 +described below for configure. The 42 is just a suggestion, you can 60.49 +use any number you like, but preferably one < 100. It does not have 60.50 +to be the same for the user 'mail' and the group 'trusted'.</p> 60.51 + 60.52 +<p>Compliling is a matter of the usual procedure:</p> 60.53 + 60.54 +In the source directory, after unpacking do:<br> 60.55 + 60.56 +<pre> 60.57 +./configure 60.58 +make 60.59 +make install 60.60 +</pre> 60.61 + 60.62 +<p>Optionally, after you have called make, you can make some tests in 60.63 +the tests directory. Read the README in that directory for 60.64 +instructions.</p> 60.65 + 60.66 +<h4>Additional options for configure:</h4> 60.67 + 60.68 +<p> 60.69 +<b>--with-user=USER</b> sets the user as which MasqMail will run. Default is 60.70 +<i>mail</i>. USER has to exist before you 'make install'. 60.71 +</p><p> 60.72 +<b>--with-group=GROUP</b> sets the group as which MasqMail will run. Default 60.73 +is <i>trusted</i>. GROUP has to exist before you 'make install'. 60.74 +</p><p> 60.75 +<b>--with-logdir=LOGDIR</b> sets the directory where MasqMail stores its log 60.76 +files. It will be created if it does not exist. Default is /var/masqmail/. 60.77 +</p><p> 60.78 +<b>--with-spooldir=SPOOLDIR</b> sets the directory where MasqMail stores its 60.79 +spool files. It will be created if it does not exist. Default is 60.80 +/var/spool/masqmail/. 60.81 +</p><p> 60.82 +<b>--enable-auth</b> enables ESMTP AUTH support (disabled by default) 60.83 +</p><p> 60.84 +<b>--disable-pop3</b> disables pop3 support (enabled by default) 60.85 +</p> 60.86 + 60.87 +<h4>After make install</h4> 60.88 + 60.89 +<p> 60.90 +You can also use these instructions to omit 'make install' if you do 60.91 +not want to use it. 60.92 +</p><p> 60.93 +Check that 'make install' worked correctly. The following command: 60.94 +</p><p><pre> 60.95 +ls -ld /usr/sbin/masqmail /var/masqmail/ /var/spool/masqmail /var/spool/masqmail/input 60.96 +</pre></p><p> 60.97 +should give output similar to 60.98 +</p><p> 60.99 +<pre> 60.100 +-rwsr-xr-x 1 root root 86955 Oct 14 14:27 /usr/sbin/masqmail 60.101 +drwxr-xr-x 2 mail trusted 1024 Oct 14 14:29 /var/masqmail/ 60.102 +drwxr-xr-x 3 mail trusted 1024 Oct 14 14:27 /var/spool/masqmail 60.103 +drwxr-xr-x 2 mail trusted 1024 Oct 14 18:32 /var/spool/masqmail/input 60.104 +drwxr-xr-x 2 mail trusted 1024 Oct 14 18:32 /var/spool/masqmail/popuidl 60.105 +</pre> 60.106 +</p> 60.107 +<p> 60.108 +(important is the set-user-id bit for /usr/sbin/masqmail and the 60.109 +ownership of all items). 60.110 +</p> 60.111 + 60.112 +<p>Edit the configuration files. You can use the files from the 60.113 +examples directory as a template. Copy masqmail.conf to 60.114 +/etc/maqmail.conf, the others to the location given in 60.115 +masqmail.conf.</p> 60.116 + 60.117 +<p>If you already have an MTA (eg. sendmail) installed, move that to 60.118 +another location:</p> 60.119 + 60.120 +mv /usr/sbin/sendmail /usr/sbin/sendmail.orig<br> 60.121 + 60.122 +<p>Then make a link to the new MTA:</p> 60.123 + 60.124 +<pre> 60.125 +ln -s /usr/sbin/masqmail /usr/sbin/sendmail 60.126 +</pre> 60.127 + 60.128 +<p>Now every mailer that used to call sendmail will now call 60.129 +masqmail. You can now kill your old sendmail if it is running and 60.130 +start masqmail. Usually this is done with the startup scripts. For 60.131 +SuSE this would be (as root):</p> 60.132 + 60.133 +<pre> 60.134 +/sbin/init.d/sendmail stop 60.135 +/sbin/init.d/sendmail start 60.136 +</pre> 60.137 + 60.138 +<p>or shorter:</p> 60.139 + 60.140 +<pre> 60.141 +/sbin/init.d/sendmail restart<br> 60.142 +</pre> 60.143 + 60.144 +<p>You can also start it with:</p> 60.145 + 60.146 +<pre> 60.147 +/usr/sbin/sendmail -bd -q30m<br> 60.148 +</pre> 60.149 + 60.150 +<p>You can also let it be called from inetd (with the -bs option), but 60.151 +this is untested.</p> 60.152 + 60.153 +<h4>Configuring for online delivery</h4> 60.154 + 60.155 +<p>Now you have to set up the online configuration. The trick is to 60.156 +tell your ip-up script the connection name. You could use the IP 60.157 +number of the far side of the ppp link, but this is a pain and may 60.158 +change each time. But you can give it an additional argument via pppd 60.159 +with ipparam. Somewhere in your dial up script you have a line similar 60.160 +to:</p> 60.161 + 60.162 +<pre> 60.163 +/usr/sbin/pppd /dev/ttyS1 connect "/usr/sbin/chat -t 90 -f 60.164 +${CHATFILE}" -d -d -d user user@somewhere file ${OPTIONS} 60.165 +</pre> 60.166 + 60.167 +<p>Just add 'ipparam FastNet' in the command line for pppd if your ISP 60.168 +has the name FastNet. The ip-up script will then get 'FastNet' as a 60.169 +sixth parameter. In your ip-up script you can then call masqmail with</p> 60.170 + 60.171 +<pre> 60.172 +/usr/sbin/masqmail -qo $6 60.173 +</pre> 60.174 + 60.175 +<p>instead of 'sendmail -q', if you had that in the script 60.176 +before. Masqmail will then read the route configuration specified for 60.177 +the connection name 'FastNet' and deliver the mail destined to the 60.178 +internet. See the <a href="config.html">configuration manual</a> on how 60.179 +to write a route configuration or use one of the examples as a 60.180 +template. <em>I do not know how do configure that for an ISDN adapter, 60.181 +but I am sure you will find something similar in the man 60.182 +pages.</em></p> 60.183 + 60.184 +<p>If you want mail that is received by masqmail from your local 60.185 +net to be delivered immediately using the route configuration, you 60.186 +have two possibilities:<p> 60.187 + 60.188 +<p> 60.189 +<ul> 60.190 + 60.191 +<li>if you are using the masqdialer system, you just have to set the 60.192 +variables <b>online_detect</b> to <i>mserver</i> and 60.193 +<b>mserver_iface</b> to the interface mserver is listening to.</li> 60.194 + 60.195 +<li>otherwise you have to add two commands in your ip-up script:<br> 60.196 +echo -n $6 > /tmp/connect_route<br> chmod 644 /tmp/connect_route<br> 60.197 +and you have to remove the file <i>/tmp/connect_route</i> in your 60.198 +ip-down script:<br> rm /tmp/connect_route.<br> Then you have to set 60.199 +<b>online_detect</b> to <i>file</i> and <b>online_file</b> to 60.200 +<i>/tmp/connect_route</i>. </li> 60.201 + 60.202 +</ul> 60.203 +</p> 60.204 + 60.205 +<p>See the route documentation for more.</p> 60.206 + </td></tr> 60.207 + 60.208 + <tr><td> 60.209 + <p> 60.210 + <hr> 60.211 + <address><a href = "mailto:kurth@innominate.de">Oliver Kurth</a></address> 60.212 + Last modified: Tue May 30 15:19:56 CEST 2000 60.213 + <br> 60.214 + This page was created using <a href="http://www.freddyfrog.com/hacks/genpage/">Genpage</a> - Version: 1.0.6 60.215 + </p> 60.216 + 60.217 + </table> 60.218 + </center> 60.219 + 60.220 + </BODY> 60.221 +</HEAD> 60.222 +
61.1 Binary file docs/masqmail.cx/logo_masqmail.jpg has changed
62.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 62.2 +++ b/docs/masqmail.cx/manual.html Thu Sep 18 18:57:02 2008 +0200 62.3 @@ -0,0 +1,45 @@ 62.4 +<HTML> 62.5 + <HEAD> 62.6 + <TITLE>MasqMail - Manual 62.7 + </TITLE> 62.8 + </HEAD> 62.9 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 62.10 + 62.11 + <center> 62.12 + <table width="80%"> 62.13 + <tr><td> 62.14 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 62.15 + <tr> 62.16 + <td> 62.17 + <a href="index.html"> 62.18 + <img width="20" src = "../images/u_arrow.gif" alt = "index"> 62.19 + </a> 62.20 + </td> 62.21 + <td align=center width="100%"><font size="6" color = "#ffffff">Manual</font></td> 62.22 + </tr> 62.23 + </table> 62.24 + 62.25 + 62.26 + <a href = "install.html">Installation</a><br> 62.27 + <a href = "faq.html">Frequently Asked Questions</a><br> 62.28 + <br> 62.29 + <a href = "docs/masqmail.8.html">Command line options</a><br> 62.30 + <a href = "docs/masqmail.conf.5.html">Configuration</a><br> 62.31 + <a href = "docs/masqmail.route.5.html">Routes</a><br> 62.32 + <a href = "docs/masqmail.aliases.5.html">Alias File Format</a><br> 62.33 + <a href = "docs/masqmail.get.5.html">Mail Get Configuration</a><br> 62.34 + </td></tr> 62.35 + 62.36 + <tr><td> 62.37 + <p> 62.38 + <hr> 62.39 + <address><a href = "mailto:oku@masqmail.cx">Oliver Kurth</a></address> 62.40 + Last modified: Fri, 28 Jul 2000 09:13:20 +0200 62.41 + </p> 62.42 + 62.43 + </table> 62.44 + </center> 62.45 + 62.46 + </BODY> 62.47 +</HEAD> 62.48 +
63.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 63.2 +++ b/docs/masqmail.cx/oku.asc Thu Sep 18 18:57:02 2008 +0200 63.3 @@ -0,0 +1,25 @@ 63.4 +-----BEGIN PGP PUBLIC KEY BLOCK----- 63.5 +Version: GnuPG v1.0.6 (GNU/Linux) 63.6 +Comment: For info see http://www.gnupg.org 63.7 + 63.8 +mQGiBDvpQs8RBACy8OxPho1UiXesGRI1r2tnyan9naHi4zrL9faAl7dY7U62gQJV 63.9 +qePMKsZmDUD8A1eSuLL5ZUkwIAm0fq73K/JRt3rmUW7MtZlJGVYvmVJmJCyK/OIs 63.10 +Fblx7m838lEfDFcelERk9lO3lPprf6iYMaRI9e3etlGGN7TcvAUvmsQ5BwCg4P5+ 63.11 +cnbtFqxvw4zj0sXv9WXwJvcD/A2SMS1Wqu7Ly6KfmA3Beg3o/hMzLZAYGRjWFwr3 63.12 +yAban8cLGLh5N0ErEOy5XIIpgMkfATqikGdc02MZexdTONnR2et9SWfppVRCejbF 63.13 +Gn7UaVX80kBw6wHd8GrzXLjoR9aavcd5LhioW6rVUMBRlhzroCaoCUzIiZqDOJTr 63.14 +GuOfA/9uhhfT5LMPxG+jwehriZm8NW85V1SkWyfx9FVnQ7fIyP2Z5VRMrqdLz2jj 63.15 +1xrvBxC4izhDXGBnwJEHJFUtclXBJvckl2mm95Zempdj642DujXTmiO2EOTPdtet 63.16 +5mtHLH7zhXrUxij3ox8kOJ5pzNaosYmCp73zYF15ehSIZZ7g5rQeT2xpdmVyIEt1 63.17 +cnRoIDxva3VAbWFzcW1haWwuY3g+iFcEExECABcFAjvpQs8FCwcKAwQDFQMCAxYC 63.18 +AQIXgAAKCRBSZVImRR6rG4htAJ9dMt8SJ6eQrUun16zKuNWCi3vTowCdGGApkc2I 63.19 +U4QwMzi14azmFMHJ9ba5AQ0EO+lC1xAEAPYsXzeD7pSxSWW4K5GITvZSy/T4MgoP 63.20 +Rq6I1JrXBQpcQxiOHXBDb6v+O4yPRE/N74HbM1fG5QbQNjJ/XKBwSEGuRAeO5eTt 63.21 +o7OdP9ztkJmTgxDyA5UW2ztZ5PRaRADuKnXPmNzDqdOyzTgcNfY+6uCADfvjmW5m 63.22 +kft6nY7873WrAAMGA/9fJaNDeWq4k8VeuQM8rNppKYPRhKCpjEhnH1qZpPe1ga7P 63.23 +fr+GqosLSqhcGhZ+Ik2C6rIiD6cuB2dcoCxjkZSFcJniwwe8dvH8IM9BLqJeU403 63.24 +vHdJ3vUfd45Y0/2QJQDe6zRhrO4Nk0W+F9oNTBgj1IGP5dEKZz20JfEZ+6VUUIhG 63.25 +BBgRAgAGBQI76ULXAAoJEFJlUiZFHqsbuS4AnisezPac1oiaAVBXQYPX5ZpTZgzI 63.26 +AKCnahBqBKKFTClH0iZST6jnyKwXEw== 63.27 +=LPEr 63.28 +-----END PGP PUBLIC KEY BLOCK-----
64.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 64.2 +++ b/docs/masqmail.cx/options.html Thu Sep 18 18:57:02 2008 +0200 64.3 @@ -0,0 +1,181 @@ 64.4 + 64.5 + 64.6 + 64.7 + 64.8 + 64.9 + 64.10 + 64.11 + 64.12 +<HTML> 64.13 +<HEAD> 64.14 +<TITLE>MasqMail - Manual 64.15 +</TITLE> 64.16 +</HEAD> 64.17 + <BODY TEXT="#000000" LINK="#0000ff" BGCOLOR="#ffffff"> 64.18 + 64.19 + <center> 64.20 + <table width="80%"> 64.21 + <tr><td> 64.22 + <table width="100%" bgcolor="#0000aa" cellspacing=0 cellpadding=0> 64.23 +<tr> 64.24 + <td> 64.25 + <a href="manual.html"> 64.26 + <img width="20" src = "../images/u_arrow.gif" alt = "manual"> 64.27 + </a> 64.28 + </td> 64.29 +<td align=center width="100%"><font size="6" color = "#ffffff">Options</font></td> 64.30 +<td> 64.31 + <a href="install.html"> 64.32 + <img width="20" src = "../images/l_arrow.gif" alt = "Installation"> 64.33 + </a> 64.34 +</td> 64.35 +<td> 64.36 + <a href="alias.html"> 64.37 + <img width="20" src = "../images/r_arrow.gif" alt = "Alias Format"> 64.38 + </a> 64.39 +</td> 64.40 +</tr> 64.41 +</table> 64.42 + 64.43 + 64.44 +<p>Since masqmail is intended to replace sendmail, it uses the same 64.45 +command line options, but not all are implemented. There are also two 64.46 +additional options, which are unique to masqmail (-qo 64.47 +<connection> and -g) </p> 64.48 + 64.49 +<b>-- </b>option:<br> 64.50 + 64.51 +<p>Not a 'real' option, it means that all following arguments are to 64.52 +be understood as arguments and not as options even if they begin with a 64.53 +leading dash '-'. Mutt is known to call sendmail with this option.</p> 64.54 + 64.55 +<b>-bd </b>option (daemon):<br> 64.56 + 64.57 +<p>Run as daemon, accepting connections, usually on port 25 if not 64.58 +configured differently. This is usually used in the startup script and 64.59 +together with the -q option (see below).</p> 64.60 + 64.61 +<b>-bi </b>option:<br> 64.62 + 64.63 +<p>Old sendmail rebuilds its alias database when invoked with this 64.64 +option. Masqmail ignores it. Masqmail reads directly from the file 64.65 +given with <b>alias_file</b> in the config file.</p> 64.66 + 64.67 +<b>-bp </b>option:<br> 64.68 + 64.69 +<p>Show the messages in the queue. Same as calling masqmail as 64.70 +'mailq'.</p> 64.71 + 64.72 +<b>-bs </b>option:<br> 64.73 + 64.74 +<p>Accept SMTP commands from stdin. Some mailers (eg pine) use this 64.75 +option as an interface. It can also be used to call masqmail from 64.76 +inetd, according to Tomislav Filipcic this works.</p> 64.77 + 64.78 +<b>-B<arg></b>option:<br> 64.79 + 64.80 +<p>arg is usually 8BITMIME. Some mailers use this to indicate that the 64.81 +message contains characters > 127. Masqmail is 8-bit clean and 64.82 +ignores this, so you do not have to recompile elm, which is very 64.83 +painful ;-). Note though that this violates some conventions: masqmail 64.84 +<em>does not</em> convert 8 bit messages to any MIME format if it 64.85 +encounters a mail server which does not advertise its 8BITMIME capability, 64.86 +masqmail does not advertise this itself. This is the same practice as 64.87 +that of exim (but different to sendmail).</p> 64.88 + 64.89 +<p>This <em>may</em> change in the future, but do not rely on it.</p> 64.90 + 64.91 +<b>-C<filename></b>option:<br> 64.92 + 64.93 +<p>Use another configuration than /etc/masqmail.conf. Useful for 64.94 +debugging purposes.</p> 64.95 + 64.96 +<b>-d <number> </b>option:<br> 64.97 + 64.98 +<p>Set the debug level. This takes precedence before the value of 64.99 +<b>debug_level</b> in the configuration file. Read the warning in the 64.100 +description of the latter.</p> 64.101 + 64.102 +<b>-g </b>option:<br> 64.103 + 64.104 +<p>Get mail, using the configurations given with 64.105 +<b>get.<name></b> in the main configuration.</p> 64.106 + 64.107 +<b>-i </b>option:<br> 64.108 + 64.109 +<p>Same as <b>-oi</b>, see below.</p> 64.110 + 64.111 +<b>-oem </b>option:<br> 64.112 + 64.113 +<p>If the <b>-oi</b> ist not also given, always return with a non zero 64.114 +return code. Maybe someone tells me what this is good for... </p> 64.115 + 64.116 +<b>-odb </b>option:<br> 64.117 + 64.118 +<p>Deliver in background. Masqmail always does this.</p> 64.119 + 64.120 +<b>-odq </b>option:<br> 64.121 + 64.122 +<p>Do not attempt to deliver immediately. Any messages will be queued 64.123 +until the next queue running process picks them up and delivers 64.124 +them. You get the same effect by setting the <i>do_queue</i> option in 64.125 +/etc/masqmail.conf.</p> 64.126 + 64.127 +<b>-oi </b>option:<br> 64.128 + 64.129 +<p>A dot as a single character in a line does <em>not</em> terminate 64.130 +the message.</p> 64.131 + 64.132 +<b>-q </b>option:<br> 64.133 + 64.134 +<p>If not given with an argument, run a queue process, ie. try to 64.135 +deliver all messages in the queue. Masqmail sends only to those 64.136 +addresses that are on the <em>local</em> net, not to those that are 64.137 +outside. Use -qo <connection> for those.</p> 64.138 + 64.139 +<p>If you have configured inetd to start masqmail, you can use this 64.140 +option in a cron job which starts in regular time intervals, to mimic 64.141 +the same effect as starting masqmail with -bd -q30m.</p> 64.142 + 64.143 +<p>An argument may be a time interval ie. a numerical value followed 64.144 +by one of the letters. s,m,h,d,w which are interpreted as seconds, 64.145 +minutes, hours, days or weeks respectively. Example: -q30m. Masqmail 64.146 +starts as a daemon and a queue runner process will be started 64.147 +automatically once in this time interval. This is usually used 64.148 +together with -bd (see above).</p> 64.149 + 64.150 +<b>-qo<name> </b>option:<br> 64.151 + 64.152 +<p>Can be followed by a connection name. Use this option in your 64.153 +script which starts as soon as a link to the internet has been set up 64.154 +(usually ip-up). When masqmail is called with this option, the 64.155 +specified route configuration is read and the queued mail with 64.156 +destinations on the internet will be sent. The <b>name</b> is defined 64.157 +in the configuration (see <b>connect_route.<name></b>).</p> 64.158 + 64.159 +<p>If called without <name>, the online status is determined with 64.160 +the configured method (see <b>online_detect</b> in <a 64.161 +href="config.html">config.html</a>)</p> 64.162 + 64.163 +<b>-t </b>option:<br> 64.164 + 64.165 +<p>Read recipients from headers. Delete 'Bcc:' headers. If any 64.166 +arguments are given, these are interpreted as recipient addresses and 64.167 +the message will <em>not</em> be sent to these.</p> 64.168 + </td></tr> 64.169 + 64.170 + <tr><td> 64.171 + <p> 64.172 + <hr> 64.173 + <address><a href = "mailto:kurth@innominate.de">Oliver Kurth</a></address> 64.174 + Last modified: Tue May 30 15:19:56 CEST 2000 64.175 + <br> 64.176 + This page was created using <a href="http://www.freddyfrog.com/hacks/genpage/">Genpage</a> - Version: 1.0.6 64.177 + </p> 64.178 + 64.179 + </table> 64.180 + </center> 64.181 + 64.182 + </BODY> 64.183 +</HEAD> 64.184 +