pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/qmail-run



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Tue Dec 11 17:49:41 UTC 2018

Modified Files:
        pkgsrc/mail/qmail-run: DEINSTALL INSTALL Makefile PLIST
        pkgsrc/mail/qmail-run/files: README.pkgsrc qmailofmipd.sh qmailpop3d.sh
            qmailsmtpd.sh smtpplugins
Added Files:
        pkgsrc/mail/qmail-run/files: tcprules-ofmip tcprules-pop3 tcprules-smtp
Removed Files:
        pkgsrc/mail/qmail-run/files: tcp.ofmip tcp.pop3 tcp.smtp

Log Message:
Add SPF checks via qmail-spp-spf (new dependency):

- On "fail", reject
- On "pass", skip any greylisting
- Else, accept mail as we otherwise would.

qmail-spp-spf adds a `Received-SPF:` header to all incoming messages.

Migrate ${PKG_SYSCONFDIR}/tcp.* to ${PKG_SYSCONFDIR}/control/tcprules.

Bump version.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/qmail-run/DEINSTALL
cvs rdiff -u -r1.9 -r1.10 pkgsrc/mail/qmail-run/INSTALL
cvs rdiff -u -r1.62 -r1.63 pkgsrc/mail/qmail-run/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/mail/qmail-run/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/mail/qmail-run/files/README.pkgsrc
cvs rdiff -u -r1.18 -r1.19 pkgsrc/mail/qmail-run/files/qmailofmipd.sh
cvs rdiff -u -r1.26 -r1.27 pkgsrc/mail/qmail-run/files/qmailpop3d.sh
cvs rdiff -u -r1.23 -r1.24 pkgsrc/mail/qmail-run/files/qmailsmtpd.sh
cvs rdiff -u -r1.3 -r1.4 pkgsrc/mail/qmail-run/files/smtpplugins
cvs rdiff -u -r1.5 -r0 pkgsrc/mail/qmail-run/files/tcp.ofmip \
    pkgsrc/mail/qmail-run/files/tcp.smtp
cvs rdiff -u -r1.2 -r0 pkgsrc/mail/qmail-run/files/tcp.pop3
cvs rdiff -u -r0 -r1.1 pkgsrc/mail/qmail-run/files/tcprules-ofmip \
    pkgsrc/mail/qmail-run/files/tcprules-pop3 \
    pkgsrc/mail/qmail-run/files/tcprules-smtp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/qmail-run/DEINSTALL
diff -u pkgsrc/mail/qmail-run/DEINSTALL:1.1 pkgsrc/mail/qmail-run/DEINSTALL:1.2
--- pkgsrc/mail/qmail-run/DEINSTALL:1.1 Wed Oct 24 15:46:54 2018
+++ pkgsrc/mail/qmail-run/DEINSTALL     Tue Dec 11 17:49:40 2018
@@ -1,13 +1,11 @@
-# $NetBSD: DEINSTALL,v 1.1 2018/10/24 15:46:54 schmonz Exp $
-
-PKG_SYSCONFDIR=@PKG_SYSCONFDIR@
+# $NetBSD: DEINSTALL,v 1.2 2018/12/11 17:49:40 schmonz Exp $
 
 case "${STAGE}" in
 
 POST-DEINSTALL)
        for i in ofmip pop3 smtp; do
-               s="${PKG_SYSCONFDIR}/tcp.${i}"
-               [ -f "${s}.cdb" ] && ! [ -f "${s}" ] && rm -f "${s}.cdb"
+               s="${PKG_SYSCONFDIR}/control/tcprules/${i}"
+               [ -f "${s}.cdb" ] && ! [ -f "${s}" ] && ${RM} -f "${s}.cdb"
        done
        ;;
 

