CVS: tmda/htdocs bugs.ht, 1.9, 1.10 bugs.html, 1.46, 1.47 config-vars.html, 1.77, 1.78 download.ht, 1.29, 1.30 download.html, 1.65, 1.66 requirements.ht, 1.26, 1.27 requirements.html, 1.64, 1.65 trouble.ht, 1.11, 1.12 trouble.html, 1.40, 1.41
"Jason R. Mastaler" <[email protected]>
| Newsgroups | gmane.mail.spam.tmda.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/tmda/tmda/htdocs In directory sc8-pr-cvs1:/tmp/cvs-serv1692 Modified Files: bugs.ht bugs.html config-vars.html download.ht download.html requirements.ht requirements.html trouble.ht trouble.html Log Message: Reverse some earlier changes, to reflect the development nature of the main trunk. Index: bugs.ht =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/bugs.ht,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- bugs.ht 19 Dec 2003 20:34:58 -0000 1.9 +++ bugs.ht 20 Dec 2003 03:09:41 -0000 1.10 @@ -5,9 +5,9 @@ things easier on the developers, please adhere to the following guidelines. <br><br> -Bug reports and patch submissions for TMDA 1.0.x should be sent to the -<a href="http://tmda.net/lists/listinfo/tmda-users" -TARGET="Resource Window">tmda-users</a> mailing list. +Bug reports and patch submissions should be sent to the +<a href="http://tmda.net/lists/listinfo/tmda-workers" +TARGET="Resource Window">tmda-workers</a> mailing list. You <strong>do not</strong> need to be subscribed to post a message there. <h4>Reporting Bugs:</h4> @@ -27,7 +27,12 @@ <ul> <li>Please make sure your patch works with the earliest supported -version of Python, which is Python 2.1.x. +version of Python. See the <a href="requirements.html">requirements</a> +page for what we currently support. For example, if TMDA supports +Python 2.3 and above, you should test your changes with Python 2.3, +even if you normally use a more recent version of Python. If you plan +to contribute code on a frequent basis, you should get into the habit of using +the earliest supported Python for all of your TMDA development. <br><br> <li>As far as preferred coding style, I try to follow the general @@ -48,9 +53,45 @@ When making patches with <strong>diff</strong>, please use the <b>-u</b> option, or if your diff doesn't support it, <b>-c</b>. Also, it is helpful if you create the patch from the top level of the TMDA source -directory. +directory: +<br><br> +<li> +Diffs should be made against the current development source from CVS rather +than the particular TMDA release you happen to be using. +<br> </ul> +Here is an example illustrating some of the above concepts: + +<ol> + +<li>Checkout the latest developement sources from TMDA's CVS repository. +This will create a `tmda' subdirectory in your current working directory +containing the source: + +<blockquote><pre> +% cd /usr/local/src +% cvs -d:pserver:[email protected]:/cvsroot/tmda login +[press return at the password prompt] + +% cvs -z3 -d:pserver:[email protected]:/cvsroot/tmda co tmda +</blockquote></pre> + +<li>Make the necessary changes: + +<blockquote><pre> +% cd /usr/local/src/tmda +(hack, hack, hack....) +</blockquote></pre> + +<li>Create your patch called "tmda.diff": + +<blockquote><pre> +% cd /usr/local/src/tmda +% cvs diff -u > tmda.diff +</blockquote></pre> + +</ol> If you wish, accompany your patch with an update to the apropriate ChangeLog file. If you use Emacs, you can use the <em>M-x Index: bugs.html =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/bugs.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- bugs.html 19 Dec 2003 20:35:00 -0000 1.46 +++ bugs.html 20 Dec 2003 03:09:42 -0000 1.47 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Fri Dec 19 13:30:59 2003 --> +<!-- Fri Dec 19 19:48:21 2003 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -208,9 +208,9 @@ things easier on the developers, please adhere to the following guidelines. <br><br> -Bug reports and patch submissions for TMDA 1.0.x should be sent to the -<a href="http://tmda.net/lists/listinfo/tmda-users" -TARGET="Resource Window">tmda-users</a> mailing list. +Bug reports and patch submissions should be sent to the +<a href="http://tmda.net/lists/listinfo/tmda-workers" +TARGET="Resource Window">tmda-workers</a> mailing list. You <strong>do not</strong> need to be subscribed to post a message there. <h4>Reporting Bugs:</h4> @@ -230,7 +230,12 @@ <ul> <li>Please make sure your patch works with the earliest supported -version of Python, which is Python 2.1.x. +version of Python. See the <a href="requirements.html">requirements</a> +page for what we currently support. For example, if TMDA supports +Python 2.3 and above, you should test your changes with Python 2.3, +even if you normally use a more recent version of Python. If you plan +to contribute code on a frequent basis, you should get into the habit of using +the earliest supported Python for all of your TMDA development. <br><br> <li>As far as preferred coding style, I try to follow the general @@ -251,9 +256,45 @@ When making patches with <strong>diff</strong>, please use the <b>-u</b> option, or if your diff doesn't support it, <b>-c</b>. Also, it is helpful if you create the patch from the top level of the TMDA source -directory. +directory: +<br><br> +<li> +Diffs should be made against the current development source from CVS rather +than the particular TMDA release you happen to be using. +<br> </ul> +Here is an example illustrating some of the above concepts: + +<ol> + +<li>Checkout the latest developement sources from TMDA's CVS repository. +This will create a `tmda' subdirectory in your current working directory +containing the source: + +<blockquote><pre> +% cd /usr/local/src +% cvs -d:pserver:[email protected]:/cvsroot/tmda login +[press return at the password prompt] + +% cvs -z3 -d:pserver:[email protected]:/cvsroot/tmda co tmda +</blockquote></pre> + +<li>Make the necessary changes: + +<blockquote><pre> +% cd /usr/local/src/tmda +(hack, hack, hack....) +</blockquote></pre> + +<li>Create your patch called "tmda.diff": + +<blockquote><pre> +% cd /usr/local/src/tmda +% cvs diff -u > tmda.diff +</blockquote></pre> + +</ol> If you wish, accompany your patch with an update to the apropriate ChangeLog file. If you use Emacs, you can use the <em>M-x Index: config-vars.html =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/config-vars.html,v retrieving revision 1.77 retrieving revision 1.78 diff -u -r1.77 -r1.78 --- config-vars.html 19 Dec 2003 20:13:15 -0000 1.77 +++ config-vars.html 20 Dec 2003 03:09:42 -0000 1.78 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Fri Dec 19 13:05:00 2003 --> +<!-- Fri Dec 19 19:46:24 2003 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: Index: download.ht =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/download.ht,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- download.ht 19 Dec 2003 20:39:56 -0000 1.29 +++ download.ht 20 Dec 2003 03:09:42 -0000 1.30 @@ -5,49 +5,78 @@ Please make sure you've read the <a href="requirements.html">Requirements</a> page first! <br><br> -<u>Latest Release:</u><br> -Download the <a href="releases/" TARGET="Resource Window"> -latest release</a> as a gzipped tarball. -<br><br> - -<u>Packages:</u><br> -(<strong>NOTE:</strong> Packages maintained by extraneous parties may not be caught up -with the latest release)<br> -<ul> -<li>Linux RPM: See the <a href="install.html">installation</a> page for how to -easily build an RPM directly from the source tarball.<br><br> - -<li><a href="http://packages.debian.org/tmda" TARGET="Resource Window"> -Debian Linux Package</a> <strong>NOTE:</strong> Please use the most -recent TMDA package available; the <i>unstable</i> package should -install and work fine under <i>testing</i> and <i>stable</i>. -<br><br> - -<li>TMDA is part of <a href="http://www.mandrakelinux.com/" -TARGET="Resource Window">Mandrake Linux</a> Contribs<br><br> +<!-- <u>Latest Release:</u><br> --> +<!-- Download the <a href="releases/" TARGET="Resource Window"> --> +<!-- latest release</a> as a gzipped tarball. --> +<!-- <br><br> --> + +<!-- <u>Packages:</u><br> --> +<!-- (<strong>NOTE:</strong> Packages maintained by extraneous parties may not be caught up --> +<!-- with the latest release)<br> --> +<!-- <ul> --> +<!-- <li>Linux RPM: See the <a href="install.html">installation</a> page for how to --> +<!-- easily build an RPM directly from the source tarball.<br><br> --> + +<!-- <li><a href="http://packages.debian.org/tmda" TARGET="Resource Window"> --> +<!-- Debian Linux Package</a> <strong>NOTE:</strong> Please use the most --> +<!-- recent TMDA package available; the <i>unstable</i> package should --> +<!-- install and work fine under <i>testing</i> and <i>stable</i>. --> +<!-- <br><br> --> + +<!-- <li>TMDA is part of <a href="http://www.mandrakelinux.com/" --> +<!-- TARGET="Resource Window">Mandrake Linux</a> Contribs<br><br> --> + +<!-- <li><a href="http://www.gentoo.org/dyn/pkgs/net-mail/tmda.xml" --> +<!-- TARGET="Resource Window">Gentoo Linux Package</a><br><br> --> + +<!-- <li>*BSD ports/packages:<br><br> --> +<!-- <ul> --> + +<!-- <li>FreeBSD --> +<!-- <a href="http://www.freshports.org/mail/tmda/" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <li>NetBSD --> +<!-- <a href="ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/mail/tmda/README.html" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <li>OpenBSD --> +<!-- <a href="http://www.OpenBSD.org/cgi-bin/cvsweb/ports/mail/tmda/" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <br> --> + +<!-- </ul> --> +<!-- </ul> --> + +<!-- <u>Old Releases:</u><br> --> +<!-- <a href="releases/old/" TARGET="Resource Window"> --> +<!-- Past releases</a> are available for download as well.<br><br> --> + +<u>Development Sources:</u><br><br> + +The development branch of TMDA is currently available only through CVS, +and nightly snapshot tarballs made from CVS. If you are using development +code you should probably also be reading the +<a href="http://tmda.net/lists/listinfo/tmda-workers" TARGET="Resource Window">tmda-workers</a> +and +<a href="http://tmda.net/lists/listinfo/tmda-cvs" TARGET="Resource Window">tmda-cvs</a> lists +to stay abreast of changes. +Please note that what you're getting is probably not even a bleeding-edge TMDA, +but a severly hemorrhaging one. -<li><a href="http://www.gentoo.org/dyn/pkgs/net-mail/tmda.xml" -TARGET="Resource Window">Gentoo Linux Package</a><br><br> - -<li>*BSD ports/packages:<br><br> <ul> +<li><a href="http://sourceforge.net/cvs/?group_id=24680" TARGET="Resource Window">CVS Access:</a><br> +The TMDA development sources can be accessed via anonymous (pserver) +CVS through module <b>tmda</b>.<br><br> + +<li><a href="snapshots/" TARGET="Resource Window"> +Nightly Snapshots:</a><br> Snapshots of the current development sources are checked out from CVS +and tarballed each morning at 05:00 UTC. -<li>FreeBSD -<a href="http://www.freshports.org/mail/tmda/" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -<li>NetBSD -<a href="ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/mail/tmda/README.html" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -<li>OpenBSD -<a href="http://www.OpenBSD.org/cgi-bin/cvsweb/ports/mail/tmda/" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -</ul> </ul> <u>rsync access:</u><br> @@ -56,6 +85,6 @@ <li>The TMDA web site is available via anonymous rsync at <em>rsync://tmda.net/tmdaweb/</em><br> This includes all the HTML pages as well as the <em>releases/</em> -directory. +and <em>snapshots/</em> directories. <br><br> </ul> Index: download.html =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/download.html,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- download.html 19 Dec 2003 20:39:56 -0000 1.65 +++ download.html 20 Dec 2003 03:09:42 -0000 1.66 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Fri Dec 19 13:39:13 2003 --> +<!-- Fri Dec 19 19:57:51 2003 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -208,49 +208,78 @@ Please make sure you've read the <a href="requirements.html">Requirements</a> page first! <br><br> -<u>Latest Release:</u><br> -Download the <a href="releases/" TARGET="Resource Window"> -latest release</a> as a gzipped tarball. -<br><br> +<!-- <u>Latest Release:</u><br> --> +<!-- Download the <a href="releases/" TARGET="Resource Window"> --> +<!-- latest release</a> as a gzipped tarball. --> +<!-- <br><br> --> + +<!-- <u>Packages:</u><br> --> +<!-- (<strong>NOTE:</strong> Packages maintained by extraneous parties may not be caught up --> +<!-- with the latest release)<br> --> +<!-- <ul> --> +<!-- <li>Linux RPM: See the <a href="install.html">installation</a> page for how to --> +<!-- easily build an RPM directly from the source tarball.<br><br> --> + +<!-- <li><a href="http://packages.debian.org/tmda" TARGET="Resource Window"> --> +<!-- Debian Linux Package</a> <strong>NOTE:</strong> Please use the most --> +<!-- recent TMDA package available; the <i>unstable</i> package should --> +<!-- install and work fine under <i>testing</i> and <i>stable</i>. --> +<!-- <br><br> --> + +<!-- <li>TMDA is part of <a href="http://www.mandrakelinux.com/" --> +<!-- TARGET="Resource Window">Mandrake Linux</a> Contribs<br><br> --> + +<!-- <li><a href="http://www.gentoo.org/dyn/pkgs/net-mail/tmda.xml" --> +<!-- TARGET="Resource Window">Gentoo Linux Package</a><br><br> --> + +<!-- <li>*BSD ports/packages:<br><br> --> +<!-- <ul> --> + +<!-- <li>FreeBSD --> +<!-- <a href="http://www.freshports.org/mail/tmda/" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <li>NetBSD --> +<!-- <a href="ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/mail/tmda/README.html" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <li>OpenBSD --> +<!-- <a href="http://www.OpenBSD.org/cgi-bin/cvsweb/ports/mail/tmda/" --> +<!-- TARGET="Resource Window">(mail/tmda)</a> --> +<!-- <br> --> + +<!-- <br> --> + +<!-- </ul> --> +<!-- </ul> --> + +<!-- <u>Old Releases:</u><br> --> +<!-- <a href="releases/old/" TARGET="Resource Window"> --> +<!-- Past releases</a> are available for download as well.<br><br> --> + +<u>Development Sources:</u><br><br> + +The development branch of TMDA is currently available only through CVS, +and nightly snapshot tarballs made from CVS. If you are using development +code you should probably also be reading the +<a href="http://tmda.net/lists/listinfo/tmda-workers" TARGET="Resource Window">tmda-workers</a> +and +<a href="http://tmda.net/lists/listinfo/tmda-cvs" TARGET="Resource Window">tmda-cvs</a> lists +to stay abreast of changes. +Please note that what you're getting is probably not even a bleeding-edge TMDA, +but a severly hemorrhaging one. -<u>Packages:</u><br> -(<strong>NOTE:</strong> Packages maintained by extraneous parties may not be caught up -with the latest release)<br> <ul> -<li>Linux RPM: See the <a href="install.html">installation</a> page for how to -easily build an RPM directly from the source tarball.<br><br> - -<li><a href="http://packages.debian.org/tmda" TARGET="Resource Window"> -Debian Linux Package</a> <strong>NOTE:</strong> Please use the most -recent TMDA package available; the <i>unstable</i> package should -install and work fine under <i>testing</i> and <i>stable</i>. -<br><br> - -<li>TMDA is part of <a href="http://www.mandrakelinux.com/" -TARGET="Resource Window">Mandrake Linux</a> Contribs<br><br> - -<li><a href="http://www.gentoo.org/dyn/pkgs/net-mail/tmda.xml" -TARGET="Resource Window">Gentoo Linux Package</a><br><br> +<li><a href="http://sourceforge.net/cvs/?group_id=24680" TARGET="Resource Window">CVS Access:</a><br> +The TMDA development sources can be accessed via anonymous (pserver) +CVS through module <b>tmda</b>.<br><br> + +<li><a href="snapshots/" TARGET="Resource Window"> +Nightly Snapshots:</a><br> Snapshots of the current development sources are checked out from CVS +and tarballed each morning at 05:00 UTC. -<li>*BSD ports/packages:<br><br> -<ul> - -<li>FreeBSD -<a href="http://www.freshports.org/mail/tmda/" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -<li>NetBSD -<a href="ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/mail/tmda/README.html" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -<li>OpenBSD -<a href="http://www.OpenBSD.org/cgi-bin/cvsweb/ports/mail/tmda/" -TARGET="Resource Window">(mail/tmda)</a> -<br> - -</ul> </ul> <u>rsync access:</u><br> @@ -259,7 +288,7 @@ <li>The TMDA web site is available via anonymous rsync at <em>rsync://tmda.net/tmdaweb/</em><br> This includes all the HTML pages as well as the <em>releases/</em> -directory. +and <em>snapshots/</em> directories. <br><br> </ul> </td><!-- end of body cell --> Index: requirements.ht =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/requirements.ht,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- requirements.ht 5 Oct 2003 06:17:41 -0000 1.26 +++ requirements.ht 20 Dec 2003 03:09:42 -0000 1.27 @@ -32,19 +32,12 @@ <ol> <li>The <a href="http://www.python.org/download/" TARGET="Resource Window">Python</a> -programming language. Versions 2.1 and higher are supported, but -2.3.2 is recommended. Many UNIX/Linux distributions now come with +programming language. Versions 2.3 and higher are supported, but +the latest 2.3.x point release is recommended. Many UNIX/Linux distributions now come with Python pre-installed. To check whether it is and what version you -have installed, try typing <strong>python</strong> and/or -<strong>python2</strong> at your shell's command line: - -<blockquote><pre> -% python -Python 2.3.2 (#2, Oct 4 2003, 04:06:19) -[GCC 3.3.2 20030908 (Debian prerelease)] on linux2 -Type "help", "copyright", "credits" or "license" for more information. ->>> ^D -</pre></blockquote> +have installed, try typing <strong>``python -V''</strong> and/or +<strong>``python2 -V''</strong> at your shell's command line. +<br><br> <li>An SMTP server (a.k.a. mail transport agent or MTA) for mail reception. Currently supported MTAs include Index: requirements.html =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/requirements.html,v retrieving revision 1.64 retrieving revision 1.65 diff -u -r1.64 -r1.65 --- requirements.html 19 Dec 2003 20:13:15 -0000 1.64 +++ requirements.html 20 Dec 2003 03:09:42 -0000 1.65 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Fri Dec 19 13:05:04 2003 --> +<!-- Fri Dec 19 20:05:49 2003 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -235,19 +235,12 @@ <ol> <li>The <a href="http://www.python.org/download/" TARGET="Resource Window">Python</a> -programming language. Versions 2.1 and higher are supported, but -2.3.2 is recommended. Many UNIX/Linux distributions now come with +programming language. Versions 2.3 and higher are supported, but +the latest 2.3.x point release is recommended. Many UNIX/Linux distributions now come with Python pre-installed. To check whether it is and what version you -have installed, try typing <strong>python</strong> and/or -<strong>python2</strong> at your shell's command line: - -<blockquote><pre> -% python -Python 2.3.2 (#2, Oct 4 2003, 04:06:19) -[GCC 3.3.2 20030908 (Debian prerelease)] on linux2 -Type "help", "copyright", "credits" or "license" for more information. ->>> ^D -</pre></blockquote> +have installed, try typing <strong>``python -V''</strong> and/or +<strong>``python2 -V''</strong> at your shell's command line. +<br><br> <li>An SMTP server (a.k.a. mail transport agent or MTA) for mail reception. Currently supported MTAs include Index: trouble.ht =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/trouble.ht,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- trouble.ht 19 Dec 2003 20:26:52 -0000 1.11 +++ trouble.ht 20 Dec 2003 03:09:42 -0000 1.12 @@ -54,8 +54,8 @@ </ol> If after all of this your problem is still not resolved, you should -inquire on <a href="http://tmda.net/lists/listinfo/tmda-users" -TARGET="Resource Window">tmda-users</a> mailing list. +inquire on <a href="http://tmda.net/lists/listinfo/tmda-workers" +TARGET="Resource Window">tmda-workers</a> mailing list. Make sure to include all the information mentioned in <a href="bugs.html">"Reporting Bugs"</a> even if you aren't reporting a bug. <br><br> Index: trouble.html =================================================================== RCS file: /cvsroot/tmda/tmda/htdocs/trouble.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- trouble.html 19 Dec 2003 20:26:52 -0000 1.40 +++ trouble.html 20 Dec 2003 03:09:42 -0000 1.41 @@ -1,7 +1,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- THIS PAGE IS AUTOMATICALLY GENERATED. DO NOT EDIT. --> -<!-- Fri Dec 19 13:24:54 2003 --> +<!-- Fri Dec 19 20:08:01 2003 --> <!-- USING HT2HTML 2.0 --> <!-- SEE http://ht2html.sf.net --> <!-- User-specified headers: @@ -257,8 +257,8 @@ </ol> If after all of this your problem is still not resolved, you should -inquire on <a href="http://tmda.net/lists/listinfo/tmda-users" -TARGET="Resource Window">tmda-users</a> mailing list. +inquire on <a href="http://tmda.net/lists/listinfo/tmda-workers" +TARGET="Resource Window">tmda-workers</a> mailing list. Make sure to include all the information mentioned in <a href="bugs.html">"Reporting Bugs"</a> even if you aren't reporting a bug. <br><br>