Index: pkgsrc/mail/qmail-run/INSTALL
diff -u pkgsrc/mail/qmail-run/INSTALL:1.9 pkgsrc/mail/qmail-run/INSTALL:1.10
--- pkgsrc/mail/qmail-run/INSTALL:1.9   Tue Dec  4 17:00:59 2018
+++ pkgsrc/mail/qmail-run/INSTALL       Tue Dec 11 17:49:40 2018
@@ -1,11 +1,23 @@
-case ${STAGE} in
+# $NetBSD: INSTALL,v 1.10 2018/12/11 17:49:40 schmonz Exp $
 
-POST-INSTALL)
+case "${STAGE}" in
+
+PRE-INSTALL)
        cd ${PKG_SYSCONFDIR}
        for i in ofmip pop3 smtp; do
-               ${CHMOD} 644 tcp.${i}
-               ${PREFIX}/bin/tcprules tcp.${i}.cdb tcp.${i}.tmp < tcp.${i}
-               ${CHMOD} 644 tcp.${i}.cdb
+               s="tcp.${i}"
+               [ -f "${s}" ] && ${MV} -f "${s}" "control/tcprules/${i}"
+               [ -f "${s}.cdb" ] && ${RM} -f "${s}.cdb"
+       done
+
+       ;;
+
+POST-INSTALL)
+       cd ${PKG_SYSCONFDIR}/control/tcprules
+       for i in ofmip pop3 smtp; do
+               ${CHMOD} 644 ${i}
+               ${PREFIX}/bin/tcprules ${i}.cdb ${i}.tmp < ${i}
+               ${CHMOD} 644 ${i}.cdb
        done
 
        ;;

Index: pkgsrc/mail/qmail-run/Makefile
diff -u pkgsrc/mail/qmail-run/Makefile:1.62 pkgsrc/mail/qmail-run/Makefile:1.63
--- pkgsrc/mail/qmail-run/Makefile:1.62 Tue Dec  4 17:00:59 2018
+++ pkgsrc/mail/qmail-run/Makefile      Tue Dec 11 17:49:40 2018
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.62 2018/12/04 17:00:59 schmonz Exp $
+# $NetBSD: Makefile,v 1.63 2018/12/11 17:49:40 schmonz Exp $
 #
 
-DISTNAME=              qmail-run-20181204
+DISTNAME=              qmail-run-20181211
 CATEGORIES=            mail
 MASTER_SITES=          # empty
 DISTFILES=             # empty
@@ -18,6 +18,7 @@ DEPENDS+=             ${DEPENDS_QMAIL}
 DEPENDS+=              qmail-acceptutils>=20181128:../../mail/qmail-acceptutils
 DEPENDS+=              qmail-qfilter>1.5nb1:../../mail/qmail-qfilter
 DEPENDS+=              qmail-rejectutils>=20181128:../../mail/qmail-rejectutils
+DEPENDS+=              qmail-spp-spf-[0-9]*:../../mail/qmail-spp-spf
 
 WRKSRC=                        ${WRKDIR}
 NO_BUILD=              yes
@@ -40,9 +41,11 @@ EGDIR=                       share/examples/qmail-run
 CONF_FILES+=           ${PREFIX}/${EGDIR}/${f} \
                        ${PKG_SYSCONFDIR}/control/${f}
 .endfor
-.for f in tcp.ofmip tcp.pop3 tcp.smtp
-CONF_FILES+=           ${PREFIX}/${EGDIR}/${f} \
-                       ${PKG_SYSCONFDIR}/${f}
+TCPRULESDIR=           ${PKG_SYSCONFDIR}/control/tcprules
+OWN_DIRS+=             ${TCPRULESDIR}
+.for f in ofmip pop3 smtp
+CONF_FILES+=           ${PREFIX}/${EGDIR}/tcprules-${f} \
+                       ${TCPRULESDIR}/${f}
 .endfor
 GREYLISTDIR=           ${PKG_SYSCONFDIR}/control/greylist
 OWN_DIRS_PERMS+=       ${GREYLISTDIR} ${QMAIL_DAEMON_USER} ${QMAIL_QMAIL_GROUP} 775
@@ -77,7 +80,7 @@ SUBST_STAGE.paths=    pre-configure
 SUBST_FILES.paths=     mailer.conf
 SUBST_FILES.paths+=    greylisting-spp-with-exemptions ofmipd-with-user-cdb
 SUBST_FILES.paths+=    qmail-isspam-* qmail-procmail qmail-qread-client
-SUBST_FILES.paths+=    rcptchecks ofmipfilters smtpfilters smtpplugins tcp.*
+SUBST_FILES.paths+=    rcptchecks ofmipfilters smtpfilters smtpplugins tcprules-*
 SUBST_VARS.paths=      PKGNAME PKG_SYSCONFDIR PREFIX
 SUBST_VARS.paths+=     CAT ECHO GREP SED SH SORT TRUE
 
@@ -87,7 +90,7 @@ post-extract:
                ofmipfilters smtpfilters \
                pop3capabilities smtpcapabilities smtpplugins \
                concurrencyincoming concurrencypop3 concurrencysubmission \
-               tcp.ofmip tcp.pop3 tcp.smtp; do \
+               tcprules-ofmip tcprules-pop3 tcprules-smtp; do \
                ${CP} ${FILESDIR}/$$f ${WRKDIR}/$$f; \
        done; \
        for f in greylisting-spp-with-exemptions ofmipd-with-user-cdb \
@@ -108,7 +111,7 @@ do-install:
                ofmipfilters smtpfilters \
                pop3capabilities smtpcapabilities smtpplugins \
                concurrencyincoming concurrencypop3 concurrencysubmission \
-               tcp.ofmip tcp.pop3 tcp.smtp; do \
+               tcprules-ofmip tcprules-pop3 tcprules-smtp; do \
                ${INSTALL_DATA} ${WRKDIR}/$${f} \
                        ${DESTDIR}${PREFIX}/${EGDIR}; \
        done; \

Index: pkgsrc/mail/qmail-run/PLIST
diff -u pkgsrc/mail/qmail-run/PLIST:1.18 pkgsrc/mail/qmail-run/PLIST:1.19
--- pkgsrc/mail/qmail-run/PLIST:1.18    Wed Nov 28 16:22:41 2018
+++ pkgsrc/mail/qmail-run/PLIST Tue Dec 11 17:49:40 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2018/11/28 16:22:41 schmonz Exp $
+@comment $NetBSD: PLIST,v 1.19 2018/12/11 17:49:40 schmonz Exp $
 bin/greylisting-spp-with-exemptions
 bin/ofmipd-with-user-cdb
 bin/qmail-isspam-rspamd
@@ -22,6 +22,6 @@ share/examples/qmail-run/signatures
 share/examples/qmail-run/smtpcapabilities
 share/examples/qmail-run/smtpfilters
 share/examples/qmail-run/smtpplugins
-share/examples/qmail-run/tcp.ofmip
-share/examples/qmail-run/tcp.pop3
-share/examples/qmail-run/tcp.smtp
+share/examples/qmail-run/tcprules-ofmip
+share/examples/qmail-run/tcprules-pop3
+share/examples/qmail-run/tcprules-smtp

Index: pkgsrc/mail/qmail-run/files/README.pkgsrc
diff -u pkgsrc/mail/qmail-run/files/README.pkgsrc:1.4 pkgsrc/mail/qmail-run/files/README.pkgsrc:1.5
--- pkgsrc/mail/qmail-run/files/README.pkgsrc:1.4       Mon Jan  9 04:58:09 2017
+++ pkgsrc/mail/qmail-run/files/README.pkgsrc   Tue Dec 11 17:49:41 2018
@@ -42,5 +42,5 @@ LWQ suggests doing some things that the 
 Instead, the qmail-run package:
 * Provides NetBSD-style rc.d scripts, including one very similar to qmailctl.
 * Sends log messages to syslog(3) by default.
-* Stores tcp.smtp{,cdb} and tcp.pop3{,cdb} in ${PKG_SYSCONFDIR}.
+* Stores tcprules in ${PKG_SYSCONFDIR}/control/tcprules.
 * Uses mailwrapper(8) and mailer.conf(5).

Index: pkgsrc/mail/qmail-run/files/qmailofmipd.sh
diff -u pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.18 pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.19
--- pkgsrc/mail/qmail-run/files/qmailofmipd.sh:1.18     Wed Nov 28 16:42:44 2018
+++ pkgsrc/mail/qmail-run/files/qmailofmipd.sh  Tue Dec 11 17:49:41 2018
@@ -1,6 +1,6 @@
 #!@RCD_SCRIPTS_SHELL@
 #
-# $NetBSD: qmailofmipd.sh,v 1.18 2018/11/28 16:42:44 schmonz Exp $
+# $NetBSD: qmailofmipd.sh,v 1.19 2018/12/11 17:49:41 schmonz Exp $
 #
 # @PKGNAME@ script to control ofmipd (SMTP submission service).
 #
@@ -41,7 +41,7 @@ required_files="${required_files} @PKG_S
 required_files="${required_files} @PKG_SYSCONFDIR@/control/rcpthosts"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/smtpcapabilities"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/fixsmtpio"
-required_files="${required_files} @PKG_SYSCONFDIR@/tcp.ofmip.cdb"
+required_files="${required_files} @PKG_SYSCONFDIR@/control/tcprules/ofmip.cdb"
 command="${qmailofmipd_tcpserver}"
 procname=nb${name}
 start_precmd="qmailofmipd_precmd"
@@ -90,7 +90,7 @@ qmailofmipd_precmd()
        command="@PREFIX@/bin/pgrphack @SETENV@ - ${qmailofmipd_postenv}
 @PREFIX@/bin/softlimit -m ${qmailofmipd_datalimit} ${qmailofmipd_pretcpserver}
 @PREFIX@/bin/argv0 ${qmailofmipd_tcpserver} ${procname}
-${qmailofmipd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.ofmip.cdb
+${qmailofmipd_tcpflags} -x @PKG_SYSCONFDIR@/control/tcprules/ofmip.cdb
 -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencysubmission`
 ${qmailofmipd_tcphost} ${qmailofmipd_tcpport}
 ${qmailofmipd_precheckpassword} ${qmailofmipd_checkpassword}
@@ -128,10 +128,10 @@ qmailofmipd_cont()
 
 qmailofmipd_cdb()
 {
-       @ECHO@ "Reloading @PKG_SYSCONFDIR@/tcp.ofmip."
-       cd @PKG_SYSCONFDIR@
-       @PREFIX@/bin/tcprules tcp.ofmip.cdb tcp.ofmip.tmp < tcp.ofmip
-       @CHMOD@ 644 tcp.ofmip.cdb
+       @ECHO@ "Reloading @PKG_SYSCONFDIR@/control/tcprules/ofmip"
+       cd @PKG_SYSCONFDIR@/control/tcprules
+       @PREFIX@/bin/tcprules ofmip.cdb ofmip.tmp < ofmip
+       @CHMOD@ 644 ofmip.cdb
 }
 
 if [ -f /etc/rc.subr ]; then

Index: pkgsrc/mail/qmail-run/files/qmailpop3d.sh
diff -u pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.26 pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.27
--- pkgsrc/mail/qmail-run/files/qmailpop3d.sh:1.26      Wed Nov 28 16:42:44 2018
+++ pkgsrc/mail/qmail-run/files/qmailpop3d.sh   Tue Dec 11 17:49:41 2018
@@ -1,6 +1,6 @@
 #!@RCD_SCRIPTS_SHELL@
 #
-# $NetBSD: qmailpop3d.sh,v 1.26 2018/11/28 16:42:44 schmonz Exp $
+# $NetBSD: qmailpop3d.sh,v 1.27 2018/12/11 17:49:41 schmonz Exp $
 #
 # @PKGNAME@ script to control qmail-pop3d (POP3 server for Maildirs).
 #
@@ -38,7 +38,7 @@ rcvar=${name}
 required_files="@PKG_SYSCONFDIR@/control/me"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/concurrencypop3"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/pop3capabilities"
-required_files="${required_files} @PKG_SYSCONFDIR@/tcp.pop3.cdb"
+required_files="${required_files} @PKG_SYSCONFDIR@/control/tcprules/pop3.cdb"
 command="${qmailpop3d_tcpserver}"
 procname=nb${name}
 start_precmd="qmailpop3d_precmd"
@@ -87,7 +87,7 @@ qmailpop3d_precmd()
        command="@PREFIX@/bin/pgrphack @SETENV@ - ${qmailpop3d_postenv}
 @PREFIX@/bin/softlimit -m ${qmailpop3d_datalimit} ${qmailpop3d_pretcpserver}
 @PREFIX@/bin/argv0 ${qmailpop3d_tcpserver} ${procname}
-${qmailpop3d_tcpflags} -x @PKG_SYSCONFDIR@/tcp.pop3.cdb
+${qmailpop3d_tcpflags} -x @PKG_SYSCONFDIR@/control/tcprules/pop3.cdb
 -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencypop3`
 ${qmailpop3d_tcphost} ${qmailpop3d_tcpport}
 ${qmailpop3d_precheckpassword} ${qmailpop3d_checkpassword}
@@ -125,10 +125,10 @@ qmailpop3d_cont()
 
 qmailpop3d_cdb()
 {
-       @ECHO@ "Reloading @PKG_SYSCONFDIR@/tcp.pop3."
-       cd @PKG_SYSCONFDIR@
-       @PREFIX@/bin/tcprules tcp.pop3.cdb tcp.pop3.tmp < tcp.pop3
-       @CHMOD@ 644 tcp.pop3.cdb
+       @ECHO@ "Reloading @PKG_SYSCONFDIR@/control/tcprules/pop3."
+       cd @PKG_SYSCONFDIR@/control/tcprules
+       @PREFIX@/bin/tcprules pop3.cdb pop3.tmp < pop3
+       @CHMOD@ 644 pop3.cdb
 }
 
 if [ -f /etc/rc.subr ]; then

Index: pkgsrc/mail/qmail-run/files/qmailsmtpd.sh
diff -u pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.23 pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.24
--- pkgsrc/mail/qmail-run/files/qmailsmtpd.sh:1.23      Wed Nov 28 16:42:44 2018
+++ pkgsrc/mail/qmail-run/files/qmailsmtpd.sh   Tue Dec 11 17:49:41 2018
@@ -1,6 +1,6 @@
 #!@RCD_SCRIPTS_SHELL@
 #
-# $NetBSD: qmailsmtpd.sh,v 1.23 2018/11/28 16:42:44 schmonz Exp $
+# $NetBSD: qmailsmtpd.sh,v 1.24 2018/12/11 17:49:41 schmonz Exp $
 #
 # @PKGNAME@ script to control qmail-smtpd (SMTP service).
 #
@@ -37,7 +37,7 @@ rcvar=${name}
 required_files="@PKG_SYSCONFDIR@/control/me"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/concurrencyincoming"
 required_files="${required_files} @PKG_SYSCONFDIR@/control/rcpthosts"
-required_files="${required_files} @PKG_SYSCONFDIR@/tcp.smtp.cdb"
+required_files="${required_files} @PKG_SYSCONFDIR@/control/tcprules/smtp.cdb"
 command="${qmailsmtpd_tcpserver}"
 procname=nb${name}
 start_precmd="qmailsmtpd_precmd"
@@ -86,7 +86,7 @@ qmailsmtpd_precmd()
        command="@PREFIX@/bin/pgrphack @SETENV@ - ${qmailsmtpd_postenv}
 @PREFIX@/bin/softlimit -m ${qmailsmtpd_datalimit} ${qmailsmtpd_pretcpserver}
 @PREFIX@/bin/argv0 ${qmailsmtpd_tcpserver} ${procname}
-${qmailsmtpd_tcpflags} -x @PKG_SYSCONFDIR@/tcp.smtp.cdb
+${qmailsmtpd_tcpflags} -x @PKG_SYSCONFDIR@/control/tcprules/smtp.cdb
 -c `@HEAD@ -1 @PKG_SYSCONFDIR@/control/concurrencyincoming`
 -u `@ID@ -u @QMAIL_DAEMON_USER@` -g `@ID@ -g @QMAIL_DAEMON_USER@`
 ${qmailsmtpd_tcphost} ${qmailsmtpd_tcpport}
@@ -124,10 +124,10 @@ qmailsmtpd_cont()
 
 qmailsmtpd_cdb()
 {
-       @ECHO@ "Reloading @PKG_SYSCONFDIR@/tcp.smtp."
-       cd @PKG_SYSCONFDIR@
-       @PREFIX@/bin/tcprules tcp.smtp.cdb tcp.smtp.tmp < tcp.smtp
-       @CHMOD@ 644 tcp.smtp.cdb
+       @ECHO@ "Reloading @PKG_SYSCONFDIR@/control/tcprules/smtp."
+       cd @PKG_SYSCONFDIR@/control/tcprules
+       @PREFIX@/bin/tcprules smtp.cdb smtp.tmp < smtp
+       @CHMOD@ 644 smtp.cdb
 }
 
 if [ -f /etc/rc.subr ]; then

Index: pkgsrc/mail/qmail-run/files/smtpplugins
diff -u pkgsrc/mail/qmail-run/files/smtpplugins:1.3 pkgsrc/mail/qmail-run/files/smtpplugins:1.4
--- pkgsrc/mail/qmail-run/files/smtpplugins:1.3 Wed Nov 14 16:46:59 2018
+++ pkgsrc/mail/qmail-run/files/smtpplugins     Tue Dec 11 17:49:41 2018
@@ -8,6 +8,7 @@
 
 # plugins to execute on MAIL command
 [mail]
+@PREFIX@/bin/qmail-spp-spf
 
 # plugins to execute on RCPT command
 [rcpt]

Added files:

Index: pkgsrc/mail/qmail-run/files/tcprules-ofmip
diff -u /dev/null pkgsrc/mail/qmail-run/files/tcprules-ofmip:1.1
--- /dev/null   Tue Dec 11 17:49:41 2018
+++ pkgsrc/mail/qmail-run/files/tcprules-ofmip  Tue Dec 11 17:49:41 2018
@@ -0,0 +1 @@
+:allow,UCSPITLS="!",QMAILQUEUE="@PREFIX@/bin/qmail-qfilter-queue",QMAILQUEUEFILTERS="control/ofmipfilters",PYMSGAUTH_TOLERATE_UNCONFIGURED="1"
Index: pkgsrc/mail/qmail-run/files/tcprules-pop3
diff -u /dev/null pkgsrc/mail/qmail-run/files/tcprules-pop3:1.1
--- /dev/null   Tue Dec 11 17:49:41 2018
+++ pkgsrc/mail/qmail-run/files/tcprules-pop3   Tue Dec 11 17:49:41 2018
@@ -0,0 +1 @@
+:allow,UCSPITLS="!"
Index: pkgsrc/mail/qmail-run/files/tcprules-smtp
diff -u /dev/null pkgsrc/mail/qmail-run/files/tcprules-smtp:1.1
--- /dev/null   Tue Dec 11 17:49:41 2018
+++ pkgsrc/mail/qmail-run/files/tcprules-smtp   Tue Dec 11 17:49:41 2018
@@ -0,0 +1,2 @@
+127.:allow,RELAYCLIENT=""
+:allow,UCSPITLS="",GREETDELAY="2",SPP_SPF_RESULT_FAIL="E550 
spf_smtp_msg",SPP_SPF_RESULT_PASS="SGL_WHITELISTED=1",GL_DATABASE="@PKG_SYSCONFDIR@/control/greylist/database",GL_VERBOSE="1",QMAILQUEUE="@PREFIX@/bin/qmail-qfilter-queue",QMAILQUEUEFILTERS="control/smtpfilters"



Home | Main Index | Thread Index | Old Index