View | Details | Raw Unified | Return to bug 165403
Collapse All | Expand All

(-)Makefile (-4 / +164 lines)
Lines 5-20 Link Here
5
# $FreeBSD: ports/japanese/mailman/Makefile,v 1.4 2005/06/18 18:39:36 nork Exp $
5
# $FreeBSD: ports/japanese/mailman/Makefile,v 1.4 2005/06/18 18:39:36 nork Exp $
6
#
6
#
7
7
8
PORTNAME=	mailman
9
PORTVERSION=	2.1.14.j7
10
PORTEPOCH=	1
8
CATEGORIES=	japanese mail
11
CATEGORIES=	japanese mail
12
MASTER_SITES=	http://www.python.jp/doc/contrib/mailman/_static/ \
13
		LOCAL
14
MASTER_SITE_SUBDIR=	tota/${PORTNAME}
15
DISTNAME=	${PORTNAME}-${PORTVERSION:S/.j/+j/}
16
EXTRACT_SUFX=	.tgz
17
DIST_SUBDIR=	mailman
9
18
10
MAINTAINER=	koj@ofug.net
19
MAINTAINER=	koj@ofug.net
11
COMMENT=	Japanized mailman which is a mailing list manager with a web front-end
20
COMMENT=	Japanized mailman which is a mailing list manager with a web front-end
12
21
13
MASTERDIR=	${.CURDIR}/../../mail/mailman
22
LICENSE=	GPLv2
23
LICENSE_FILE=	${WRKSRC}/gnu-COPYING-GPL
14
24
15
.undef		WITH_HTDIG
25
CONFLICTS=	mailman-2.1.*
16
26
17
pre-configure::
27
USE_AUTOTOOLS=	autoconf
28
USE_GETTEXT=	yes
29
USE_PYTHON=	yes
30
USE_RC_SUBR=	mailman
31
32
GNU_CONFIGURE_PREFIX=	${MAILMANDIR}
33
CONFIGURE_ARGS+=--with-python=${PYTHON_CMD} \
34
		--with-username=${MM_USERNAME} \
35
		--with-groupname=${MM_GROUPNAME} \
36
		--with-mail-gid=${MAIL_GID} --with-cgi-gid=${CGI_GID} \
37
		--with-permcheck=no
38
MAKE_JOBS_SAFE=	yes
39
40
# The Mailman port supports a number of variables that may be tweaked at
41
# build time.  Getting the values of some of them right is crucial!
42
#
43
MM_USERNAME?=	mailman
44
MM_USERID?=	91
45
MM_GROUPNAME?=	${MM_USERNAME}
46
MM_GROUPID?=	${MM_USERID}
47
MM_DIR?=	mailman
48
CGI_GID?=	www
49
IMGDIR?=	www/icons
50
#
51
# End of user-configurable variables.
52
53
USERS=		${MM_USERNAME}
54
GROUPS=		${MM_GROUPNAME}
55
56
MAILMANDIR=	${PREFIX}/${MM_DIR}
57
PLIST_SUB=	MMDIR=${MM_DIR} IMGDIR=${IMGDIR}
58
SUB_FILES=	pkg-message pkg-install pkg-deinstall
59
SUB_LIST=	MAILMANDIR=${MAILMANDIR} USER=${MM_USERNAME} GROUP=${MM_GROUPNAME}
60
61
IMGFILES=	PythonPowered.png mailman.jpg mm-icon.png
62
63
PORTDOCS=	ACKNOWLEDGMENTS BUGS FAQ INSTALL NEWS README README-I18N.en \
64
		README.CONTRIB README.NETSCAPE \
65
		README.USERAGENT TODO UPGRADING \
66
		mailman-admin.txt \
67
		mailman-install.txt \
68
		mailman-member.txt \
69
		FreeBSD-post-install-notes
70
71
OPTIONS=	SENDMAIL "for use with sendmail" off \
72
		EXIM3 "for use with exim3" off \
73
		EXIM4 "for use with exim4" off \
74
		POSTFIX "for use with postfix" off \
75
		COURIER "for use with courier" off \
76
		NAMAZU2 "make private archives searchable with namazu2" off
77
78
.include <bsd.port.options.mk>
79
80
.if defined(WITH_SENDMAIL)
81
.if defined(WITH_EXIM3) || defined(WITH_EXIM4) || defined(WITH_POSTFIX) || \
82
defined(WITH_COURIER)
83
IGNORE=	can only have one MTA selected to integrate with
84
.endif
85
MAIL_GID?=	mailnull
86
.endif
87
88
.if defined(WITH_EXIM3)
89
.if defined(WITH_SENDMAIL) || defined(WITH_EXIM4) || defined(WITH_POSTFIX) || \
90
defined(WITH_COURIER)
91
IGNORE=	can only have one MTA selected to integrate with
92
.endif
93
MAIL_GID?=	nobody
94
.endif
95
96
.if defined(WITH_EXIM4)
97
.if defined(WITH_SENDMAIL) || defined(WITH_EXIM3) || defined(WITH_POSTFIX) || \
98
defined(WITH_COURIER)
99
IGNORE=	can only have one MTA selected to integrate with
100
.endif
101
MAIL_GID?=	mail
102
.endif
103
104
.if defined(WITH_POSTFIX)
105
.if defined(WITH_SENDMAIL) || defined(WITH_EXIM3) || defined(WITH_EXIM4) || \
106
defined(WITH_COURIER)
107
IGNORE=	can only have one MTA selected to integrate with
108
.endif
109
MAIL_GID?=	nobody
110
EXTRA_PATCHES+=	${FILESDIR}/postfix-verp.diff
111
.endif
112
113
.if defined(WITH_COURIER)
114
.if defined(WITH_SENDMAIL) || defined(WITH_EXIM3) || defined(WITH_EXIM4) || \
115
defined(WITH_POSTFIX)
116
IGNORE=	can only have one MTA selected to integrate with
117
.endif
118
MAIL_GID?=	courier
119
.endif
120
121
.if defined(WITH_NAMAZU2)
122
RUN_DEPENDS+=	mknmz:${PORTSDIR}/japanese/namazu2
123
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-Mailman-Cgi-private.py
124
.endif
125
126
pre-fetch:
127
	@${ECHO} ""
128
	@${ECHO} "You may change the following build options:"
129
	@${ECHO} "MM_USERNAME=mailman	The username of the Mailman user."
130
	@${ECHO} "MM_USERID=91		The user ID of the Mailman user."
131
	@${ECHO} "MM_GROUPNAME=mailman	The group to which the Mailman user will belong."
132
	@${ECHO} "MM_GROUPID=MM_USERID	The group ID for the Mailman user."
133
	@${ECHO} "MM_DIR=mailman		Mailman will be installed in ${PREFIX}/${MM_DIR}."
134
	@${ECHO} "CGI_GID=www		The group name or id under which your web server executes CGI scripts."
135
	@${ECHO} "IMGDIR=www/icons	Icon images will be installed in ${PREFIX}/${IMGDIR}."
136
	@${ECHO} ""
137
138
post-patch:
139
	@${REINPLACE_CMD} -e 's#%%LOCALBASE%%#${LOCALBASE}#g' \
140
	  ${WRKSRC}/Mailman/Defaults.py.in
141
	@${REINPLACE_CMD} -e 's/^0,5,10/#&/' ${WRKSRC}/cron/crontab.in.in
142
143
pre-configure:
18
	@ ${ECHO} "DEFAULT_SERVER_LANGUAGE = 'ja'" >> ${WRKSRC}/Mailman/mm_cfg.py.dist.in
144
	@ ${ECHO} "DEFAULT_SERVER_LANGUAGE = 'ja'" >> ${WRKSRC}/Mailman/mm_cfg.py.dist.in
145
	@ ${ECHO} "GLOBAL_PIPELINE.insert(1, 'iso2022jpfix')" >> ${WRKSRC}/Mailman/mm_cfg.py.dist.in
146
147
post-install:
148
	@${RM} -f ${MAILMANDIR}/pythonlib/*.egg-info
149
.for dir in cron scripts
150
	@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${MAILMANDIR}/${dir}
151
.endfor
152
	@${CHGRP} -R ${MM_GROUPNAME} ${MAILMANDIR}
153
	@${MKDIR} ${PREFIX}/${IMGDIR}
154
.for imgfile in ${IMGFILES}
155
	@${CP} ${MAILMANDIR}/icons/${imgfile} ${PREFIX}/${IMGDIR}
156
.endfor
157
	@uudecode -p ${FILESDIR}/powerlogo.gif.uue > \
158
	  ${PREFIX}/${IMGDIR}/powerlogo.gif
159
.if !defined(NOPORTDOCS)
160
	@${MV} ${WRKSRC}/doc/* ${WRKSRC}/
161
	@${MKDIR} ${DOCSDIR}
162
	@${INSTALL_DATA} ${FILESDIR}/FreeBSD-post-install-notes ${DOCSDIR}
163
.for docfile in ${PORTDOCS:NFreeBSD-post-install-notes}
164
	@${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
165
.endfor
166
.endif
167
	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
168
	@${CAT} ${PKGMESSAGE}
169
.if defined(WITH_POSTFIX)
170
	@if [ "x`${LOCALBASE}/sbin/postconf -h myhostname`" != "xlocalhost" ]; then \
171
		${ECHO_CMD} ""; \
172
		${ECHO_CMD} "Your Postfix hostname is non-default."; \
173
		${ECHO_CMD} -n "You must add \"SMTPHOST = "; \
174
		${ECHO_CMD} -n `${LOCALBASE}/sbin/postconf -h myhostname`; \
175
		${ECHO_CMD} "\" to the bottom of mm_cfg.py."; \
176
		${ECHO_CMD} ""; \
177
		fi
178
.endif
19
179
20
.include "${MASTERDIR}/Makefile"
180
.include <bsd.port.mk>
(-)distinfo (+2 lines)
Added Link Here
1
SHA256 (mailman/mailman-2.1.14+j7.tgz) = c68213e8c9fda9c93bd95d7197e100beab807cb4c879f0df51731a78e03a1966
2
SIZE (mailman/mailman-2.1.14+j7.tgz) = 8679318
(-)pkg-descr (+13 lines)
Added Link Here
1
This is the +j version Mailman which solves issues about
2
platform dependent characters in e-mail written in Japanese language
3
and includes additional patches.
4
5
Security and Features:
6
7
 - An XSS vulnerability, CVE-2011-0707, has been fixed.
8
 - A new mm_cfg.py setting AUTHENTICATION_COOKIE_LIFETIME has been added.
9
 - Fixed the command line scripts add_members, sync_members and
10
   clone_member to properly handle banned addresses.
11
 - and so on
12
13
WWW:	http://www.python.jp/doc/contrib/mailman/releases.html
(-)pkg-plist (+2398 lines)
Added Link Here
1
@comment $FreeBSD$
2
@stopdaemon mailman
3
@unexec if cmp -s %D/%%MMDIR%%/Mailman/mm_cfg.py %D/%%MMDIR%%/Mailman/mm_cfg.py.dist; then rm -f %D/%%MMDIR%%/Mailman/mm_cfg.py; fi
4
@unexec rm -f %D/%%MMDIR%%/Mailman/mm_cfg.pyc
5
@exec mkdir -p %D/%%MMDIR%%/archives
6
@exec mkdir -p %D/%%MMDIR%%/archives/private
7
@exec mkdir -p %D/%%MMDIR%%/archives/public
8
@exec mkdir -p %D/%%MMDIR%%/lists
9
@exec mkdir -p %D/%%MMDIR%%/locks
10
@exec mkdir -p %D/%%MMDIR%%/logs
11
@exec mkdir -p %D/%%MMDIR%%/qfiles
12
@exec mkdir -p %D/%%MMDIR%%/spam
13
%%IMGDIR%%/PythonPowered.png
14
%%IMGDIR%%/mailman.jpg
15
%%IMGDIR%%/mm-icon.png
16
%%IMGDIR%%/powerlogo.gif
17
%%MMDIR%%/Mailman/Archiver/Archiver.py
18
%%MMDIR%%/Mailman/Archiver/Archiver.pyc
19
%%MMDIR%%/Mailman/Archiver/HyperArch.py
20
%%MMDIR%%/Mailman/Archiver/HyperArch.pyc
21
%%MMDIR%%/Mailman/Archiver/HyperDatabase.py
22
%%MMDIR%%/Mailman/Archiver/HyperDatabase.pyc
23
%%MMDIR%%/Mailman/Archiver/__init__.py
24
%%MMDIR%%/Mailman/Archiver/__init__.pyc
25
%%MMDIR%%/Mailman/Archiver/pipermail.py
26
%%MMDIR%%/Mailman/Archiver/pipermail.pyc
27
%%MMDIR%%/Mailman/Autoresponder.py
28
%%MMDIR%%/Mailman/Autoresponder.pyc
29
%%MMDIR%%/Mailman/Bouncer.py
30
%%MMDIR%%/Mailman/Bouncer.pyc
31
%%MMDIR%%/Mailman/Bouncers/AOL.py
32
%%MMDIR%%/Mailman/Bouncers/AOL.pyc
33
%%MMDIR%%/Mailman/Bouncers/BouncerAPI.py
34
%%MMDIR%%/Mailman/Bouncers/BouncerAPI.pyc
35
%%MMDIR%%/Mailman/Bouncers/Caiwireless.py
36
%%MMDIR%%/Mailman/Bouncers/Caiwireless.pyc
37
%%MMDIR%%/Mailman/Bouncers/Compuserve.py
38
%%MMDIR%%/Mailman/Bouncers/Compuserve.pyc
39
%%MMDIR%%/Mailman/Bouncers/DSN.py
40
%%MMDIR%%/Mailman/Bouncers/DSN.pyc
41
%%MMDIR%%/Mailman/Bouncers/Exchange.py
42
%%MMDIR%%/Mailman/Bouncers/Exchange.pyc
43
%%MMDIR%%/Mailman/Bouncers/Exim.py
44
%%MMDIR%%/Mailman/Bouncers/Exim.pyc
45
%%MMDIR%%/Mailman/Bouncers/GroupWise.py
46
%%MMDIR%%/Mailman/Bouncers/GroupWise.pyc
47
%%MMDIR%%/Mailman/Bouncers/LLNL.py
48
%%MMDIR%%/Mailman/Bouncers/LLNL.pyc
49
%%MMDIR%%/Mailman/Bouncers/Microsoft.py
50
%%MMDIR%%/Mailman/Bouncers/Microsoft.pyc
51
%%MMDIR%%/Mailman/Bouncers/Netscape.py
52
%%MMDIR%%/Mailman/Bouncers/Netscape.pyc
53
%%MMDIR%%/Mailman/Bouncers/Postfix.py
54
%%MMDIR%%/Mailman/Bouncers/Postfix.pyc
55
%%MMDIR%%/Mailman/Bouncers/Qmail.py
56
%%MMDIR%%/Mailman/Bouncers/Qmail.pyc
57
%%MMDIR%%/Mailman/Bouncers/SMTP32.py
58
%%MMDIR%%/Mailman/Bouncers/SMTP32.pyc
59
%%MMDIR%%/Mailman/Bouncers/SimpleMatch.py
60
%%MMDIR%%/Mailman/Bouncers/SimpleMatch.pyc
61
%%MMDIR%%/Mailman/Bouncers/SimpleWarning.py
62
%%MMDIR%%/Mailman/Bouncers/SimpleWarning.pyc
63
%%MMDIR%%/Mailman/Bouncers/Sina.py
64
%%MMDIR%%/Mailman/Bouncers/Sina.pyc
65
%%MMDIR%%/Mailman/Bouncers/Yahoo.py
66
%%MMDIR%%/Mailman/Bouncers/Yahoo.pyc
67
%%MMDIR%%/Mailman/Bouncers/Yale.py
68
%%MMDIR%%/Mailman/Bouncers/Yale.pyc
69
%%MMDIR%%/Mailman/Bouncers/__init__.py
70
%%MMDIR%%/Mailman/Bouncers/__init__.pyc
71
%%MMDIR%%/Mailman/CSRFcheck.py
72
%%MMDIR%%/Mailman/CSRFcheck.pyc
73
%%MMDIR%%/Mailman/Cgi/Auth.py
74
%%MMDIR%%/Mailman/Cgi/Auth.pyc
75
%%MMDIR%%/Mailman/Cgi/__init__.py
76
%%MMDIR%%/Mailman/Cgi/__init__.pyc
77
%%MMDIR%%/Mailman/Cgi/admin.py
78
%%MMDIR%%/Mailman/Cgi/admin.pyc
79
%%MMDIR%%/Mailman/Cgi/admindb.py
80
%%MMDIR%%/Mailman/Cgi/admindb.pyc
81
%%MMDIR%%/Mailman/Cgi/confirm.py
82
%%MMDIR%%/Mailman/Cgi/confirm.pyc
83
%%MMDIR%%/Mailman/Cgi/create.py
84
%%MMDIR%%/Mailman/Cgi/create.pyc
85
%%MMDIR%%/Mailman/Cgi/edithtml.py
86
%%MMDIR%%/Mailman/Cgi/edithtml.pyc
87
%%MMDIR%%/Mailman/Cgi/listinfo.py
88
%%MMDIR%%/Mailman/Cgi/listinfo.pyc
89
%%MMDIR%%/Mailman/Cgi/options.py
90
%%MMDIR%%/Mailman/Cgi/options.pyc
91
%%MMDIR%%/Mailman/Cgi/private.py
92
%%MMDIR%%/Mailman/Cgi/private.pyc
93
%%MMDIR%%/Mailman/Cgi/rmlist.py
94
%%MMDIR%%/Mailman/Cgi/rmlist.pyc
95
%%MMDIR%%/Mailman/Cgi/roster.py
96
%%MMDIR%%/Mailman/Cgi/roster.pyc
97
%%MMDIR%%/Mailman/Cgi/subscribe.py
98
%%MMDIR%%/Mailman/Cgi/subscribe.pyc
99
%%MMDIR%%/Mailman/Commands/__init__.py
100
%%MMDIR%%/Mailman/Commands/__init__.pyc
101
%%MMDIR%%/Mailman/Commands/cmd_confirm.py
102
%%MMDIR%%/Mailman/Commands/cmd_confirm.pyc
103
%%MMDIR%%/Mailman/Commands/cmd_echo.py
104
%%MMDIR%%/Mailman/Commands/cmd_echo.pyc
105
%%MMDIR%%/Mailman/Commands/cmd_end.py
106
%%MMDIR%%/Mailman/Commands/cmd_end.pyc
107
%%MMDIR%%/Mailman/Commands/cmd_help.py
108
%%MMDIR%%/Mailman/Commands/cmd_help.pyc
109
%%MMDIR%%/Mailman/Commands/cmd_info.py
110
%%MMDIR%%/Mailman/Commands/cmd_info.pyc
111
%%MMDIR%%/Mailman/Commands/cmd_join.py
112
%%MMDIR%%/Mailman/Commands/cmd_join.pyc
113
%%MMDIR%%/Mailman/Commands/cmd_leave.py
114
%%MMDIR%%/Mailman/Commands/cmd_leave.pyc
115
%%MMDIR%%/Mailman/Commands/cmd_lists.py
116
%%MMDIR%%/Mailman/Commands/cmd_lists.pyc
117
%%MMDIR%%/Mailman/Commands/cmd_password.py
118
%%MMDIR%%/Mailman/Commands/cmd_password.pyc
119
%%MMDIR%%/Mailman/Commands/cmd_remove.py
120
%%MMDIR%%/Mailman/Commands/cmd_remove.pyc
121
%%MMDIR%%/Mailman/Commands/cmd_set.py
122
%%MMDIR%%/Mailman/Commands/cmd_set.pyc
123
%%MMDIR%%/Mailman/Commands/cmd_stop.py
124
%%MMDIR%%/Mailman/Commands/cmd_stop.pyc
125
%%MMDIR%%/Mailman/Commands/cmd_subscribe.py
126
%%MMDIR%%/Mailman/Commands/cmd_subscribe.pyc
127
%%MMDIR%%/Mailman/Commands/cmd_unsubscribe.py
128
%%MMDIR%%/Mailman/Commands/cmd_unsubscribe.pyc
129
%%MMDIR%%/Mailman/Commands/cmd_who.py
130
%%MMDIR%%/Mailman/Commands/cmd_who.pyc
131
%%MMDIR%%/Mailman/Defaults.py
132
%%MMDIR%%/Mailman/Defaults.pyc
133
%%MMDIR%%/Mailman/Deliverer.py
134
%%MMDIR%%/Mailman/Deliverer.pyc
135
%%MMDIR%%/Mailman/Digester.py
136
%%MMDIR%%/Mailman/Digester.pyc
137
%%MMDIR%%/Mailman/Errors.py
138
%%MMDIR%%/Mailman/Errors.pyc
139
%%MMDIR%%/Mailman/GatewayManager.py
140
%%MMDIR%%/Mailman/GatewayManager.pyc
141
%%MMDIR%%/Mailman/Gui/Archive.py
142
%%MMDIR%%/Mailman/Gui/Archive.pyc
143
%%MMDIR%%/Mailman/Gui/Autoresponse.py
144
%%MMDIR%%/Mailman/Gui/Autoresponse.pyc
145
%%MMDIR%%/Mailman/Gui/Bounce.py
146
%%MMDIR%%/Mailman/Gui/Bounce.pyc
147
%%MMDIR%%/Mailman/Gui/ContentFilter.py
148
%%MMDIR%%/Mailman/Gui/ContentFilter.pyc
149
%%MMDIR%%/Mailman/Gui/Digest.py
150
%%MMDIR%%/Mailman/Gui/Digest.pyc
151
%%MMDIR%%/Mailman/Gui/GUIBase.py
152
%%MMDIR%%/Mailman/Gui/GUIBase.pyc
153
%%MMDIR%%/Mailman/Gui/General.py
154
%%MMDIR%%/Mailman/Gui/General.pyc
155
%%MMDIR%%/Mailman/Gui/Language.py
156
%%MMDIR%%/Mailman/Gui/Language.pyc
157
%%MMDIR%%/Mailman/Gui/Membership.py
158
%%MMDIR%%/Mailman/Gui/Membership.pyc
159
%%MMDIR%%/Mailman/Gui/NonDigest.py
160
%%MMDIR%%/Mailman/Gui/NonDigest.pyc
161
%%MMDIR%%/Mailman/Gui/Passwords.py
162
%%MMDIR%%/Mailman/Gui/Passwords.pyc
163
%%MMDIR%%/Mailman/Gui/Privacy.py
164
%%MMDIR%%/Mailman/Gui/Privacy.pyc
165
%%MMDIR%%/Mailman/Gui/Topics.py
166
%%MMDIR%%/Mailman/Gui/Topics.pyc
167
%%MMDIR%%/Mailman/Gui/Usenet.py
168
%%MMDIR%%/Mailman/Gui/Usenet.pyc
169
%%MMDIR%%/Mailman/Gui/__init__.py
170
%%MMDIR%%/Mailman/Gui/__init__.pyc
171
%%MMDIR%%/Mailman/HTMLFormatter.py
172
%%MMDIR%%/Mailman/HTMLFormatter.pyc
173
%%MMDIR%%/Mailman/Handlers/Acknowledge.py
174
%%MMDIR%%/Mailman/Handlers/Acknowledge.pyc
175
%%MMDIR%%/Mailman/Handlers/AfterDelivery.py
176
%%MMDIR%%/Mailman/Handlers/AfterDelivery.pyc
177
%%MMDIR%%/Mailman/Handlers/Approve.py
178
%%MMDIR%%/Mailman/Handlers/Approve.pyc
179
%%MMDIR%%/Mailman/Handlers/AvoidDuplicates.py
180
%%MMDIR%%/Mailman/Handlers/AvoidDuplicates.pyc
181
%%MMDIR%%/Mailman/Handlers/CalcRecips.py
182
%%MMDIR%%/Mailman/Handlers/CalcRecips.pyc
183
%%MMDIR%%/Mailman/Handlers/Cleanse.py
184
%%MMDIR%%/Mailman/Handlers/Cleanse.pyc
185
%%MMDIR%%/Mailman/Handlers/CleanseDKIM.py
186
%%MMDIR%%/Mailman/Handlers/CleanseDKIM.pyc
187
%%MMDIR%%/Mailman/Handlers/CookHeaders.py
188
%%MMDIR%%/Mailman/Handlers/CookHeaders.pyc
189
%%MMDIR%%/Mailman/Handlers/Decorate.py
190
%%MMDIR%%/Mailman/Handlers/Decorate.pyc
191
%%MMDIR%%/Mailman/Handlers/Emergency.py
192
%%MMDIR%%/Mailman/Handlers/Emergency.pyc
193
%%MMDIR%%/Mailman/Handlers/FileRecips.py
194
%%MMDIR%%/Mailman/Handlers/FileRecips.pyc
195
%%MMDIR%%/Mailman/Handlers/Hold.py
196
%%MMDIR%%/Mailman/Handlers/Hold.pyc
197
%%MMDIR%%/Mailman/Handlers/MimeDel.py
198
%%MMDIR%%/Mailman/Handlers/MimeDel.pyc
199
%%MMDIR%%/Mailman/Handlers/Moderate.py
200
%%MMDIR%%/Mailman/Handlers/Moderate.pyc
201
%%MMDIR%%/Mailman/Handlers/OwnerRecips.py
202
%%MMDIR%%/Mailman/Handlers/OwnerRecips.pyc
203
%%MMDIR%%/Mailman/Handlers/Replybot.py
204
%%MMDIR%%/Mailman/Handlers/Replybot.pyc
205
%%MMDIR%%/Mailman/Handlers/SMTPDirect.py
206
%%MMDIR%%/Mailman/Handlers/SMTPDirect.pyc
207
%%MMDIR%%/Mailman/Handlers/Scrubber.py
208
%%MMDIR%%/Mailman/Handlers/Scrubber.pyc
209
%%MMDIR%%/Mailman/Handlers/Sendmail.py
210
%%MMDIR%%/Mailman/Handlers/Sendmail.pyc
211
%%MMDIR%%/Mailman/Handlers/SpamDetect.py
212
%%MMDIR%%/Mailman/Handlers/SpamDetect.pyc
213
%%MMDIR%%/Mailman/Handlers/Tagger.py
214
%%MMDIR%%/Mailman/Handlers/Tagger.pyc
215
%%MMDIR%%/Mailman/Handlers/ToArchive.py
216
%%MMDIR%%/Mailman/Handlers/ToArchive.pyc
217
%%MMDIR%%/Mailman/Handlers/ToDigest.py
218
%%MMDIR%%/Mailman/Handlers/ToDigest.pyc
219
%%MMDIR%%/Mailman/Handlers/ToOutgoing.py
220
%%MMDIR%%/Mailman/Handlers/ToOutgoing.pyc
221
%%MMDIR%%/Mailman/Handlers/ToUsenet.py
222
%%MMDIR%%/Mailman/Handlers/ToUsenet.pyc
223
%%MMDIR%%/Mailman/Handlers/__init__.py
224
%%MMDIR%%/Mailman/Handlers/__init__.pyc
225
%%MMDIR%%/Mailman/Handlers/iso2022jpfix.py
226
%%MMDIR%%/Mailman/Handlers/iso2022jpfix.pyc
227
%%MMDIR%%/Mailman/ListAdmin.py
228
%%MMDIR%%/Mailman/ListAdmin.pyc
229
%%MMDIR%%/Mailman/LockFile.py
230
%%MMDIR%%/Mailman/LockFile.pyc
231
%%MMDIR%%/Mailman/Logging/Logger.py
232
%%MMDIR%%/Mailman/Logging/Logger.pyc
233
%%MMDIR%%/Mailman/Logging/MultiLogger.py
234
%%MMDIR%%/Mailman/Logging/MultiLogger.pyc
235
%%MMDIR%%/Mailman/Logging/StampedLogger.py
236
%%MMDIR%%/Mailman/Logging/StampedLogger.pyc
237
%%MMDIR%%/Mailman/Logging/Syslog.py
238
%%MMDIR%%/Mailman/Logging/Syslog.pyc
239
%%MMDIR%%/Mailman/Logging/Utils.py
240
%%MMDIR%%/Mailman/Logging/Utils.pyc
241
%%MMDIR%%/Mailman/Logging/__init__.py
242
%%MMDIR%%/Mailman/Logging/__init__.pyc
243
%%MMDIR%%/Mailman/MTA/Manual.py
244
%%MMDIR%%/Mailman/MTA/Manual.pyc
245
%%MMDIR%%/Mailman/MTA/Postfix.py
246
%%MMDIR%%/Mailman/MTA/Postfix.pyc
247
%%MMDIR%%/Mailman/MTA/Utils.py
248
%%MMDIR%%/Mailman/MTA/Utils.pyc
249
%%MMDIR%%/Mailman/MTA/__init__.py
250
%%MMDIR%%/Mailman/MTA/__init__.pyc
251
%%MMDIR%%/Mailman/MailList.py
252
%%MMDIR%%/Mailman/MailList.pyc
253
%%MMDIR%%/Mailman/Mailbox.py
254
%%MMDIR%%/Mailman/Mailbox.pyc
255
%%MMDIR%%/Mailman/MemberAdaptor.py
256
%%MMDIR%%/Mailman/MemberAdaptor.pyc
257
%%MMDIR%%/Mailman/Message.py
258
%%MMDIR%%/Mailman/Message.pyc
259
%%MMDIR%%/Mailman/OldStyleMemberships.py
260
%%MMDIR%%/Mailman/OldStyleMemberships.pyc
261
%%MMDIR%%/Mailman/Pending.py
262
%%MMDIR%%/Mailman/Pending.pyc
263
%%MMDIR%%/Mailman/Post.py
264
%%MMDIR%%/Mailman/Post.pyc
265
%%MMDIR%%/Mailman/Queue/ArchRunner.py
266
%%MMDIR%%/Mailman/Queue/ArchRunner.pyc
267
%%MMDIR%%/Mailman/Queue/BounceRunner.py
268
%%MMDIR%%/Mailman/Queue/BounceRunner.pyc
269
%%MMDIR%%/Mailman/Queue/CommandRunner.py
270
%%MMDIR%%/Mailman/Queue/CommandRunner.pyc
271
%%MMDIR%%/Mailman/Queue/IncomingRunner.py
272
%%MMDIR%%/Mailman/Queue/IncomingRunner.pyc
273
%%MMDIR%%/Mailman/Queue/MaildirRunner.py
274
%%MMDIR%%/Mailman/Queue/MaildirRunner.pyc
275
%%MMDIR%%/Mailman/Queue/NewsRunner.py
276
%%MMDIR%%/Mailman/Queue/NewsRunner.pyc
277
%%MMDIR%%/Mailman/Queue/OutgoingRunner.py
278
%%MMDIR%%/Mailman/Queue/OutgoingRunner.pyc
279
%%MMDIR%%/Mailman/Queue/RetryRunner.py
280
%%MMDIR%%/Mailman/Queue/RetryRunner.pyc
281
%%MMDIR%%/Mailman/Queue/Runner.py
282
%%MMDIR%%/Mailman/Queue/Runner.pyc
283
%%MMDIR%%/Mailman/Queue/Switchboard.py
284
%%MMDIR%%/Mailman/Queue/Switchboard.pyc
285
%%MMDIR%%/Mailman/Queue/VirginRunner.py
286
%%MMDIR%%/Mailman/Queue/VirginRunner.pyc
287
%%MMDIR%%/Mailman/Queue/__init__.py
288
%%MMDIR%%/Mailman/Queue/__init__.pyc
289
%%MMDIR%%/Mailman/Queue/sbcache.py
290
%%MMDIR%%/Mailman/Queue/sbcache.pyc
291
%%MMDIR%%/Mailman/SafeDict.py
292
%%MMDIR%%/Mailman/SafeDict.pyc
293
%%MMDIR%%/Mailman/SecurityManager.py
294
%%MMDIR%%/Mailman/SecurityManager.pyc
295
%%MMDIR%%/Mailman/Site.py
296
%%MMDIR%%/Mailman/Site.pyc
297
%%MMDIR%%/Mailman/TopicMgr.py
298
%%MMDIR%%/Mailman/TopicMgr.pyc
299
%%MMDIR%%/Mailman/UserDesc.py
300
%%MMDIR%%/Mailman/UserDesc.pyc
301
%%MMDIR%%/Mailman/Utils.py
302
%%MMDIR%%/Mailman/Utils.pyc
303
%%MMDIR%%/Mailman/Version.py
304
%%MMDIR%%/Mailman/Version.pyc
305
%%MMDIR%%/Mailman/__init__.py
306
%%MMDIR%%/Mailman/__init__.pyc
307
%%MMDIR%%/Mailman/htmlformat.py
308
%%MMDIR%%/Mailman/htmlformat.pyc
309
%%MMDIR%%/Mailman/i18n.py
310
%%MMDIR%%/Mailman/i18n.pyc
311
@exec [ -f %B/mm_cfg.py ] || cp %B/%f %B/mm_cfg.py
312
%%MMDIR%%/Mailman/mm_cfg.py.dist
313
%%MMDIR%%/Mailman/mm_cfg.pyc
314
%%MMDIR%%/Mailman/versions.py
315
%%MMDIR%%/Mailman/versions.pyc
316
%%MMDIR%%/bin/add_members
317
%%MMDIR%%/bin/arch
318
%%MMDIR%%/bin/b4b5-archfix
319
%%MMDIR%%/bin/change_pw
320
%%MMDIR%%/bin/check_db
321
%%MMDIR%%/bin/check_perms
322
%%MMDIR%%/bin/cleanarch
323
%%MMDIR%%/bin/clone_member
324
%%MMDIR%%/bin/config_list
325
%%MMDIR%%/bin/convert.py
326
%%MMDIR%%/bin/discard
327
%%MMDIR%%/bin/dumpdb
328
%%MMDIR%%/bin/export.py
329
%%MMDIR%%/bin/find_member
330
%%MMDIR%%/bin/fix_url.py
331
%%MMDIR%%/bin/genaliases
332
%%MMDIR%%/bin/inject
333
%%MMDIR%%/bin/list_admins
334
%%MMDIR%%/bin/list_lists
335
%%MMDIR%%/bin/list_members
336
%%MMDIR%%/bin/list_owners
337
%%MMDIR%%/bin/mailmanctl
338
%%MMDIR%%/bin/mmsitepass
339
%%MMDIR%%/bin/msgfmt.py
340
%%MMDIR%%/bin/newlist
341
%%MMDIR%%/bin/paths.py
342
%%MMDIR%%/bin/paths.pyc
343
%%MMDIR%%/bin/qrunner
344
%%MMDIR%%/bin/rb-archfix
345
%%MMDIR%%/bin/remove_members
346
%%MMDIR%%/bin/reset_pw.py
347
%%MMDIR%%/bin/rmlist
348
%%MMDIR%%/bin/show_qfiles
349
%%MMDIR%%/bin/sync_members
350
%%MMDIR%%/bin/transcheck
351
%%MMDIR%%/bin/unshunt
352
%%MMDIR%%/bin/update
353
%%MMDIR%%/bin/version
354
%%MMDIR%%/bin/withlist
355
%%MMDIR%%/cgi-bin/admin
356
%%MMDIR%%/cgi-bin/admindb
357
%%MMDIR%%/cgi-bin/confirm
358
%%MMDIR%%/cgi-bin/create
359
%%MMDIR%%/cgi-bin/edithtml
360
%%MMDIR%%/cgi-bin/listinfo
361
%%MMDIR%%/cgi-bin/options
362
%%MMDIR%%/cgi-bin/private
363
%%MMDIR%%/cgi-bin/rmlist
364
%%MMDIR%%/cgi-bin/roster
365
%%MMDIR%%/cgi-bin/subscribe
366
%%MMDIR%%/cron/bumpdigests
367
%%MMDIR%%/cron/checkdbs
368
%%MMDIR%%/cron/crontab.in
369
%%MMDIR%%/cron/cull_bad_shunt
370
%%MMDIR%%/cron/disabled
371
%%MMDIR%%/cron/gate_news
372
%%MMDIR%%/cron/mailpasswds
373
%%MMDIR%%/cron/nightly_gzip
374
%%MMDIR%%/cron/paths.py
375
%%MMDIR%%/cron/paths.pyc
376
%%MMDIR%%/cron/senddigests
377
%%MMDIR%%/data/last_mailman_version
378
%%MMDIR%%/data/sitelist.cfg
379
%%MMDIR%%/icons/PythonPowered.png
380
%%MMDIR%%/icons/gnu-head-tiny.jpg
381
%%MMDIR%%/icons/gnu-head-tiny.png
382
%%MMDIR%%/icons/mailman-large.jpg
383
%%MMDIR%%/icons/mailman.ico
384
%%MMDIR%%/icons/mailman.jpg
385
%%MMDIR%%/icons/mm-icon-large.ico
386
%%MMDIR%%/icons/mm-icon.ico
387
%%MMDIR%%/icons/mm-icon.png
388
%%MMDIR%%/mail/mailman
389
%%MMDIR%%/messages/ar/LC_MESSAGES/mailman.mo
390
%%MMDIR%%/messages/ar/LC_MESSAGES/mailman.po
391
%%MMDIR%%/messages/ast/LC_MESSAGES/mailman.mo
392
%%MMDIR%%/messages/ast/LC_MESSAGES/mailman.po
393
%%MMDIR%%/messages/ca/LC_MESSAGES/mailman.mo
394
%%MMDIR%%/messages/ca/LC_MESSAGES/mailman.po
395
%%MMDIR%%/messages/cs/LC_MESSAGES/mailman.mo
396
%%MMDIR%%/messages/cs/LC_MESSAGES/mailman.po
397
%%MMDIR%%/messages/da/LC_MESSAGES/mailman.mo
398
%%MMDIR%%/messages/da/LC_MESSAGES/mailman.po
399
%%MMDIR%%/messages/de/LC_MESSAGES/mailman.mo
400
%%MMDIR%%/messages/de/LC_MESSAGES/mailman.po
401
%%MMDIR%%/messages/de/README.de
402
%%MMDIR%%/messages/el/LC_MESSAGES/mailman.mo
403
%%MMDIR%%/messages/el/LC_MESSAGES/mailman.po
404
%%MMDIR%%/messages/es/LC_MESSAGES/mailman.mo
405
%%MMDIR%%/messages/es/LC_MESSAGES/mailman.po
406
%%MMDIR%%/messages/es/README.es
407
%%MMDIR%%/messages/et/LC_MESSAGES/mailman.mo
408
%%MMDIR%%/messages/et/LC_MESSAGES/mailman.po
409
%%MMDIR%%/messages/eu/LC_MESSAGES/mailman.mo
410
%%MMDIR%%/messages/eu/LC_MESSAGES/mailman.po
411
%%MMDIR%%/messages/eu/README.eu
412
%%MMDIR%%/messages/fi/LC_MESSAGES/mailman.mo
413
%%MMDIR%%/messages/fi/LC_MESSAGES/mailman.po
414
%%MMDIR%%/messages/fi/README.fi
415
%%MMDIR%%/messages/fr/LC_MESSAGES/mailman.mo
416
%%MMDIR%%/messages/fr/LC_MESSAGES/mailman.po
417
%%MMDIR%%/messages/fr/README.fr
418
%%MMDIR%%/messages/gl/LC_MESSAGES/mailman.mo
419
%%MMDIR%%/messages/gl/LC_MESSAGES/mailman.po
420
%%MMDIR%%/messages/he/LC_MESSAGES/mailman.mo
421
%%MMDIR%%/messages/he/LC_MESSAGES/mailman.po
422
%%MMDIR%%/messages/hr/LC_MESSAGES/mailman.mo
423
%%MMDIR%%/messages/hr/LC_MESSAGES/mailman.po
424
%%MMDIR%%/messages/hu/LC_MESSAGES/mailman.mo
425
%%MMDIR%%/messages/hu/LC_MESSAGES/mailman.po
426
%%MMDIR%%/messages/hu/README.hu
427
%%MMDIR%%/messages/ia/LC_MESSAGES/mailman.mo
428
%%MMDIR%%/messages/ia/LC_MESSAGES/mailman.po
429
%%MMDIR%%/messages/it/LC_MESSAGES/mailman.mo
430
%%MMDIR%%/messages/it/LC_MESSAGES/mailman.po
431
%%MMDIR%%/messages/it/README.it
432
%%MMDIR%%/messages/ja/LC_MESSAGES/mailman.mo
433
%%MMDIR%%/messages/ja/LC_MESSAGES/mailman.po
434
%%MMDIR%%/messages/ja/README.ja
435
%%MMDIR%%/messages/ja_JP.UTF8/LC_MESSAGES/mailman.mo
436
%%MMDIR%%/messages/ja_JP.UTF8/LC_MESSAGES/mailman.po
437
%%MMDIR%%/messages/ko/LC_MESSAGES/mailman.mo
438
%%MMDIR%%/messages/ko/LC_MESSAGES/mailman.po
439
%%MMDIR%%/messages/ko/README.ko
440
%%MMDIR%%/messages/lt/LC_MESSAGES/mailman.mo
441
%%MMDIR%%/messages/lt/LC_MESSAGES/mailman.po
442
%%MMDIR%%/messages/nl/LC_MESSAGES/mailman.mo
443
%%MMDIR%%/messages/nl/LC_MESSAGES/mailman.po
444
%%MMDIR%%/messages/no/LC_MESSAGES/mailman.mo
445
%%MMDIR%%/messages/no/LC_MESSAGES/mailman.po
446
%%MMDIR%%/messages/pl/LC_MESSAGES/mailman.mo
447
%%MMDIR%%/messages/pl/LC_MESSAGES/mailman.po
448
%%MMDIR%%/messages/pl/README.pl
449
%%MMDIR%%/messages/pt/LC_MESSAGES/mailman.mo
450
%%MMDIR%%/messages/pt/LC_MESSAGES/mailman.po
451
%%MMDIR%%/messages/pt_BR/LC_MESSAGES/mailman.mo
452
%%MMDIR%%/messages/pt_BR/LC_MESSAGES/mailman.po
453
%%MMDIR%%/messages/ro/LC_MESSAGES/mailman.mo
454
%%MMDIR%%/messages/ro/LC_MESSAGES/mailman.po
455
%%MMDIR%%/messages/ru/LC_MESSAGES/mailman.mo
456
%%MMDIR%%/messages/ru/LC_MESSAGES/mailman.po
457
%%MMDIR%%/messages/ru/README.ru
458
%%MMDIR%%/messages/sk/LC_MESSAGES/mailman.mo
459
%%MMDIR%%/messages/sk/LC_MESSAGES/mailman.po
460
%%MMDIR%%/messages/sk/README.sk
461
%%MMDIR%%/messages/sl/LC_MESSAGES/mailman.mo
462
%%MMDIR%%/messages/sl/LC_MESSAGES/mailman.po
463
%%MMDIR%%/messages/sr/LC_MESSAGES/mailman.mo
464
%%MMDIR%%/messages/sr/LC_MESSAGES/mailman.po
465
%%MMDIR%%/messages/sv/LC_MESSAGES/mailman.mo
466
%%MMDIR%%/messages/sv/LC_MESSAGES/mailman.po
467
%%MMDIR%%/messages/sv/README.sv
468
%%MMDIR%%/messages/tr/LC_MESSAGES/mailman.mo
469
%%MMDIR%%/messages/tr/LC_MESSAGES/mailman.po
470
%%MMDIR%%/messages/uk/LC_MESSAGES/mailman.mo
471
%%MMDIR%%/messages/uk/LC_MESSAGES/mailman.po
472
%%MMDIR%%/messages/vi/LC_MESSAGES/mailman.mo
473
%%MMDIR%%/messages/vi/LC_MESSAGES/mailman.po
474
%%MMDIR%%/messages/zh_CN/LC_MESSAGES/mailman.mo
475
%%MMDIR%%/messages/zh_CN/LC_MESSAGES/mailman.po
476
%%MMDIR%%/messages/zh_TW/LC_MESSAGES/mailman.mo
477
%%MMDIR%%/messages/zh_TW/LC_MESSAGES/mailman.po
478
%%MMDIR%%/pythonlib/email/__init__.py
479
%%MMDIR%%/pythonlib/email/__init__.pyc
480
%%MMDIR%%/pythonlib/email/_parseaddr.py
481
%%MMDIR%%/pythonlib/email/_parseaddr.pyc
482
%%MMDIR%%/pythonlib/email/base64mime.py
483
%%MMDIR%%/pythonlib/email/base64mime.pyc
484
%%MMDIR%%/pythonlib/email/charset.py
485
%%MMDIR%%/pythonlib/email/charset.pyc
486
%%MMDIR%%/pythonlib/email/encoders.py
487
%%MMDIR%%/pythonlib/email/encoders.pyc
488
%%MMDIR%%/pythonlib/email/errors.py
489
%%MMDIR%%/pythonlib/email/errors.pyc
490
%%MMDIR%%/pythonlib/email/feedparser.py
491
%%MMDIR%%/pythonlib/email/feedparser.pyc
492
%%MMDIR%%/pythonlib/email/generator.py
493
%%MMDIR%%/pythonlib/email/generator.pyc
494
%%MMDIR%%/pythonlib/email/header.py
495
%%MMDIR%%/pythonlib/email/header.pyc
496
%%MMDIR%%/pythonlib/email/iterators.py
497
%%MMDIR%%/pythonlib/email/iterators.pyc
498
%%MMDIR%%/pythonlib/email/message.py
499
%%MMDIR%%/pythonlib/email/message.pyc
500
%%MMDIR%%/pythonlib/email/mime/__init__.py
501
%%MMDIR%%/pythonlib/email/mime/__init__.pyc
502
%%MMDIR%%/pythonlib/email/mime/application.py
503
%%MMDIR%%/pythonlib/email/mime/application.pyc
504
%%MMDIR%%/pythonlib/email/mime/audio.py
505
%%MMDIR%%/pythonlib/email/mime/audio.pyc
506
%%MMDIR%%/pythonlib/email/mime/base.py
507
%%MMDIR%%/pythonlib/email/mime/base.pyc
508
%%MMDIR%%/pythonlib/email/mime/image.py
509
%%MMDIR%%/pythonlib/email/mime/image.pyc
510
%%MMDIR%%/pythonlib/email/mime/message.py
511
%%MMDIR%%/pythonlib/email/mime/message.pyc
512
%%MMDIR%%/pythonlib/email/mime/multipart.py
513
%%MMDIR%%/pythonlib/email/mime/multipart.pyc
514
%%MMDIR%%/pythonlib/email/mime/nonmultipart.py
515
%%MMDIR%%/pythonlib/email/mime/nonmultipart.pyc
516
%%MMDIR%%/pythonlib/email/mime/text.py
517
%%MMDIR%%/pythonlib/email/mime/text.pyc
518
%%MMDIR%%/pythonlib/email/parser.py
519
%%MMDIR%%/pythonlib/email/parser.pyc
520
%%MMDIR%%/pythonlib/email/quoprimime.py
521
%%MMDIR%%/pythonlib/email/quoprimime.pyc
522
%%MMDIR%%/pythonlib/email/utils.py
523
%%MMDIR%%/pythonlib/email/utils.pyc
524
%%MMDIR%%/pythonlib/pykf.so
525
%%MMDIR%%/scripts/admin
526
%%MMDIR%%/scripts/bounces
527
%%MMDIR%%/scripts/confirm
528
%%MMDIR%%/scripts/driver
529
%%MMDIR%%/scripts/join
530
%%MMDIR%%/scripts/leave
531
%%MMDIR%%/scripts/mailman
532
%%MMDIR%%/scripts/owner
533
%%MMDIR%%/scripts/paths.py
534
%%MMDIR%%/scripts/paths.pyc
535
%%MMDIR%%/scripts/post
536
%%MMDIR%%/scripts/request
537
%%MMDIR%%/scripts/subscribe
538
%%MMDIR%%/scripts/unsubscribe
539
%%MMDIR%%/templates/ar/admindbdetails.html
540
%%MMDIR%%/templates/ar/admindbpreamble.html
541
%%MMDIR%%/templates/ar/admindbsummary.html
542
%%MMDIR%%/templates/ar/adminsubscribeack.txt
543
%%MMDIR%%/templates/ar/adminunsubscribeack.txt
544
%%MMDIR%%/templates/ar/admlogin.html
545
%%MMDIR%%/templates/ar/approve.txt
546
%%MMDIR%%/templates/ar/archidxentry.html
547
%%MMDIR%%/templates/ar/archidxfoot.html
548
%%MMDIR%%/templates/ar/archidxhead.html
549
%%MMDIR%%/templates/ar/archlistend.html
550
%%MMDIR%%/templates/ar/archliststart.html
551
%%MMDIR%%/templates/ar/archtoc.html
552
%%MMDIR%%/templates/ar/archtocentry.html
553
%%MMDIR%%/templates/ar/archtocnombox.html
554
%%MMDIR%%/templates/ar/article.html
555
%%MMDIR%%/templates/ar/bounce.txt
556
%%MMDIR%%/templates/ar/checkdbs.txt
557
%%MMDIR%%/templates/ar/convert.txt
558
%%MMDIR%%/templates/ar/cronpass.txt
559
%%MMDIR%%/templates/ar/disabled.txt
560
%%MMDIR%%/templates/ar/emptyarchive.html
561
%%MMDIR%%/templates/ar/headfoot.html
562
%%MMDIR%%/templates/ar/help.txt
563
%%MMDIR%%/templates/ar/invite.txt
564
%%MMDIR%%/templates/ar/listinfo.html
565
%%MMDIR%%/templates/ar/masthead.txt
566
%%MMDIR%%/templates/ar/newlist.txt
567
%%MMDIR%%/templates/ar/nomoretoday.txt
568
%%MMDIR%%/templates/ar/options.html
569
%%MMDIR%%/templates/ar/postack.txt
570
%%MMDIR%%/templates/ar/postauth.txt
571
%%MMDIR%%/templates/ar/postheld.txt
572
%%MMDIR%%/templates/ar/private.html
573
%%MMDIR%%/templates/ar/probe.txt
574
%%MMDIR%%/templates/ar/refuse.txt
575
%%MMDIR%%/templates/ar/roster.html
576
%%MMDIR%%/templates/ar/subauth.txt
577
%%MMDIR%%/templates/ar/subscribe.html
578
%%MMDIR%%/templates/ar/subscribeack.txt
579
%%MMDIR%%/templates/ar/unsub.txt
580
%%MMDIR%%/templates/ar/unsubauth.txt
581
%%MMDIR%%/templates/ar/userpass.txt
582
%%MMDIR%%/templates/ar/verify.txt
583
%%MMDIR%%/templates/ast/admindbdetails.html
584
%%MMDIR%%/templates/ast/admindbpreamble.html
585
%%MMDIR%%/templates/ast/admindbsummary.html
586
%%MMDIR%%/templates/ast/adminsubscribeack.txt
587
%%MMDIR%%/templates/ast/adminunsubscribeack.txt
588
%%MMDIR%%/templates/ast/admlogin.html
589
%%MMDIR%%/templates/ast/approve.txt
590
%%MMDIR%%/templates/ast/archidxentry.html
591
%%MMDIR%%/templates/ast/archidxfoot.html
592
%%MMDIR%%/templates/ast/archidxhead.html
593
%%MMDIR%%/templates/ast/archlistend.html
594
%%MMDIR%%/templates/ast/archliststart.html
595
%%MMDIR%%/templates/ast/archtoc.html
596
%%MMDIR%%/templates/ast/archtocentry.html
597
%%MMDIR%%/templates/ast/archtocnombox.html
598
%%MMDIR%%/templates/ast/article.html
599
%%MMDIR%%/templates/ast/bounce.txt
600
%%MMDIR%%/templates/ast/checkdbs.txt
601
%%MMDIR%%/templates/ast/convert.txt
602
%%MMDIR%%/templates/ast/cronpass.txt
603
%%MMDIR%%/templates/ast/disabled.txt
604
%%MMDIR%%/templates/ast/emptyarchive.html
605
%%MMDIR%%/templates/ast/headfoot.html
606
%%MMDIR%%/templates/ast/help.txt
607
%%MMDIR%%/templates/ast/invite.txt
608
%%MMDIR%%/templates/ast/listinfo.html
609
%%MMDIR%%/templates/ast/masthead.txt
610
%%MMDIR%%/templates/ast/newlist.txt
611
%%MMDIR%%/templates/ast/nomoretoday.txt
612
%%MMDIR%%/templates/ast/options.html
613
%%MMDIR%%/templates/ast/postack.txt
614
%%MMDIR%%/templates/ast/postauth.txt
615
%%MMDIR%%/templates/ast/postheld.txt
616
%%MMDIR%%/templates/ast/private.html
617
%%MMDIR%%/templates/ast/probe.txt
618
%%MMDIR%%/templates/ast/refuse.txt
619
%%MMDIR%%/templates/ast/roster.html
620
%%MMDIR%%/templates/ast/subauth.txt
621
%%MMDIR%%/templates/ast/subscribe.html
622
%%MMDIR%%/templates/ast/subscribeack.txt
623
%%MMDIR%%/templates/ast/unsub.txt
624
%%MMDIR%%/templates/ast/unsubauth.txt
625
%%MMDIR%%/templates/ast/userpass.txt
626
%%MMDIR%%/templates/ast/verify.txt
627
%%MMDIR%%/templates/ca/admindbdetails.html
628
%%MMDIR%%/templates/ca/admindbpreamble.html
629
%%MMDIR%%/templates/ca/admindbsummary.html
630
%%MMDIR%%/templates/ca/adminsubscribeack.txt
631
%%MMDIR%%/templates/ca/adminunsubscribeack.txt
632
%%MMDIR%%/templates/ca/admlogin.html
633
%%MMDIR%%/templates/ca/approve.txt
634
%%MMDIR%%/templates/ca/archidxentry.html
635
%%MMDIR%%/templates/ca/archidxfoot.html
636
%%MMDIR%%/templates/ca/archidxhead.html
637
%%MMDIR%%/templates/ca/archlistend.html
638
%%MMDIR%%/templates/ca/archliststart.html
639
%%MMDIR%%/templates/ca/archtoc.html
640
%%MMDIR%%/templates/ca/archtocentry.html
641
%%MMDIR%%/templates/ca/archtocnombox.html
642
%%MMDIR%%/templates/ca/article.html
643
%%MMDIR%%/templates/ca/bounce.txt
644
%%MMDIR%%/templates/ca/checkdbs.txt
645
%%MMDIR%%/templates/ca/convert.txt
646
%%MMDIR%%/templates/ca/cronpass.txt
647
%%MMDIR%%/templates/ca/disabled.txt
648
%%MMDIR%%/templates/ca/emptyarchive.html
649
%%MMDIR%%/templates/ca/headfoot.html
650
%%MMDIR%%/templates/ca/help.txt
651
%%MMDIR%%/templates/ca/invite.txt
652
%%MMDIR%%/templates/ca/listinfo.html
653
%%MMDIR%%/templates/ca/masthead.txt
654
%%MMDIR%%/templates/ca/newlist.txt
655
%%MMDIR%%/templates/ca/nomoretoday.txt
656
%%MMDIR%%/templates/ca/options.html
657
%%MMDIR%%/templates/ca/postack.txt
658
%%MMDIR%%/templates/ca/postauth.txt
659
%%MMDIR%%/templates/ca/postheld.txt
660
%%MMDIR%%/templates/ca/private.html
661
%%MMDIR%%/templates/ca/probe.txt
662
%%MMDIR%%/templates/ca/refuse.txt
663
%%MMDIR%%/templates/ca/roster.html
664
%%MMDIR%%/templates/ca/subauth.txt
665
%%MMDIR%%/templates/ca/subscribe.html
666
%%MMDIR%%/templates/ca/subscribeack.txt
667
%%MMDIR%%/templates/ca/unsub.txt
668
%%MMDIR%%/templates/ca/unsubauth.txt
669
%%MMDIR%%/templates/ca/userpass.txt
670
%%MMDIR%%/templates/ca/verify.txt
671
%%MMDIR%%/templates/cs/admindbdetails.html
672
%%MMDIR%%/templates/cs/admindbpreamble.html
673
%%MMDIR%%/templates/cs/admindbsummary.html
674
%%MMDIR%%/templates/cs/adminsubscribeack.txt
675
%%MMDIR%%/templates/cs/adminunsubscribeack.txt
676
%%MMDIR%%/templates/cs/admlogin.html
677
%%MMDIR%%/templates/cs/approve.txt
678
%%MMDIR%%/templates/cs/archidxentry.html
679
%%MMDIR%%/templates/cs/archidxfoot.html
680
%%MMDIR%%/templates/cs/archidxhead.html
681
%%MMDIR%%/templates/cs/archlistend.html
682
%%MMDIR%%/templates/cs/archliststart.html
683
%%MMDIR%%/templates/cs/archtoc.html
684
%%MMDIR%%/templates/cs/archtocentry.html
685
%%MMDIR%%/templates/cs/archtocnombox.html
686
%%MMDIR%%/templates/cs/article.html
687
%%MMDIR%%/templates/cs/bounce.txt
688
%%MMDIR%%/templates/cs/checkdbs.txt
689
%%MMDIR%%/templates/cs/convert.txt
690
%%MMDIR%%/templates/cs/cronpass.txt
691
%%MMDIR%%/templates/cs/disabled.txt
692
%%MMDIR%%/templates/cs/emptyarchive.html
693
%%MMDIR%%/templates/cs/headfoot.html
694
%%MMDIR%%/templates/cs/help.txt
695
%%MMDIR%%/templates/cs/invite.txt
696
%%MMDIR%%/templates/cs/listinfo.html
697
%%MMDIR%%/templates/cs/masthead.txt
698
%%MMDIR%%/templates/cs/newlist.txt
699
%%MMDIR%%/templates/cs/nomoretoday.txt
700
%%MMDIR%%/templates/cs/options.html
701
%%MMDIR%%/templates/cs/postack.txt
702
%%MMDIR%%/templates/cs/postauth.txt
703
%%MMDIR%%/templates/cs/postheld.txt
704
%%MMDIR%%/templates/cs/private.html
705
%%MMDIR%%/templates/cs/probe.txt
706
%%MMDIR%%/templates/cs/refuse.txt
707
%%MMDIR%%/templates/cs/roster.html
708
%%MMDIR%%/templates/cs/subauth.txt
709
%%MMDIR%%/templates/cs/subscribe.html
710
%%MMDIR%%/templates/cs/subscribeack.txt
711
%%MMDIR%%/templates/cs/unsub.txt
712
%%MMDIR%%/templates/cs/unsubauth.txt
713
%%MMDIR%%/templates/cs/userpass.txt
714
%%MMDIR%%/templates/cs/verify.txt
715
%%MMDIR%%/templates/da/admindbdetails.html
716
%%MMDIR%%/templates/da/admindbpreamble.html
717
%%MMDIR%%/templates/da/admindbsummary.html
718
%%MMDIR%%/templates/da/adminsubscribeack.txt
719
%%MMDIR%%/templates/da/adminunsubscribeack.txt
720
%%MMDIR%%/templates/da/admlogin.html
721
%%MMDIR%%/templates/da/approve.txt
722
%%MMDIR%%/templates/da/archidxfoot.html
723
%%MMDIR%%/templates/da/archidxhead.html
724
%%MMDIR%%/templates/da/archliststart.html
725
%%MMDIR%%/templates/da/archtoc.html
726
%%MMDIR%%/templates/da/archtocentry.html
727
%%MMDIR%%/templates/da/archtocnombox.html
728
%%MMDIR%%/templates/da/article.html
729
%%MMDIR%%/templates/da/bounce.txt
730
%%MMDIR%%/templates/da/checkdbs.txt
731
%%MMDIR%%/templates/da/convert.txt
732
%%MMDIR%%/templates/da/cronpass.txt
733
%%MMDIR%%/templates/da/disabled.txt
734
%%MMDIR%%/templates/da/emptyarchive.html
735
%%MMDIR%%/templates/da/headfoot.html
736
%%MMDIR%%/templates/da/help.txt
737
%%MMDIR%%/templates/da/invite.txt
738
%%MMDIR%%/templates/da/listinfo.html
739
%%MMDIR%%/templates/da/masthead.txt
740
%%MMDIR%%/templates/da/newlist.txt
741
%%MMDIR%%/templates/da/nomoretoday.txt
742
%%MMDIR%%/templates/da/options.html
743
%%MMDIR%%/templates/da/postack.txt
744
%%MMDIR%%/templates/da/postauth.txt
745
%%MMDIR%%/templates/da/postheld.txt
746
%%MMDIR%%/templates/da/private.html
747
%%MMDIR%%/templates/da/probe.txt
748
%%MMDIR%%/templates/da/refuse.txt
749
%%MMDIR%%/templates/da/roster.html
750
%%MMDIR%%/templates/da/subauth.txt
751
%%MMDIR%%/templates/da/subscribe.html
752
%%MMDIR%%/templates/da/subscribeack.txt
753
%%MMDIR%%/templates/da/unsub.txt
754
%%MMDIR%%/templates/da/unsubauth.txt
755
%%MMDIR%%/templates/da/userpass.txt
756
%%MMDIR%%/templates/da/verify.txt
757
%%MMDIR%%/templates/de/admindbdetails.html
758
%%MMDIR%%/templates/de/admindbpreamble.html
759
%%MMDIR%%/templates/de/admindbsummary.html
760
%%MMDIR%%/templates/de/adminsubscribeack.txt
761
%%MMDIR%%/templates/de/adminunsubscribeack.txt
762
%%MMDIR%%/templates/de/admlogin.html
763
%%MMDIR%%/templates/de/approve.txt
764
%%MMDIR%%/templates/de/archidxentry.html
765
%%MMDIR%%/templates/de/archidxfoot.html
766
%%MMDIR%%/templates/de/archidxhead.html
767
%%MMDIR%%/templates/de/archlistend.html
768
%%MMDIR%%/templates/de/archliststart.html
769
%%MMDIR%%/templates/de/archtoc.html
770
%%MMDIR%%/templates/de/archtocentry.html
771
%%MMDIR%%/templates/de/archtocnombox.html
772
%%MMDIR%%/templates/de/article.html
773
%%MMDIR%%/templates/de/bounce.txt
774
%%MMDIR%%/templates/de/checkdbs.txt
775
%%MMDIR%%/templates/de/convert.txt
776
%%MMDIR%%/templates/de/cronpass.txt
777
%%MMDIR%%/templates/de/disabled.txt
778
%%MMDIR%%/templates/de/emptyarchive.html
779
%%MMDIR%%/templates/de/headfoot.html
780
%%MMDIR%%/templates/de/help.txt
781
%%MMDIR%%/templates/de/invite.txt
782
%%MMDIR%%/templates/de/listinfo.html
783
%%MMDIR%%/templates/de/masthead.txt
784
%%MMDIR%%/templates/de/newlist.txt
785
%%MMDIR%%/templates/de/nomoretoday.txt
786
%%MMDIR%%/templates/de/options.html
787
%%MMDIR%%/templates/de/postack.txt
788
%%MMDIR%%/templates/de/postauth.txt
789
%%MMDIR%%/templates/de/postheld.txt
790
%%MMDIR%%/templates/de/private.html
791
%%MMDIR%%/templates/de/probe.txt
792
%%MMDIR%%/templates/de/refuse.txt
793
%%MMDIR%%/templates/de/roster.html
794
%%MMDIR%%/templates/de/subauth.txt
795
%%MMDIR%%/templates/de/subscribe.html
796
%%MMDIR%%/templates/de/subscribeack.txt
797
%%MMDIR%%/templates/de/unsub.txt
798
%%MMDIR%%/templates/de/unsubauth.txt
799
%%MMDIR%%/templates/de/userpass.txt
800
%%MMDIR%%/templates/de/verify.txt
801
%%MMDIR%%/templates/el/admindbdetails.html
802
%%MMDIR%%/templates/el/admindbpreamble.html
803
%%MMDIR%%/templates/el/admindbsummary.html
804
%%MMDIR%%/templates/el/adminsubscribeack.txt
805
%%MMDIR%%/templates/el/adminunsubscribeack.txt
806
%%MMDIR%%/templates/el/admlogin.html
807
%%MMDIR%%/templates/el/approve.txt
808
%%MMDIR%%/templates/el/archidxentry.html
809
%%MMDIR%%/templates/el/archidxfoot.html
810
%%MMDIR%%/templates/el/archidxhead.html
811
%%MMDIR%%/templates/el/archlistend.html
812
%%MMDIR%%/templates/el/archliststart.html
813
%%MMDIR%%/templates/el/archtoc.html
814
%%MMDIR%%/templates/el/archtocentry.html
815
%%MMDIR%%/templates/el/archtocnombox.html
816
%%MMDIR%%/templates/el/article.html
817
%%MMDIR%%/templates/el/bounce.txt
818
%%MMDIR%%/templates/el/checkdbs.txt
819
%%MMDIR%%/templates/el/convert.txt
820
%%MMDIR%%/templates/el/cronpass.txt
821
%%MMDIR%%/templates/el/disabled.txt
822
%%MMDIR%%/templates/el/emptyarchive.html
823
%%MMDIR%%/templates/el/headfoot.html
824
%%MMDIR%%/templates/el/help.txt
825
%%MMDIR%%/templates/el/invite.txt
826
%%MMDIR%%/templates/el/listinfo.html
827
%%MMDIR%%/templates/el/masthead.txt
828
%%MMDIR%%/templates/el/newlist.txt
829
%%MMDIR%%/templates/el/nomoretoday.txt
830
%%MMDIR%%/templates/el/options.html
831
%%MMDIR%%/templates/el/postack.txt
832
%%MMDIR%%/templates/el/postauth.txt
833
%%MMDIR%%/templates/el/postheld.txt
834
%%MMDIR%%/templates/el/private.html
835
%%MMDIR%%/templates/el/probe.txt
836
%%MMDIR%%/templates/el/refuse.txt
837
%%MMDIR%%/templates/el/roster.html
838
%%MMDIR%%/templates/el/subauth.txt
839
%%MMDIR%%/templates/el/subscribe.html
840
%%MMDIR%%/templates/el/subscribeack.txt
841
%%MMDIR%%/templates/el/unsub.txt
842
%%MMDIR%%/templates/el/unsubauth.txt
843
%%MMDIR%%/templates/el/userpass.txt
844
%%MMDIR%%/templates/el/verify.txt
845
%%MMDIR%%/templates/en/admindbdetails.html
846
%%MMDIR%%/templates/en/admindbpreamble.html
847
%%MMDIR%%/templates/en/admindbsummary.html
848
%%MMDIR%%/templates/en/adminsubscribeack.txt
849
%%MMDIR%%/templates/en/adminunsubscribeack.txt
850
%%MMDIR%%/templates/en/admlogin.html
851
%%MMDIR%%/templates/en/approve.txt
852
%%MMDIR%%/templates/en/archidxentry.html
853
%%MMDIR%%/templates/en/archidxfoot.html
854
%%MMDIR%%/templates/en/archidxhead.html
855
%%MMDIR%%/templates/en/archlistend.html
856
%%MMDIR%%/templates/en/archliststart.html
857
%%MMDIR%%/templates/en/archtoc.html
858
%%MMDIR%%/templates/en/archtocentry.html
859
%%MMDIR%%/templates/en/archtocnombox.html
860
%%MMDIR%%/templates/en/article.html
861
%%MMDIR%%/templates/en/bounce.txt
862
%%MMDIR%%/templates/en/checkdbs.txt
863
%%MMDIR%%/templates/en/convert.txt
864
%%MMDIR%%/templates/en/cronpass.txt
865
%%MMDIR%%/templates/en/disabled.txt
866
%%MMDIR%%/templates/en/emptyarchive.html
867
%%MMDIR%%/templates/en/headfoot.html
868
%%MMDIR%%/templates/en/help.txt
869
%%MMDIR%%/templates/en/invite.txt
870
%%MMDIR%%/templates/en/listinfo.html
871
%%MMDIR%%/templates/en/masthead.txt
872
%%MMDIR%%/templates/en/newlist.txt
873
%%MMDIR%%/templates/en/nomoretoday.txt
874
%%MMDIR%%/templates/en/options.html
875
%%MMDIR%%/templates/en/postack.txt
876
%%MMDIR%%/templates/en/postauth.txt
877
%%MMDIR%%/templates/en/postheld.txt
878
%%MMDIR%%/templates/en/private.html
879
%%MMDIR%%/templates/en/probe.txt
880
%%MMDIR%%/templates/en/refuse.txt
881
%%MMDIR%%/templates/en/roster.html
882
%%MMDIR%%/templates/en/subauth.txt
883
%%MMDIR%%/templates/en/subscribe.html
884
%%MMDIR%%/templates/en/subscribeack.txt
885
%%MMDIR%%/templates/en/unsub.txt
886
%%MMDIR%%/templates/en/unsubauth.txt
887
%%MMDIR%%/templates/en/userpass.txt
888
%%MMDIR%%/templates/en/verify.txt
889
%%MMDIR%%/templates/es/admindbdetails.html
890
%%MMDIR%%/templates/es/admindbpreamble.html
891
%%MMDIR%%/templates/es/admindbsummary.html
892
%%MMDIR%%/templates/es/adminsubscribeack.txt
893
%%MMDIR%%/templates/es/adminunsubscribeack.txt
894
%%MMDIR%%/templates/es/admlogin.html
895
%%MMDIR%%/templates/es/approve.txt
896
%%MMDIR%%/templates/es/archidxentry.html
897
%%MMDIR%%/templates/es/archidxfoot.html
898
%%MMDIR%%/templates/es/archidxhead.html
899
%%MMDIR%%/templates/es/archlistend.html
900
%%MMDIR%%/templates/es/archliststart.html
901
%%MMDIR%%/templates/es/archtoc.html
902
%%MMDIR%%/templates/es/archtocentry.html
903
%%MMDIR%%/templates/es/archtocnombox.html
904
%%MMDIR%%/templates/es/article.html
905
%%MMDIR%%/templates/es/bounce.txt
906
%%MMDIR%%/templates/es/checkdbs.txt
907
%%MMDIR%%/templates/es/convert.txt
908
%%MMDIR%%/templates/es/cronpass.txt
909
%%MMDIR%%/templates/es/disabled.txt
910
%%MMDIR%%/templates/es/emptyarchive.html
911
%%MMDIR%%/templates/es/handle_opts.html
912
%%MMDIR%%/templates/es/headfoot.html
913
%%MMDIR%%/templates/es/help.txt
914
%%MMDIR%%/templates/es/invite.txt
915
%%MMDIR%%/templates/es/listinfo.html
916
%%MMDIR%%/templates/es/masthead.txt
917
%%MMDIR%%/templates/es/newlist.txt
918
%%MMDIR%%/templates/es/nomoretoday.txt
919
%%MMDIR%%/templates/es/options.html
920
%%MMDIR%%/templates/es/postack.txt
921
%%MMDIR%%/templates/es/postauth.txt
922
%%MMDIR%%/templates/es/postheld.txt
923
%%MMDIR%%/templates/es/private.html
924
%%MMDIR%%/templates/es/probe.txt
925
%%MMDIR%%/templates/es/refuse.txt
926
%%MMDIR%%/templates/es/roster.html
927
%%MMDIR%%/templates/es/subauth.txt
928
%%MMDIR%%/templates/es/subscribe.html
929
%%MMDIR%%/templates/es/subscribeack.txt
930
%%MMDIR%%/templates/es/unsub.txt
931
%%MMDIR%%/templates/es/unsubauth.txt
932
%%MMDIR%%/templates/es/userpass.txt
933
%%MMDIR%%/templates/es/verify.txt
934
%%MMDIR%%/templates/et/admindbdetails.html
935
%%MMDIR%%/templates/et/admindbpreamble.html
936
%%MMDIR%%/templates/et/admindbsummary.html
937
%%MMDIR%%/templates/et/adminsubscribeack.txt
938
%%MMDIR%%/templates/et/adminunsubscribeack.txt
939
%%MMDIR%%/templates/et/admlogin.html
940
%%MMDIR%%/templates/et/approve.txt
941
%%MMDIR%%/templates/et/article.html
942
%%MMDIR%%/templates/et/bounce.txt
943
%%MMDIR%%/templates/et/checkdbs.txt
944
%%MMDIR%%/templates/et/convert.txt
945
%%MMDIR%%/templates/et/cronpass.txt
946
%%MMDIR%%/templates/et/disabled.txt
947
%%MMDIR%%/templates/et/emptyarchive.html
948
%%MMDIR%%/templates/et/headfoot.html
949
%%MMDIR%%/templates/et/help.txt
950
%%MMDIR%%/templates/et/invite.txt
951
%%MMDIR%%/templates/et/listinfo.html
952
%%MMDIR%%/templates/et/masthead.txt
953
%%MMDIR%%/templates/et/newlist.txt
954
%%MMDIR%%/templates/et/options.html
955
%%MMDIR%%/templates/et/postack.txt
956
%%MMDIR%%/templates/et/postauth.txt
957
%%MMDIR%%/templates/et/postheld.txt
958
%%MMDIR%%/templates/et/private.html
959
%%MMDIR%%/templates/et/refuse.txt
960
%%MMDIR%%/templates/et/roster.html
961
%%MMDIR%%/templates/et/subauth.txt
962
%%MMDIR%%/templates/et/subscribe.html
963
%%MMDIR%%/templates/et/subscribeack.txt
964
%%MMDIR%%/templates/et/unsub.txt
965
%%MMDIR%%/templates/et/unsubauth.txt
966
%%MMDIR%%/templates/et/userpass.txt
967
%%MMDIR%%/templates/et/verify.txt
968
%%MMDIR%%/templates/eu/admindbdetails.html
969
%%MMDIR%%/templates/eu/admindbpreamble.html
970
%%MMDIR%%/templates/eu/admindbsummary.html
971
%%MMDIR%%/templates/eu/adminsubscribeack.txt
972
%%MMDIR%%/templates/eu/adminunsubscribeack.txt
973
%%MMDIR%%/templates/eu/admlogin.html
974
%%MMDIR%%/templates/eu/approve.txt
975
%%MMDIR%%/templates/eu/archidxentry.html
976
%%MMDIR%%/templates/eu/archidxfoot.html
977
%%MMDIR%%/templates/eu/archidxhead.html
978
%%MMDIR%%/templates/eu/archlistend.html
979
%%MMDIR%%/templates/eu/archliststart.html
980
%%MMDIR%%/templates/eu/archtoc.html
981
%%MMDIR%%/templates/eu/archtocentry.html
982
%%MMDIR%%/templates/eu/article.html
983
%%MMDIR%%/templates/eu/bounce.txt
984
%%MMDIR%%/templates/eu/checkdbs.txt
985
%%MMDIR%%/templates/eu/convert.txt
986
%%MMDIR%%/templates/eu/cronpass.txt
987
%%MMDIR%%/templates/eu/disabled.txt
988
%%MMDIR%%/templates/eu/emptyarchive.html
989
%%MMDIR%%/templates/eu/headfoot.html
990
%%MMDIR%%/templates/eu/help.txt
991
%%MMDIR%%/templates/eu/invite.txt
992
%%MMDIR%%/templates/eu/listinfo.html
993
%%MMDIR%%/templates/eu/masthead.txt
994
%%MMDIR%%/templates/eu/newlist.txt
995
%%MMDIR%%/templates/eu/nomoretoday.txt
996
%%MMDIR%%/templates/eu/options.html
997
%%MMDIR%%/templates/eu/postack.txt
998
%%MMDIR%%/templates/eu/postauth.txt
999
%%MMDIR%%/templates/eu/postheld.txt
1000
%%MMDIR%%/templates/eu/private.html
1001
%%MMDIR%%/templates/eu/refuse.txt
1002
%%MMDIR%%/templates/eu/roster.html
1003
%%MMDIR%%/templates/eu/subauth.txt
1004
%%MMDIR%%/templates/eu/subscribe.html
1005
%%MMDIR%%/templates/eu/subscribeack.txt
1006
%%MMDIR%%/templates/eu/unsub.txt
1007
%%MMDIR%%/templates/eu/unsubauth.txt
1008
%%MMDIR%%/templates/eu/userpass.txt
1009
%%MMDIR%%/templates/eu/verify.txt
1010
%%MMDIR%%/templates/fi/admindbdetails.html
1011
%%MMDIR%%/templates/fi/admindbpreamble.html
1012
%%MMDIR%%/templates/fi/admindbsummary.html
1013
%%MMDIR%%/templates/fi/adminsubscribeack.txt
1014
%%MMDIR%%/templates/fi/adminunsubscribeack.txt
1015
%%MMDIR%%/templates/fi/admlogin.html
1016
%%MMDIR%%/templates/fi/approve.txt
1017
%%MMDIR%%/templates/fi/article.html
1018
%%MMDIR%%/templates/fi/bounce.txt
1019
%%MMDIR%%/templates/fi/checkdbs.txt
1020
%%MMDIR%%/templates/fi/convert.txt
1021
%%MMDIR%%/templates/fi/cronpass.txt
1022
%%MMDIR%%/templates/fi/disabled.txt
1023
%%MMDIR%%/templates/fi/headfoot.html
1024
%%MMDIR%%/templates/fi/help.txt
1025
%%MMDIR%%/templates/fi/listinfo.html
1026
%%MMDIR%%/templates/fi/masthead.txt
1027
%%MMDIR%%/templates/fi/newlist.txt
1028
%%MMDIR%%/templates/fi/options.html
1029
%%MMDIR%%/templates/fi/postack.txt
1030
%%MMDIR%%/templates/fi/postauth.txt
1031
%%MMDIR%%/templates/fi/postheld.txt
1032
%%MMDIR%%/templates/fi/private.html
1033
%%MMDIR%%/templates/fi/refuse.txt
1034
%%MMDIR%%/templates/fi/roster.html
1035
%%MMDIR%%/templates/fi/subauth.txt
1036
%%MMDIR%%/templates/fi/subscribe.html
1037
%%MMDIR%%/templates/fi/subscribeack.txt
1038
%%MMDIR%%/templates/fi/unsub.txt
1039
%%MMDIR%%/templates/fi/unsubauth.txt
1040
%%MMDIR%%/templates/fi/userpass.txt
1041
%%MMDIR%%/templates/fi/verify.txt
1042
%%MMDIR%%/templates/fr/admindbdetails.html
1043
%%MMDIR%%/templates/fr/admindbpreamble.html
1044
%%MMDIR%%/templates/fr/admindbsummary.html
1045
%%MMDIR%%/templates/fr/adminsubscribeack.txt
1046
%%MMDIR%%/templates/fr/adminunsubscribeack.txt
1047
%%MMDIR%%/templates/fr/admlogin.html
1048
%%MMDIR%%/templates/fr/approve.txt
1049
%%MMDIR%%/templates/fr/archidxentry.html
1050
%%MMDIR%%/templates/fr/archidxfoot.html
1051
%%MMDIR%%/templates/fr/archidxhead.html
1052
%%MMDIR%%/templates/fr/archlistend.html
1053
%%MMDIR%%/templates/fr/archliststart.html
1054
%%MMDIR%%/templates/fr/archtoc.html
1055
%%MMDIR%%/templates/fr/archtocentry.html
1056
%%MMDIR%%/templates/fr/archtocnombox.html
1057
%%MMDIR%%/templates/fr/article.html
1058
%%MMDIR%%/templates/fr/bounce.txt
1059
%%MMDIR%%/templates/fr/checkdbs.txt
1060
%%MMDIR%%/templates/fr/convert.txt
1061
%%MMDIR%%/templates/fr/cronpass.txt
1062
%%MMDIR%%/templates/fr/disabled.txt
1063
%%MMDIR%%/templates/fr/emptyarchive.html
1064
%%MMDIR%%/templates/fr/handle_opts.html
1065
%%MMDIR%%/templates/fr/headfoot.html
1066
%%MMDIR%%/templates/fr/help.txt
1067
%%MMDIR%%/templates/fr/invite.txt
1068
%%MMDIR%%/templates/fr/listinfo.html
1069
%%MMDIR%%/templates/fr/masthead.txt
1070
%%MMDIR%%/templates/fr/newlist.txt
1071
%%MMDIR%%/templates/fr/nomoretoday.txt
1072
%%MMDIR%%/templates/fr/options.html
1073
%%MMDIR%%/templates/fr/postack.txt
1074
%%MMDIR%%/templates/fr/postauth.txt
1075
%%MMDIR%%/templates/fr/postheld.txt
1076
%%MMDIR%%/templates/fr/private.html
1077
%%MMDIR%%/templates/fr/probe.txt
1078
%%MMDIR%%/templates/fr/refuse.txt
1079
%%MMDIR%%/templates/fr/roster.html
1080
%%MMDIR%%/templates/fr/subauth.txt
1081
%%MMDIR%%/templates/fr/subscribe.html
1082
%%MMDIR%%/templates/fr/subscribeack.txt
1083
%%MMDIR%%/templates/fr/unsub.txt
1084
%%MMDIR%%/templates/fr/unsubauth.txt
1085
%%MMDIR%%/templates/fr/userpass.txt
1086
%%MMDIR%%/templates/fr/verify.txt
1087
%%MMDIR%%/templates/gl/admindbdetails.html
1088
%%MMDIR%%/templates/gl/admindbpreamble.html
1089
%%MMDIR%%/templates/gl/admindbsummary.html
1090
%%MMDIR%%/templates/gl/adminsubscribeack.txt
1091
%%MMDIR%%/templates/gl/adminunsubscribeack.txt
1092
%%MMDIR%%/templates/gl/admlogin.html
1093
%%MMDIR%%/templates/gl/approve.txt
1094
%%MMDIR%%/templates/gl/archidxentry.html
1095
%%MMDIR%%/templates/gl/archidxfoot.html
1096
%%MMDIR%%/templates/gl/archidxhead.html
1097
%%MMDIR%%/templates/gl/archlistend.html
1098
%%MMDIR%%/templates/gl/archliststart.html
1099
%%MMDIR%%/templates/gl/archtoc.html
1100
%%MMDIR%%/templates/gl/archtocentry.html
1101
%%MMDIR%%/templates/gl/article.html
1102
%%MMDIR%%/templates/gl/bounce.txt
1103
%%MMDIR%%/templates/gl/checkdbs.txt
1104
%%MMDIR%%/templates/gl/convert.txt
1105
%%MMDIR%%/templates/gl/cronpass.txt
1106
%%MMDIR%%/templates/gl/disabled.txt
1107
%%MMDIR%%/templates/gl/emptyarchive.html
1108
%%MMDIR%%/templates/gl/handle_opts.html
1109
%%MMDIR%%/templates/gl/headfoot.html
1110
%%MMDIR%%/templates/gl/help.txt
1111
%%MMDIR%%/templates/gl/invite.txt
1112
%%MMDIR%%/templates/gl/listinfo.html
1113
%%MMDIR%%/templates/gl/masthead.txt
1114
%%MMDIR%%/templates/gl/newlist.txt
1115
%%MMDIR%%/templates/gl/nomoretoday.txt
1116
%%MMDIR%%/templates/gl/options.html
1117
%%MMDIR%%/templates/gl/postack.txt
1118
%%MMDIR%%/templates/gl/postauth.txt
1119
%%MMDIR%%/templates/gl/postheld.txt
1120
%%MMDIR%%/templates/gl/private.html
1121
%%MMDIR%%/templates/gl/refuse.txt
1122
%%MMDIR%%/templates/gl/roster.html
1123
%%MMDIR%%/templates/gl/subauth.txt
1124
%%MMDIR%%/templates/gl/subscribe.html
1125
%%MMDIR%%/templates/gl/subscribeack.txt
1126
%%MMDIR%%/templates/gl/unsub.txt
1127
%%MMDIR%%/templates/gl/unsubauth.txt
1128
%%MMDIR%%/templates/gl/userpass.txt
1129
%%MMDIR%%/templates/gl/verify.txt
1130
%%MMDIR%%/templates/he/admindbdetails.html
1131
%%MMDIR%%/templates/he/admindbpreamble.html
1132
%%MMDIR%%/templates/he/admindbsummary.html
1133
%%MMDIR%%/templates/he/adminsubscribeack.txt
1134
%%MMDIR%%/templates/he/adminunsubscribeack.txt
1135
%%MMDIR%%/templates/he/admlogin.html
1136
%%MMDIR%%/templates/he/approve.txt
1137
%%MMDIR%%/templates/he/archidxentry.html
1138
%%MMDIR%%/templates/he/archidxfoot.html
1139
%%MMDIR%%/templates/he/archidxhead.html
1140
%%MMDIR%%/templates/he/archlistend.html
1141
%%MMDIR%%/templates/he/archliststart.html
1142
%%MMDIR%%/templates/he/archtoc.html
1143
%%MMDIR%%/templates/he/archtocentry.html
1144
%%MMDIR%%/templates/he/archtocnombox.html
1145
%%MMDIR%%/templates/he/article.html
1146
%%MMDIR%%/templates/he/bounce.txt
1147
%%MMDIR%%/templates/he/checkdbs.txt
1148
%%MMDIR%%/templates/he/convert.txt
1149
%%MMDIR%%/templates/he/cronpass.txt
1150
%%MMDIR%%/templates/he/disabled.txt
1151
%%MMDIR%%/templates/he/emptyarchive.html
1152
%%MMDIR%%/templates/he/headfoot.html
1153
%%MMDIR%%/templates/he/help.txt
1154
%%MMDIR%%/templates/he/invite.txt
1155
%%MMDIR%%/templates/he/listinfo.html
1156
%%MMDIR%%/templates/he/masthead.txt
1157
%%MMDIR%%/templates/he/newlist.txt
1158
%%MMDIR%%/templates/he/nomoretoday.txt
1159
%%MMDIR%%/templates/he/options.html
1160
%%MMDIR%%/templates/he/postack.txt
1161
%%MMDIR%%/templates/he/postauth.txt
1162
%%MMDIR%%/templates/he/postheld.txt
1163
%%MMDIR%%/templates/he/private.html
1164
%%MMDIR%%/templates/he/probe.txt
1165
%%MMDIR%%/templates/he/refuse.txt
1166
%%MMDIR%%/templates/he/roster.html
1167
%%MMDIR%%/templates/he/subauth.txt
1168
%%MMDIR%%/templates/he/subscribe.html
1169
%%MMDIR%%/templates/he/subscribeack.txt
1170
%%MMDIR%%/templates/he/unsub.txt
1171
%%MMDIR%%/templates/he/unsubauth.txt
1172
%%MMDIR%%/templates/he/userpass.txt
1173
%%MMDIR%%/templates/he/verify.txt
1174
%%MMDIR%%/templates/hr/admindbdetails.html
1175
%%MMDIR%%/templates/hr/admindbpreamble.html
1176
%%MMDIR%%/templates/hr/admindbsummary.html
1177
%%MMDIR%%/templates/hr/adminsubscribeack.txt
1178
%%MMDIR%%/templates/hr/adminunsubscribeack.txt
1179
%%MMDIR%%/templates/hr/admlogin.html
1180
%%MMDIR%%/templates/hr/approve.txt
1181
%%MMDIR%%/templates/hr/archidxentry.html
1182
%%MMDIR%%/templates/hr/archidxfoot.html
1183
%%MMDIR%%/templates/hr/archidxhead.html
1184
%%MMDIR%%/templates/hr/archlistend.html
1185
%%MMDIR%%/templates/hr/archliststart.html
1186
%%MMDIR%%/templates/hr/archtoc.html
1187
%%MMDIR%%/templates/hr/archtocentry.html
1188
%%MMDIR%%/templates/hr/article.html
1189
%%MMDIR%%/templates/hr/bounce.txt
1190
%%MMDIR%%/templates/hr/checkdbs.txt
1191
%%MMDIR%%/templates/hr/convert.txt
1192
%%MMDIR%%/templates/hr/cronpass.txt
1193
%%MMDIR%%/templates/hr/disabled.txt
1194
%%MMDIR%%/templates/hr/emptyarchive.html
1195
%%MMDIR%%/templates/hr/headfoot.html
1196
%%MMDIR%%/templates/hr/help.txt
1197
%%MMDIR%%/templates/hr/invite.txt
1198
%%MMDIR%%/templates/hr/listinfo.html
1199
%%MMDIR%%/templates/hr/masthead.txt
1200
%%MMDIR%%/templates/hr/newlist.txt
1201
%%MMDIR%%/templates/hr/nomoretoday.txt
1202
%%MMDIR%%/templates/hr/options.html
1203
%%MMDIR%%/templates/hr/postack.txt
1204
%%MMDIR%%/templates/hr/postauth.txt
1205
%%MMDIR%%/templates/hr/postheld.txt
1206
%%MMDIR%%/templates/hr/private.html
1207
%%MMDIR%%/templates/hr/refuse.txt
1208
%%MMDIR%%/templates/hr/roster.html
1209
%%MMDIR%%/templates/hr/subauth.txt
1210
%%MMDIR%%/templates/hr/subscribe.html
1211
%%MMDIR%%/templates/hr/subscribeack.txt
1212
%%MMDIR%%/templates/hr/unsub.txt
1213
%%MMDIR%%/templates/hr/unsubauth.txt
1214
%%MMDIR%%/templates/hr/userpass.txt
1215
%%MMDIR%%/templates/hr/verify.txt
1216
%%MMDIR%%/templates/hu/admindbdetails.html
1217
%%MMDIR%%/templates/hu/admindbpreamble.html
1218
%%MMDIR%%/templates/hu/admindbsummary.html
1219
%%MMDIR%%/templates/hu/adminsubscribeack.txt
1220
%%MMDIR%%/templates/hu/adminunsubscribeack.txt
1221
%%MMDIR%%/templates/hu/admlogin.html
1222
%%MMDIR%%/templates/hu/approve.txt
1223
%%MMDIR%%/templates/hu/archidxentry.html
1224
%%MMDIR%%/templates/hu/archidxfoot.html
1225
%%MMDIR%%/templates/hu/archidxhead.html
1226
%%MMDIR%%/templates/hu/archlistend.html
1227
%%MMDIR%%/templates/hu/archliststart.html
1228
%%MMDIR%%/templates/hu/archtoc.html
1229
%%MMDIR%%/templates/hu/archtocentry.html
1230
%%MMDIR%%/templates/hu/article.html
1231
%%MMDIR%%/templates/hu/bounce.txt
1232
%%MMDIR%%/templates/hu/checkdbs.txt
1233
%%MMDIR%%/templates/hu/convert.txt
1234
%%MMDIR%%/templates/hu/cronpass.txt
1235
%%MMDIR%%/templates/hu/disabled.txt
1236
%%MMDIR%%/templates/hu/emptyarchive.html
1237
%%MMDIR%%/templates/hu/headfoot.html
1238
%%MMDIR%%/templates/hu/help.txt
1239
%%MMDIR%%/templates/hu/illik.html
1240
%%MMDIR%%/templates/hu/invite.txt
1241
%%MMDIR%%/templates/hu/listinfo.html
1242
%%MMDIR%%/templates/hu/masthead.txt
1243
%%MMDIR%%/templates/hu/newlist.txt
1244
%%MMDIR%%/templates/hu/nomoretoday.txt
1245
%%MMDIR%%/templates/hu/options.html
1246
%%MMDIR%%/templates/hu/postack.txt
1247
%%MMDIR%%/templates/hu/postauth.txt
1248
%%MMDIR%%/templates/hu/postheld.txt
1249
%%MMDIR%%/templates/hu/private.html
1250
%%MMDIR%%/templates/hu/probe.txt
1251
%%MMDIR%%/templates/hu/refuse.txt
1252
%%MMDIR%%/templates/hu/roster.html
1253
%%MMDIR%%/templates/hu/subauth.txt
1254
%%MMDIR%%/templates/hu/subscribe.html
1255
%%MMDIR%%/templates/hu/subscribeack.txt
1256
%%MMDIR%%/templates/hu/unsub.txt
1257
%%MMDIR%%/templates/hu/unsubauth.txt
1258
%%MMDIR%%/templates/hu/userpass.txt
1259
%%MMDIR%%/templates/hu/verify.txt
1260
%%MMDIR%%/templates/ia/admindbdetails.html
1261
%%MMDIR%%/templates/ia/admindbpreamble.html
1262
%%MMDIR%%/templates/ia/admindbsummary.html
1263
%%MMDIR%%/templates/ia/adminsubscribeack.txt
1264
%%MMDIR%%/templates/ia/adminunsubscribeack.txt
1265
%%MMDIR%%/templates/ia/admlogin.html
1266
%%MMDIR%%/templates/ia/approve.txt
1267
%%MMDIR%%/templates/ia/archidxentry.html
1268
%%MMDIR%%/templates/ia/archidxfoot.html
1269
%%MMDIR%%/templates/ia/archidxhead.html
1270
%%MMDIR%%/templates/ia/archlistend.html
1271
%%MMDIR%%/templates/ia/archliststart.html
1272
%%MMDIR%%/templates/ia/archtoc.html
1273
%%MMDIR%%/templates/ia/archtocentry.html
1274
%%MMDIR%%/templates/ia/archtocnombox.html
1275
%%MMDIR%%/templates/ia/article.html
1276
%%MMDIR%%/templates/ia/bounce.txt
1277
%%MMDIR%%/templates/ia/checkdbs.txt
1278
%%MMDIR%%/templates/ia/convert.txt
1279
%%MMDIR%%/templates/ia/cronpass.txt
1280
%%MMDIR%%/templates/ia/disabled.txt
1281
%%MMDIR%%/templates/ia/emptyarchive.html
1282
%%MMDIR%%/templates/ia/headfoot.html
1283
%%MMDIR%%/templates/ia/help.txt
1284
%%MMDIR%%/templates/ia/invite.txt
1285
%%MMDIR%%/templates/ia/listinfo.html
1286
%%MMDIR%%/templates/ia/masthead.txt
1287
%%MMDIR%%/templates/ia/newlist.txt
1288
%%MMDIR%%/templates/ia/nomoretoday.txt
1289
%%MMDIR%%/templates/ia/options.html
1290
%%MMDIR%%/templates/ia/postack.txt
1291
%%MMDIR%%/templates/ia/postauth.txt
1292
%%MMDIR%%/templates/ia/postheld.txt
1293
%%MMDIR%%/templates/ia/private.html
1294
%%MMDIR%%/templates/ia/probe.txt
1295
%%MMDIR%%/templates/ia/refuse.txt
1296
%%MMDIR%%/templates/ia/roster.html
1297
%%MMDIR%%/templates/ia/subauth.txt
1298
%%MMDIR%%/templates/ia/subscribe.html
1299
%%MMDIR%%/templates/ia/subscribeack.txt
1300
%%MMDIR%%/templates/ia/unsub.txt
1301
%%MMDIR%%/templates/ia/unsubauth.txt
1302
%%MMDIR%%/templates/ia/userpass.txt
1303
%%MMDIR%%/templates/ia/verify.txt
1304
%%MMDIR%%/templates/it/admindbdetails.html
1305
%%MMDIR%%/templates/it/admindbpreamble.html
1306
%%MMDIR%%/templates/it/admindbsummary.html
1307
%%MMDIR%%/templates/it/adminsubscribeack.txt
1308
%%MMDIR%%/templates/it/adminunsubscribeack.txt
1309
%%MMDIR%%/templates/it/admlogin.html
1310
%%MMDIR%%/templates/it/approve.txt
1311
%%MMDIR%%/templates/it/archidxentry.html
1312
%%MMDIR%%/templates/it/archidxfoot.html
1313
%%MMDIR%%/templates/it/archidxhead.html
1314
%%MMDIR%%/templates/it/archlistend.html
1315
%%MMDIR%%/templates/it/archliststart.html
1316
%%MMDIR%%/templates/it/archtoc.html
1317
%%MMDIR%%/templates/it/archtocentry.html
1318
%%MMDIR%%/templates/it/archtocnombox.html
1319
%%MMDIR%%/templates/it/article.html
1320
%%MMDIR%%/templates/it/bounce.txt
1321
%%MMDIR%%/templates/it/checkdbs.txt
1322
%%MMDIR%%/templates/it/convert.txt
1323
%%MMDIR%%/templates/it/cronpass.txt
1324
%%MMDIR%%/templates/it/disabled.txt
1325
%%MMDIR%%/templates/it/emptyarchive.html
1326
%%MMDIR%%/templates/it/headfoot.html
1327
%%MMDIR%%/templates/it/help.txt
1328
%%MMDIR%%/templates/it/invite.txt
1329
%%MMDIR%%/templates/it/listinfo.html
1330
%%MMDIR%%/templates/it/masthead.txt
1331
%%MMDIR%%/templates/it/newlist.txt
1332
%%MMDIR%%/templates/it/nomoretoday.txt
1333
%%MMDIR%%/templates/it/options.html
1334
%%MMDIR%%/templates/it/postack.txt
1335
%%MMDIR%%/templates/it/postauth.txt
1336
%%MMDIR%%/templates/it/postheld.txt
1337
%%MMDIR%%/templates/it/private.html
1338
%%MMDIR%%/templates/it/probe.txt
1339
%%MMDIR%%/templates/it/refuse.txt
1340
%%MMDIR%%/templates/it/roster.html
1341
%%MMDIR%%/templates/it/subauth.txt
1342
%%MMDIR%%/templates/it/subscribe.html
1343
%%MMDIR%%/templates/it/subscribeack.txt
1344
%%MMDIR%%/templates/it/unsub.txt
1345
%%MMDIR%%/templates/it/unsubauth.txt
1346
%%MMDIR%%/templates/it/userpass.txt
1347
%%MMDIR%%/templates/it/verify.txt
1348
%%MMDIR%%/templates/ja/admindbdetails.html
1349
%%MMDIR%%/templates/ja/admindbpreamble.html
1350
%%MMDIR%%/templates/ja/admindbsummary.html
1351
%%MMDIR%%/templates/ja/adminsubscribeack.txt
1352
%%MMDIR%%/templates/ja/adminunsubscribeack.txt
1353
%%MMDIR%%/templates/ja/admlogin.html
1354
%%MMDIR%%/templates/ja/approve.txt
1355
%%MMDIR%%/templates/ja/archidxentry.html
1356
%%MMDIR%%/templates/ja/archidxfoot.html
1357
%%MMDIR%%/templates/ja/archidxhead.html
1358
%%MMDIR%%/templates/ja/archlistend.html
1359
%%MMDIR%%/templates/ja/archliststart.html
1360
%%MMDIR%%/templates/ja/archtoc.html
1361
%%MMDIR%%/templates/ja/archtocentry.html
1362
%%MMDIR%%/templates/ja/archtocnombox.html
1363
%%MMDIR%%/templates/ja/article.html
1364
%%MMDIR%%/templates/ja/bounce.txt
1365
%%MMDIR%%/templates/ja/checkdbs.txt
1366
%%MMDIR%%/templates/ja/convert.txt
1367
%%MMDIR%%/templates/ja/cronpass.txt
1368
%%MMDIR%%/templates/ja/disabled.txt
1369
%%MMDIR%%/templates/ja/emptyarchive.html
1370
%%MMDIR%%/templates/ja/headfoot.html
1371
%%MMDIR%%/templates/ja/help.txt
1372
%%MMDIR%%/templates/ja/invite.txt
1373
%%MMDIR%%/templates/ja/listinfo.html
1374
%%MMDIR%%/templates/ja/masthead.txt
1375
%%MMDIR%%/templates/ja/newlist.txt
1376
%%MMDIR%%/templates/ja/nomoretoday.txt
1377
%%MMDIR%%/templates/ja/options.html
1378
%%MMDIR%%/templates/ja/postack.txt
1379
%%MMDIR%%/templates/ja/postauth.txt
1380
%%MMDIR%%/templates/ja/postheld.txt
1381
%%MMDIR%%/templates/ja/private.html
1382
%%MMDIR%%/templates/ja/probe.txt
1383
%%MMDIR%%/templates/ja/refuse.txt
1384
%%MMDIR%%/templates/ja/roster.html
1385
%%MMDIR%%/templates/ja/subauth.txt
1386
%%MMDIR%%/templates/ja/subscribe.html
1387
%%MMDIR%%/templates/ja/subscribeack.txt
1388
%%MMDIR%%/templates/ja/unsub.txt
1389
%%MMDIR%%/templates/ja/unsubauth.txt
1390
%%MMDIR%%/templates/ja/userpass.txt
1391
%%MMDIR%%/templates/ja/verify.txt
1392
%%MMDIR%%/templates/ko/admindbdetails.html
1393
%%MMDIR%%/templates/ko/admindbpreamble.html
1394
%%MMDIR%%/templates/ko/admindbsummary.html
1395
%%MMDIR%%/templates/ko/adminsubscribeack.txt
1396
%%MMDIR%%/templates/ko/adminunsubscribeack.txt
1397
%%MMDIR%%/templates/ko/admlogin.html
1398
%%MMDIR%%/templates/ko/approve.txt
1399
%%MMDIR%%/templates/ko/article.html
1400
%%MMDIR%%/templates/ko/bounce.txt
1401
%%MMDIR%%/templates/ko/checkdbs.txt
1402
%%MMDIR%%/templates/ko/convert.txt
1403
%%MMDIR%%/templates/ko/cronpass.txt
1404
%%MMDIR%%/templates/ko/disabled.txt
1405
%%MMDIR%%/templates/ko/emptyarchive.html
1406
%%MMDIR%%/templates/ko/headfoot.html
1407
%%MMDIR%%/templates/ko/help.txt
1408
%%MMDIR%%/templates/ko/invite.txt
1409
%%MMDIR%%/templates/ko/listinfo.html
1410
%%MMDIR%%/templates/ko/masthead.txt
1411
%%MMDIR%%/templates/ko/newlist.txt
1412
%%MMDIR%%/templates/ko/options.html
1413
%%MMDIR%%/templates/ko/postack.txt
1414
%%MMDIR%%/templates/ko/postauth.txt
1415
%%MMDIR%%/templates/ko/postheld.txt
1416
%%MMDIR%%/templates/ko/private.html
1417
%%MMDIR%%/templates/ko/refuse.txt
1418
%%MMDIR%%/templates/ko/roster.html
1419
%%MMDIR%%/templates/ko/subauth.txt
1420
%%MMDIR%%/templates/ko/subscribe.html
1421
%%MMDIR%%/templates/ko/subscribeack.txt
1422
%%MMDIR%%/templates/ko/unsub.txt
1423
%%MMDIR%%/templates/ko/unsubauth.txt
1424
%%MMDIR%%/templates/ko/userpass.txt
1425
%%MMDIR%%/templates/ko/verify.txt
1426
%%MMDIR%%/templates/lt/admindbdetails.html
1427
%%MMDIR%%/templates/lt/admindbpreamble.html
1428
%%MMDIR%%/templates/lt/admindbsummary.html
1429
%%MMDIR%%/templates/lt/adminsubscribeack.txt
1430
%%MMDIR%%/templates/lt/adminunsubscribeack.txt
1431
%%MMDIR%%/templates/lt/admlogin.html
1432
%%MMDIR%%/templates/lt/approve.txt
1433
%%MMDIR%%/templates/lt/archidxentry.html
1434
%%MMDIR%%/templates/lt/archidxfoot.html
1435
%%MMDIR%%/templates/lt/archidxhead.html
1436
%%MMDIR%%/templates/lt/archlistend.html
1437
%%MMDIR%%/templates/lt/archliststart.html
1438
%%MMDIR%%/templates/lt/archtoc.html
1439
%%MMDIR%%/templates/lt/archtocentry.html
1440
%%MMDIR%%/templates/lt/article.html
1441
%%MMDIR%%/templates/lt/bounce.txt
1442
%%MMDIR%%/templates/lt/checkdbs.txt
1443
%%MMDIR%%/templates/lt/convert.txt
1444
%%MMDIR%%/templates/lt/cronpass.txt
1445
%%MMDIR%%/templates/lt/disabled.txt
1446
%%MMDIR%%/templates/lt/emptyarchive.html
1447
%%MMDIR%%/templates/lt/headfoot.html
1448
%%MMDIR%%/templates/lt/help.txt
1449
%%MMDIR%%/templates/lt/invite.txt
1450
%%MMDIR%%/templates/lt/listinfo.html
1451
%%MMDIR%%/templates/lt/masthead.txt
1452
%%MMDIR%%/templates/lt/newlist.txt
1453
%%MMDIR%%/templates/lt/nomoretoday.txt
1454
%%MMDIR%%/templates/lt/options.html
1455
%%MMDIR%%/templates/lt/postack.txt
1456
%%MMDIR%%/templates/lt/postauth.txt
1457
%%MMDIR%%/templates/lt/postheld.txt
1458
%%MMDIR%%/templates/lt/private.html
1459
%%MMDIR%%/templates/lt/refuse.txt
1460
%%MMDIR%%/templates/lt/roster.html
1461
%%MMDIR%%/templates/lt/subauth.txt
1462
%%MMDIR%%/templates/lt/subscribe.html
1463
%%MMDIR%%/templates/lt/subscribeack.txt
1464
%%MMDIR%%/templates/lt/unsub.txt
1465
%%MMDIR%%/templates/lt/unsubauth.txt
1466
%%MMDIR%%/templates/lt/userpass.txt
1467
%%MMDIR%%/templates/lt/verify.txt
1468
%%MMDIR%%/templates/nl/admindbdetails.html
1469
%%MMDIR%%/templates/nl/admindbpreamble.html
1470
%%MMDIR%%/templates/nl/admindbsummary.html
1471
%%MMDIR%%/templates/nl/adminsubscribeack.txt
1472
%%MMDIR%%/templates/nl/adminunsubscribeack.txt
1473
%%MMDIR%%/templates/nl/admlogin.html
1474
%%MMDIR%%/templates/nl/approve.txt
1475
%%MMDIR%%/templates/nl/archidxentry.html
1476
%%MMDIR%%/templates/nl/archidxfoot.html
1477
%%MMDIR%%/templates/nl/archidxhead.html
1478
%%MMDIR%%/templates/nl/archlistend.html
1479
%%MMDIR%%/templates/nl/archliststart.html
1480
%%MMDIR%%/templates/nl/archtoc.html
1481
%%MMDIR%%/templates/nl/archtocentry.html
1482
%%MMDIR%%/templates/nl/archtocnombox.html
1483
%%MMDIR%%/templates/nl/article.html
1484
%%MMDIR%%/templates/nl/bounce.txt
1485
%%MMDIR%%/templates/nl/checkdbs.txt
1486
%%MMDIR%%/templates/nl/convert.txt
1487
%%MMDIR%%/templates/nl/cronpass.txt
1488
%%MMDIR%%/templates/nl/disabled.txt
1489
%%MMDIR%%/templates/nl/emptyarchive.html
1490
%%MMDIR%%/templates/nl/headfoot.html
1491
%%MMDIR%%/templates/nl/help.txt
1492
%%MMDIR%%/templates/nl/invite.txt
1493
%%MMDIR%%/templates/nl/listinfo.html
1494
%%MMDIR%%/templates/nl/masthead.txt
1495
%%MMDIR%%/templates/nl/newlist.txt
1496
%%MMDIR%%/templates/nl/nomoretoday.txt
1497
%%MMDIR%%/templates/nl/options.html
1498
%%MMDIR%%/templates/nl/postack.txt
1499
%%MMDIR%%/templates/nl/postauth.txt
1500
%%MMDIR%%/templates/nl/postheld.txt
1501
%%MMDIR%%/templates/nl/private.html
1502
%%MMDIR%%/templates/nl/probe.txt
1503
%%MMDIR%%/templates/nl/refuse.txt
1504
%%MMDIR%%/templates/nl/roster.html
1505
%%MMDIR%%/templates/nl/subauth.txt
1506
%%MMDIR%%/templates/nl/subscribe.html
1507
%%MMDIR%%/templates/nl/subscribeack.txt
1508
%%MMDIR%%/templates/nl/unsub.txt
1509
%%MMDIR%%/templates/nl/unsubauth.txt
1510
%%MMDIR%%/templates/nl/userpass.txt
1511
%%MMDIR%%/templates/nl/verify.txt
1512
%%MMDIR%%/templates/no/admindbdetails.html
1513
%%MMDIR%%/templates/no/admindbpreamble.html
1514
%%MMDIR%%/templates/no/admindbsummary.html
1515
%%MMDIR%%/templates/no/adminsubscribeack.txt
1516
%%MMDIR%%/templates/no/adminunsubscribeack.txt
1517
%%MMDIR%%/templates/no/admlogin.html
1518
%%MMDIR%%/templates/no/approve.txt
1519
%%MMDIR%%/templates/no/archidxfoot.html
1520
%%MMDIR%%/templates/no/archidxhead.html
1521
%%MMDIR%%/templates/no/archliststart.html
1522
%%MMDIR%%/templates/no/archtoc.html
1523
%%MMDIR%%/templates/no/archtocentry.html
1524
%%MMDIR%%/templates/no/archtocnombox.html
1525
%%MMDIR%%/templates/no/article.html
1526
%%MMDIR%%/templates/no/bounce.txt
1527
%%MMDIR%%/templates/no/checkdbs.txt
1528
%%MMDIR%%/templates/no/convert.txt
1529
%%MMDIR%%/templates/no/cronpass.txt
1530
%%MMDIR%%/templates/no/disabled.txt
1531
%%MMDIR%%/templates/no/emptyarchive.html
1532
%%MMDIR%%/templates/no/headfoot.html
1533
%%MMDIR%%/templates/no/help.txt
1534
%%MMDIR%%/templates/no/invite.txt
1535
%%MMDIR%%/templates/no/listinfo.html
1536
%%MMDIR%%/templates/no/masthead.txt
1537
%%MMDIR%%/templates/no/newlist.txt
1538
%%MMDIR%%/templates/no/nomoretoday.txt
1539
%%MMDIR%%/templates/no/options.html
1540
%%MMDIR%%/templates/no/postack.txt
1541
%%MMDIR%%/templates/no/postauth.txt
1542
%%MMDIR%%/templates/no/postheld.txt
1543
%%MMDIR%%/templates/no/private.html
1544
%%MMDIR%%/templates/no/refuse.txt
1545
%%MMDIR%%/templates/no/roster.html
1546
%%MMDIR%%/templates/no/subauth.txt
1547
%%MMDIR%%/templates/no/subscribe.html
1548
%%MMDIR%%/templates/no/subscribeack.txt
1549
%%MMDIR%%/templates/no/unsub.txt
1550
%%MMDIR%%/templates/no/unsubauth.txt
1551
%%MMDIR%%/templates/no/userpass.txt
1552
%%MMDIR%%/templates/no/verify.txt
1553
%%MMDIR%%/templates/pl/admindbdetails.html
1554
%%MMDIR%%/templates/pl/admindbpreamble.html
1555
%%MMDIR%%/templates/pl/admindbsummary.html
1556
%%MMDIR%%/templates/pl/adminsubscribeack.txt
1557
%%MMDIR%%/templates/pl/adminunsubscribeack.txt
1558
%%MMDIR%%/templates/pl/admlogin.html
1559
%%MMDIR%%/templates/pl/approve.txt
1560
%%MMDIR%%/templates/pl/archidxentry.html
1561
%%MMDIR%%/templates/pl/archidxfoot.html
1562
%%MMDIR%%/templates/pl/archidxhead.html
1563
%%MMDIR%%/templates/pl/archlistend.html
1564
%%MMDIR%%/templates/pl/archliststart.html
1565
%%MMDIR%%/templates/pl/archtoc.html
1566
%%MMDIR%%/templates/pl/archtocentry.html
1567
%%MMDIR%%/templates/pl/archtocnombox.html
1568
%%MMDIR%%/templates/pl/article.html
1569
%%MMDIR%%/templates/pl/bounce.txt
1570
%%MMDIR%%/templates/pl/checkdbs.txt
1571
%%MMDIR%%/templates/pl/convert.txt
1572
%%MMDIR%%/templates/pl/cronpass.txt
1573
%%MMDIR%%/templates/pl/disabled.txt
1574
%%MMDIR%%/templates/pl/emptyarchive.html
1575
%%MMDIR%%/templates/pl/headfoot.html
1576
%%MMDIR%%/templates/pl/help.txt
1577
%%MMDIR%%/templates/pl/invite.txt
1578
%%MMDIR%%/templates/pl/listinfo.html
1579
%%MMDIR%%/templates/pl/masthead.txt
1580
%%MMDIR%%/templates/pl/newlist.txt
1581
%%MMDIR%%/templates/pl/nomoretoday.txt
1582
%%MMDIR%%/templates/pl/options.html
1583
%%MMDIR%%/templates/pl/postack.txt
1584
%%MMDIR%%/templates/pl/postauth.txt
1585
%%MMDIR%%/templates/pl/postheld.txt
1586
%%MMDIR%%/templates/pl/private.html
1587
%%MMDIR%%/templates/pl/refuse.txt
1588
%%MMDIR%%/templates/pl/roster.html
1589
%%MMDIR%%/templates/pl/subauth.txt
1590
%%MMDIR%%/templates/pl/subscribe.html
1591
%%MMDIR%%/templates/pl/subscribeack.txt
1592
%%MMDIR%%/templates/pl/unsub.txt
1593
%%MMDIR%%/templates/pl/unsubauth.txt
1594
%%MMDIR%%/templates/pl/userpass.txt
1595
%%MMDIR%%/templates/pl/verify.txt
1596
%%MMDIR%%/templates/pt/admindbdetails.html
1597
%%MMDIR%%/templates/pt/admindbpreamble.html
1598
%%MMDIR%%/templates/pt/admindbsummary.html
1599
%%MMDIR%%/templates/pt/adminsubscribeack.txt
1600
%%MMDIR%%/templates/pt/adminunsubscribeack.txt
1601
%%MMDIR%%/templates/pt/admlogin.html
1602
%%MMDIR%%/templates/pt/approve.txt
1603
%%MMDIR%%/templates/pt/archidxentry.html
1604
%%MMDIR%%/templates/pt/archidxfoot.html
1605
%%MMDIR%%/templates/pt/archidxhead.html
1606
%%MMDIR%%/templates/pt/archlistend.html
1607
%%MMDIR%%/templates/pt/archliststart.html
1608
%%MMDIR%%/templates/pt/archtoc.html
1609
%%MMDIR%%/templates/pt/archtocentry.html
1610
%%MMDIR%%/templates/pt/article.html
1611
%%MMDIR%%/templates/pt/bounce.txt
1612
%%MMDIR%%/templates/pt/checkdbs.txt
1613
%%MMDIR%%/templates/pt/convert.txt
1614
%%MMDIR%%/templates/pt/cronpass.txt
1615
%%MMDIR%%/templates/pt/disabled.txt
1616
%%MMDIR%%/templates/pt/emptyarchive.html
1617
%%MMDIR%%/templates/pt/headfoot.html
1618
%%MMDIR%%/templates/pt/help.txt
1619
%%MMDIR%%/templates/pt/invite.txt
1620
%%MMDIR%%/templates/pt/listinfo.html
1621
%%MMDIR%%/templates/pt/masthead.txt
1622
%%MMDIR%%/templates/pt/newlist.txt
1623
%%MMDIR%%/templates/pt/nomoretoday.txt
1624
%%MMDIR%%/templates/pt/options.html
1625
%%MMDIR%%/templates/pt/postack.txt
1626
%%MMDIR%%/templates/pt/postauth.txt
1627
%%MMDIR%%/templates/pt/postheld.txt
1628
%%MMDIR%%/templates/pt/private.html
1629
%%MMDIR%%/templates/pt/refuse.txt
1630
%%MMDIR%%/templates/pt/roster.html
1631
%%MMDIR%%/templates/pt/subauth.txt
1632
%%MMDIR%%/templates/pt/subscribe.html
1633
%%MMDIR%%/templates/pt/subscribeack.txt
1634
%%MMDIR%%/templates/pt/unsub.txt
1635
%%MMDIR%%/templates/pt/unsubauth.txt
1636
%%MMDIR%%/templates/pt/userpass.txt
1637
%%MMDIR%%/templates/pt/verify.txt
1638
%%MMDIR%%/templates/pt_BR/admindbdetails.html
1639
%%MMDIR%%/templates/pt_BR/admindbpreamble.html
1640
%%MMDIR%%/templates/pt_BR/admindbsummary.html
1641
%%MMDIR%%/templates/pt_BR/adminsubscribeack.txt
1642
%%MMDIR%%/templates/pt_BR/adminunsubscribeack.txt
1643
%%MMDIR%%/templates/pt_BR/admlogin.html
1644
%%MMDIR%%/templates/pt_BR/approve.txt
1645
%%MMDIR%%/templates/pt_BR/archidxentry.html
1646
%%MMDIR%%/templates/pt_BR/archidxfoot.html
1647
%%MMDIR%%/templates/pt_BR/archidxhead.html
1648
%%MMDIR%%/templates/pt_BR/archlistend.html
1649
%%MMDIR%%/templates/pt_BR/archliststart.html
1650
%%MMDIR%%/templates/pt_BR/archtoc.html
1651
%%MMDIR%%/templates/pt_BR/archtocentry.html
1652
%%MMDIR%%/templates/pt_BR/article.html
1653
%%MMDIR%%/templates/pt_BR/bounce.txt
1654
%%MMDIR%%/templates/pt_BR/checkdbs.txt
1655
%%MMDIR%%/templates/pt_BR/convert.txt
1656
%%MMDIR%%/templates/pt_BR/cronpass.txt
1657
%%MMDIR%%/templates/pt_BR/disabled.txt
1658
%%MMDIR%%/templates/pt_BR/emptyarchive.html
1659
%%MMDIR%%/templates/pt_BR/headfoot.html
1660
%%MMDIR%%/templates/pt_BR/help.txt
1661
%%MMDIR%%/templates/pt_BR/invite.txt
1662
%%MMDIR%%/templates/pt_BR/listinfo.html
1663
%%MMDIR%%/templates/pt_BR/masthead.txt
1664
%%MMDIR%%/templates/pt_BR/newlist.txt
1665
%%MMDIR%%/templates/pt_BR/nomoretoday.txt
1666
%%MMDIR%%/templates/pt_BR/options.html
1667
%%MMDIR%%/templates/pt_BR/postack.txt
1668
%%MMDIR%%/templates/pt_BR/postauth.txt
1669
%%MMDIR%%/templates/pt_BR/postheld.txt
1670
%%MMDIR%%/templates/pt_BR/private.html
1671
%%MMDIR%%/templates/pt_BR/refuse.txt
1672
%%MMDIR%%/templates/pt_BR/roster.html
1673
%%MMDIR%%/templates/pt_BR/subauth.txt
1674
%%MMDIR%%/templates/pt_BR/subscribe.html
1675
%%MMDIR%%/templates/pt_BR/subscribeack.txt
1676
%%MMDIR%%/templates/pt_BR/unsub.txt
1677
%%MMDIR%%/templates/pt_BR/unsubauth.txt
1678
%%MMDIR%%/templates/pt_BR/userpass.txt
1679
%%MMDIR%%/templates/pt_BR/verify.txt
1680
%%MMDIR%%/templates/ro/admindbdetails.html
1681
%%MMDIR%%/templates/ro/admindbpreamble.html
1682
%%MMDIR%%/templates/ro/admindbsummary.html
1683
%%MMDIR%%/templates/ro/adminsubscribeack.txt
1684
%%MMDIR%%/templates/ro/adminunsubscribeack.txt
1685
%%MMDIR%%/templates/ro/admlogin.html
1686
%%MMDIR%%/templates/ro/approve.txt
1687
%%MMDIR%%/templates/ro/archidxentry.html
1688
%%MMDIR%%/templates/ro/archidxfoot.html
1689
%%MMDIR%%/templates/ro/archidxhead.html
1690
%%MMDIR%%/templates/ro/archlistend.html
1691
%%MMDIR%%/templates/ro/archliststart.html
1692
%%MMDIR%%/templates/ro/archtoc.html
1693
%%MMDIR%%/templates/ro/archtocentry.html
1694
%%MMDIR%%/templates/ro/article.html
1695
%%MMDIR%%/templates/ro/bounce.txt
1696
%%MMDIR%%/templates/ro/checkdbs.txt
1697
%%MMDIR%%/templates/ro/convert.txt
1698
%%MMDIR%%/templates/ro/cronpass.txt
1699
%%MMDIR%%/templates/ro/disabled.txt
1700
%%MMDIR%%/templates/ro/emptyarchive.html
1701
%%MMDIR%%/templates/ro/headfoot.html
1702
%%MMDIR%%/templates/ro/help.txt
1703
%%MMDIR%%/templates/ro/invite.txt
1704
%%MMDIR%%/templates/ro/listinfo.html
1705
%%MMDIR%%/templates/ro/masthead.txt
1706
%%MMDIR%%/templates/ro/newlist.txt
1707
%%MMDIR%%/templates/ro/nomoretoday.txt
1708
%%MMDIR%%/templates/ro/options.html
1709
%%MMDIR%%/templates/ro/postack.txt
1710
%%MMDIR%%/templates/ro/postauth.txt
1711
%%MMDIR%%/templates/ro/postheld.txt
1712
%%MMDIR%%/templates/ro/private.html
1713
%%MMDIR%%/templates/ro/refuse.txt
1714
%%MMDIR%%/templates/ro/roster.html
1715
%%MMDIR%%/templates/ro/subauth.txt
1716
%%MMDIR%%/templates/ro/subscribe.html
1717
%%MMDIR%%/templates/ro/subscribeack.txt
1718
%%MMDIR%%/templates/ro/unsub.txt
1719
%%MMDIR%%/templates/ro/unsubauth.txt
1720
%%MMDIR%%/templates/ro/userpass.txt
1721
%%MMDIR%%/templates/ro/verify.txt
1722
%%MMDIR%%/templates/ru/admindbdetails.html
1723
%%MMDIR%%/templates/ru/admindbpreamble.html
1724
%%MMDIR%%/templates/ru/admindbsummary.html
1725
%%MMDIR%%/templates/ru/adminsubscribeack.txt
1726
%%MMDIR%%/templates/ru/adminunsubscribeack.txt
1727
%%MMDIR%%/templates/ru/admlogin.html
1728
%%MMDIR%%/templates/ru/approve.txt
1729
%%MMDIR%%/templates/ru/archidxentry.html
1730
%%MMDIR%%/templates/ru/archidxfoot.html
1731
%%MMDIR%%/templates/ru/archidxhead.html
1732
%%MMDIR%%/templates/ru/archlistend.html
1733
%%MMDIR%%/templates/ru/archliststart.html
1734
%%MMDIR%%/templates/ru/archtoc.html
1735
%%MMDIR%%/templates/ru/archtocentry.html
1736
%%MMDIR%%/templates/ru/archtocnombox.html
1737
%%MMDIR%%/templates/ru/article.html
1738
%%MMDIR%%/templates/ru/bounce.txt
1739
%%MMDIR%%/templates/ru/checkdbs.txt
1740
%%MMDIR%%/templates/ru/convert.txt
1741
%%MMDIR%%/templates/ru/cronpass.txt
1742
%%MMDIR%%/templates/ru/disabled.txt
1743
%%MMDIR%%/templates/ru/emptyarchive.html
1744
%%MMDIR%%/templates/ru/headfoot.html
1745
%%MMDIR%%/templates/ru/help.txt
1746
%%MMDIR%%/templates/ru/invite.txt
1747
%%MMDIR%%/templates/ru/listinfo.html
1748
%%MMDIR%%/templates/ru/masthead.txt
1749
%%MMDIR%%/templates/ru/newlist.txt
1750
%%MMDIR%%/templates/ru/nomoretoday.txt
1751
%%MMDIR%%/templates/ru/options.html
1752
%%MMDIR%%/templates/ru/postack.txt
1753
%%MMDIR%%/templates/ru/postauth.txt
1754
%%MMDIR%%/templates/ru/postheld.txt
1755
%%MMDIR%%/templates/ru/private.html
1756
%%MMDIR%%/templates/ru/probe.txt
1757
%%MMDIR%%/templates/ru/refuse.txt
1758
%%MMDIR%%/templates/ru/roster.html
1759
%%MMDIR%%/templates/ru/subauth.txt
1760
%%MMDIR%%/templates/ru/subscribe.html
1761
%%MMDIR%%/templates/ru/subscribeack.txt
1762
%%MMDIR%%/templates/ru/unsub.txt
1763
%%MMDIR%%/templates/ru/unsubauth.txt
1764
%%MMDIR%%/templates/ru/userpass.txt
1765
%%MMDIR%%/templates/ru/verify.txt
1766
%%MMDIR%%/templates/sk/admindbdetails.html
1767
%%MMDIR%%/templates/sk/admindbpreamble.html
1768
%%MMDIR%%/templates/sk/admindbsummary.html
1769
%%MMDIR%%/templates/sk/adminsubscribeack.txt
1770
%%MMDIR%%/templates/sk/adminunsubscribeack.txt
1771
%%MMDIR%%/templates/sk/admlogin.html
1772
%%MMDIR%%/templates/sk/approve.txt
1773
%%MMDIR%%/templates/sk/archidxentry.html
1774
%%MMDIR%%/templates/sk/archidxfoot.html
1775
%%MMDIR%%/templates/sk/archidxhead.html
1776
%%MMDIR%%/templates/sk/archlistend.html
1777
%%MMDIR%%/templates/sk/archliststart.html
1778
%%MMDIR%%/templates/sk/archtoc.html
1779
%%MMDIR%%/templates/sk/archtocentry.html
1780
%%MMDIR%%/templates/sk/archtocnombox.html
1781
%%MMDIR%%/templates/sk/article.html
1782
%%MMDIR%%/templates/sk/bounce.txt
1783
%%MMDIR%%/templates/sk/checkdbs.txt
1784
%%MMDIR%%/templates/sk/convert.txt
1785
%%MMDIR%%/templates/sk/cronpass.txt
1786
%%MMDIR%%/templates/sk/disabled.txt
1787
%%MMDIR%%/templates/sk/emptyarchive.html
1788
%%MMDIR%%/templates/sk/headfoot.html
1789
%%MMDIR%%/templates/sk/help.txt
1790
%%MMDIR%%/templates/sk/invite.txt
1791
%%MMDIR%%/templates/sk/listinfo.html
1792
%%MMDIR%%/templates/sk/masthead.txt
1793
%%MMDIR%%/templates/sk/newlist.txt
1794
%%MMDIR%%/templates/sk/nomoretoday.txt
1795
%%MMDIR%%/templates/sk/options.html
1796
%%MMDIR%%/templates/sk/postack.txt
1797
%%MMDIR%%/templates/sk/postauth.txt
1798
%%MMDIR%%/templates/sk/postheld.txt
1799
%%MMDIR%%/templates/sk/private.html
1800
%%MMDIR%%/templates/sk/probe.txt
1801
%%MMDIR%%/templates/sk/refuse.txt
1802
%%MMDIR%%/templates/sk/roster.html
1803
%%MMDIR%%/templates/sk/subauth.txt
1804
%%MMDIR%%/templates/sk/subscribe.html
1805
%%MMDIR%%/templates/sk/subscribeack.txt
1806
%%MMDIR%%/templates/sk/unsub.txt
1807
%%MMDIR%%/templates/sk/unsubauth.txt
1808
%%MMDIR%%/templates/sk/userpass.txt
1809
%%MMDIR%%/templates/sk/verify.txt
1810
%%MMDIR%%/templates/sl/admindbdetails.html
1811
%%MMDIR%%/templates/sl/admindbpreamble.html
1812
%%MMDIR%%/templates/sl/admindbsummary.html
1813
%%MMDIR%%/templates/sl/adminsubscribeack.txt
1814
%%MMDIR%%/templates/sl/adminunsubscribeack.txt
1815
%%MMDIR%%/templates/sl/admlogin.html
1816
%%MMDIR%%/templates/sl/approve.txt
1817
%%MMDIR%%/templates/sl/archidxentry.html
1818
%%MMDIR%%/templates/sl/archidxfoot.html
1819
%%MMDIR%%/templates/sl/archidxhead.html
1820
%%MMDIR%%/templates/sl/archlistend.html
1821
%%MMDIR%%/templates/sl/archliststart.html
1822
%%MMDIR%%/templates/sl/archtoc.html
1823
%%MMDIR%%/templates/sl/archtocentry.html
1824
%%MMDIR%%/templates/sl/article.html
1825
%%MMDIR%%/templates/sl/bounce.txt
1826
%%MMDIR%%/templates/sl/checkdbs.txt
1827
%%MMDIR%%/templates/sl/convert.txt
1828
%%MMDIR%%/templates/sl/cronpass.txt
1829
%%MMDIR%%/templates/sl/disabled.txt
1830
%%MMDIR%%/templates/sl/emptyarchive.html
1831
%%MMDIR%%/templates/sl/headfoot.html
1832
%%MMDIR%%/templates/sl/help.txt
1833
%%MMDIR%%/templates/sl/invite.txt
1834
%%MMDIR%%/templates/sl/listinfo.html
1835
%%MMDIR%%/templates/sl/masthead.txt
1836
%%MMDIR%%/templates/sl/newlist.txt
1837
%%MMDIR%%/templates/sl/nomoretoday.txt
1838
%%MMDIR%%/templates/sl/options.html
1839
%%MMDIR%%/templates/sl/postack.txt
1840
%%MMDIR%%/templates/sl/postauth.txt
1841
%%MMDIR%%/templates/sl/postheld.txt
1842
%%MMDIR%%/templates/sl/private.html
1843
%%MMDIR%%/templates/sl/refuse.txt
1844
%%MMDIR%%/templates/sl/roster.html
1845
%%MMDIR%%/templates/sl/subauth.txt
1846
%%MMDIR%%/templates/sl/subscribe.html
1847
%%MMDIR%%/templates/sl/subscribeack.txt
1848
%%MMDIR%%/templates/sl/unsub.txt
1849
%%MMDIR%%/templates/sl/unsubauth.txt
1850
%%MMDIR%%/templates/sl/userpass.txt
1851
%%MMDIR%%/templates/sl/verify.txt
1852
%%MMDIR%%/templates/sr/admindbdetails.html
1853
%%MMDIR%%/templates/sr/admindbpreamble.html
1854
%%MMDIR%%/templates/sr/admindbsummary.html
1855
%%MMDIR%%/templates/sr/adminsubscribeack.txt
1856
%%MMDIR%%/templates/sr/adminunsubscribeack.txt
1857
%%MMDIR%%/templates/sr/admlogin.html
1858
%%MMDIR%%/templates/sr/approve.txt
1859
%%MMDIR%%/templates/sr/archidxentry.html
1860
%%MMDIR%%/templates/sr/archidxfoot.html
1861
%%MMDIR%%/templates/sr/archidxhead.html
1862
%%MMDIR%%/templates/sr/archlistend.html
1863
%%MMDIR%%/templates/sr/archliststart.html
1864
%%MMDIR%%/templates/sr/archtoc.html
1865
%%MMDIR%%/templates/sr/archtocentry.html
1866
%%MMDIR%%/templates/sr/article.html
1867
%%MMDIR%%/templates/sr/bounce.txt
1868
%%MMDIR%%/templates/sr/checkdbs.txt
1869
%%MMDIR%%/templates/sr/convert.txt
1870
%%MMDIR%%/templates/sr/cronpass.txt
1871
%%MMDIR%%/templates/sr/disabled.txt
1872
%%MMDIR%%/templates/sr/emptyarchive.html
1873
%%MMDIR%%/templates/sr/handle_opts.html
1874
%%MMDIR%%/templates/sr/headfoot.html
1875
%%MMDIR%%/templates/sr/help.txt
1876
%%MMDIR%%/templates/sr/invite.txt
1877
%%MMDIR%%/templates/sr/listinfo.html
1878
%%MMDIR%%/templates/sr/masthead.txt
1879
%%MMDIR%%/templates/sr/newlist.txt
1880
%%MMDIR%%/templates/sr/nomoretoday.txt
1881
%%MMDIR%%/templates/sr/options.html
1882
%%MMDIR%%/templates/sr/postack.txt
1883
%%MMDIR%%/templates/sr/postauth.txt
1884
%%MMDIR%%/templates/sr/postheld.txt
1885
%%MMDIR%%/templates/sr/private.html
1886
%%MMDIR%%/templates/sr/refuse.txt
1887
%%MMDIR%%/templates/sr/roster.html
1888
%%MMDIR%%/templates/sr/subauth.txt
1889
%%MMDIR%%/templates/sr/subscribe.html
1890
%%MMDIR%%/templates/sr/subscribeack.txt
1891
%%MMDIR%%/templates/sr/unsub.txt
1892
%%MMDIR%%/templates/sr/unsubauth.txt
1893
%%MMDIR%%/templates/sr/userpass.txt
1894
%%MMDIR%%/templates/sr/verify.txt
1895
%%MMDIR%%/templates/sv/admindbdetails.html
1896
%%MMDIR%%/templates/sv/admindbpreamble.html
1897
%%MMDIR%%/templates/sv/admindbsummary.html
1898
%%MMDIR%%/templates/sv/adminsubscribeack.txt
1899
%%MMDIR%%/templates/sv/adminunsubscribeack.txt
1900
%%MMDIR%%/templates/sv/admlogin.html
1901
%%MMDIR%%/templates/sv/approve.txt
1902
%%MMDIR%%/templates/sv/archtoc.html
1903
%%MMDIR%%/templates/sv/archtocentry.html
1904
%%MMDIR%%/templates/sv/article.html
1905
%%MMDIR%%/templates/sv/bounce.txt
1906
%%MMDIR%%/templates/sv/checkdbs.txt
1907
%%MMDIR%%/templates/sv/convert.txt
1908
%%MMDIR%%/templates/sv/cronpass.txt
1909
%%MMDIR%%/templates/sv/disabled.txt
1910
%%MMDIR%%/templates/sv/emptyarchive.html
1911
%%MMDIR%%/templates/sv/headfoot.html
1912
%%MMDIR%%/templates/sv/help.txt
1913
%%MMDIR%%/templates/sv/invite.txt
1914
%%MMDIR%%/templates/sv/listinfo.html
1915
%%MMDIR%%/templates/sv/masthead.txt
1916
%%MMDIR%%/templates/sv/newlist.txt
1917
%%MMDIR%%/templates/sv/nomoretoday.txt
1918
%%MMDIR%%/templates/sv/options.html
1919
%%MMDIR%%/templates/sv/postack.txt
1920
%%MMDIR%%/templates/sv/postauth.txt
1921
%%MMDIR%%/templates/sv/postheld.txt
1922
%%MMDIR%%/templates/sv/private.html
1923
%%MMDIR%%/templates/sv/refuse.txt
1924
%%MMDIR%%/templates/sv/roster.html
1925
%%MMDIR%%/templates/sv/subauth.txt
1926
%%MMDIR%%/templates/sv/subscribe.html
1927
%%MMDIR%%/templates/sv/subscribeack.txt
1928
%%MMDIR%%/templates/sv/unsub.txt
1929
%%MMDIR%%/templates/sv/unsubauth.txt
1930
%%MMDIR%%/templates/sv/userpass.txt
1931
%%MMDIR%%/templates/sv/verify.txt
1932
%%MMDIR%%/templates/tr/admindbdetails.html
1933
%%MMDIR%%/templates/tr/admindbpreamble.html
1934
%%MMDIR%%/templates/tr/admindbsummary.html
1935
%%MMDIR%%/templates/tr/adminsubscribeack.txt
1936
%%MMDIR%%/templates/tr/adminunsubscribeack.txt
1937
%%MMDIR%%/templates/tr/admlogin.html
1938
%%MMDIR%%/templates/tr/approve.txt
1939
%%MMDIR%%/templates/tr/archidxentry.html
1940
%%MMDIR%%/templates/tr/archidxfoot.html
1941
%%MMDIR%%/templates/tr/archidxhead.html
1942
%%MMDIR%%/templates/tr/archlistend.html
1943
%%MMDIR%%/templates/tr/archliststart.html
1944
%%MMDIR%%/templates/tr/archtoc.html
1945
%%MMDIR%%/templates/tr/archtocentry.html
1946
%%MMDIR%%/templates/tr/archtocnombox.html
1947
%%MMDIR%%/templates/tr/article.html
1948
%%MMDIR%%/templates/tr/bounce.txt
1949
%%MMDIR%%/templates/tr/checkdbs.txt
1950
%%MMDIR%%/templates/tr/convert.txt
1951
%%MMDIR%%/templates/tr/cronpass.txt
1952
%%MMDIR%%/templates/tr/disabled.txt
1953
%%MMDIR%%/templates/tr/emptyarchive.html
1954
%%MMDIR%%/templates/tr/headfoot.html
1955
%%MMDIR%%/templates/tr/help.txt
1956
%%MMDIR%%/templates/tr/invite.txt
1957
%%MMDIR%%/templates/tr/listinfo.html
1958
%%MMDIR%%/templates/tr/masthead.txt
1959
%%MMDIR%%/templates/tr/newlist.txt
1960
%%MMDIR%%/templates/tr/nomoretoday.txt
1961
%%MMDIR%%/templates/tr/options.html
1962
%%MMDIR%%/templates/tr/postack.txt
1963
%%MMDIR%%/templates/tr/postauth.txt
1964
%%MMDIR%%/templates/tr/postheld.txt
1965
%%MMDIR%%/templates/tr/private.html
1966
%%MMDIR%%/templates/tr/refuse.txt
1967
%%MMDIR%%/templates/tr/roster.html
1968
%%MMDIR%%/templates/tr/subauth.txt
1969
%%MMDIR%%/templates/tr/subscribe.html
1970
%%MMDIR%%/templates/tr/subscribeack.txt
1971
%%MMDIR%%/templates/tr/unsub.txt
1972
%%MMDIR%%/templates/tr/unsubauth.txt
1973
%%MMDIR%%/templates/tr/userpass.txt
1974
%%MMDIR%%/templates/tr/verify.txt
1975
%%MMDIR%%/templates/uk/admindbdetails.html
1976
%%MMDIR%%/templates/uk/admindbpreamble.html
1977
%%MMDIR%%/templates/uk/admindbsummary.html
1978
%%MMDIR%%/templates/uk/adminsubscribeack.txt
1979
%%MMDIR%%/templates/uk/adminunsubscribeack.txt
1980
%%MMDIR%%/templates/uk/admlogin.html
1981
%%MMDIR%%/templates/uk/approve.txt
1982
%%MMDIR%%/templates/uk/archidxentry.html
1983
%%MMDIR%%/templates/uk/archidxfoot.html
1984
%%MMDIR%%/templates/uk/archidxhead.html
1985
%%MMDIR%%/templates/uk/archlistend.html
1986
%%MMDIR%%/templates/uk/archliststart.html
1987
%%MMDIR%%/templates/uk/archtoc.html
1988
%%MMDIR%%/templates/uk/archtocentry.html
1989
%%MMDIR%%/templates/uk/archtocnombox.html
1990
%%MMDIR%%/templates/uk/article.html
1991
%%MMDIR%%/templates/uk/bounce.txt
1992
%%MMDIR%%/templates/uk/checkdbs.txt
1993
%%MMDIR%%/templates/uk/convert.txt
1994
%%MMDIR%%/templates/uk/cronpass.txt
1995
%%MMDIR%%/templates/uk/disabled.txt
1996
%%MMDIR%%/templates/uk/emptyarchive.html
1997
%%MMDIR%%/templates/uk/headfoot.html
1998
%%MMDIR%%/templates/uk/help.txt
1999
%%MMDIR%%/templates/uk/invite.txt
2000
%%MMDIR%%/templates/uk/listinfo.html
2001
%%MMDIR%%/templates/uk/masthead.txt
2002
%%MMDIR%%/templates/uk/newlist.txt
2003
%%MMDIR%%/templates/uk/nomoretoday.txt
2004
%%MMDIR%%/templates/uk/options.html
2005
%%MMDIR%%/templates/uk/postack.txt
2006
%%MMDIR%%/templates/uk/postauth.txt
2007
%%MMDIR%%/templates/uk/postheld.txt
2008
%%MMDIR%%/templates/uk/private.html
2009
%%MMDIR%%/templates/uk/probe.txt
2010
%%MMDIR%%/templates/uk/refuse.txt
2011
%%MMDIR%%/templates/uk/roster.html
2012
%%MMDIR%%/templates/uk/subauth.txt
2013
%%MMDIR%%/templates/uk/subscribe.html
2014
%%MMDIR%%/templates/uk/subscribeack.txt
2015
%%MMDIR%%/templates/uk/unsub.txt
2016
%%MMDIR%%/templates/uk/unsubauth.txt
2017
%%MMDIR%%/templates/uk/userpass.txt
2018
%%MMDIR%%/templates/uk/verify.txt
2019
%%MMDIR%%/templates/vi/admindbdetails.html
2020
%%MMDIR%%/templates/vi/admindbpreamble.html
2021
%%MMDIR%%/templates/vi/admindbsummary.html
2022
%%MMDIR%%/templates/vi/adminsubscribeack.txt
2023
%%MMDIR%%/templates/vi/adminunsubscribeack.txt
2024
%%MMDIR%%/templates/vi/admlogin.html
2025
%%MMDIR%%/templates/vi/approve.txt
2026
%%MMDIR%%/templates/vi/archidxentry.html
2027
%%MMDIR%%/templates/vi/archidxfoot.html
2028
%%MMDIR%%/templates/vi/archidxhead.html
2029
%%MMDIR%%/templates/vi/archlistend.html
2030
%%MMDIR%%/templates/vi/archliststart.html
2031
%%MMDIR%%/templates/vi/archtoc.html
2032
%%MMDIR%%/templates/vi/archtocentry.html
2033
%%MMDIR%%/templates/vi/archtocnombox.html
2034
%%MMDIR%%/templates/vi/article.html
2035
%%MMDIR%%/templates/vi/bounce.txt
2036
%%MMDIR%%/templates/vi/checkdbs.txt
2037
%%MMDIR%%/templates/vi/convert.txt
2038
%%MMDIR%%/templates/vi/cronpass.txt
2039
%%MMDIR%%/templates/vi/disabled.txt
2040
%%MMDIR%%/templates/vi/emptyarchive.html
2041
%%MMDIR%%/templates/vi/headfoot.html
2042
%%MMDIR%%/templates/vi/help.txt
2043
%%MMDIR%%/templates/vi/invite.txt
2044
%%MMDIR%%/templates/vi/listinfo.html
2045
%%MMDIR%%/templates/vi/masthead.txt
2046
%%MMDIR%%/templates/vi/newlist.txt
2047
%%MMDIR%%/templates/vi/nomoretoday.txt
2048
%%MMDIR%%/templates/vi/options.html
2049
%%MMDIR%%/templates/vi/postack.txt
2050
%%MMDIR%%/templates/vi/postauth.txt
2051
%%MMDIR%%/templates/vi/postheld.txt
2052
%%MMDIR%%/templates/vi/private.html
2053
%%MMDIR%%/templates/vi/probe.txt
2054
%%MMDIR%%/templates/vi/refuse.txt
2055
%%MMDIR%%/templates/vi/roster.html
2056
%%MMDIR%%/templates/vi/subauth.txt
2057
%%MMDIR%%/templates/vi/subscribe.html
2058
%%MMDIR%%/templates/vi/subscribeack.txt
2059
%%MMDIR%%/templates/vi/unsub.txt
2060
%%MMDIR%%/templates/vi/unsubauth.txt
2061
%%MMDIR%%/templates/vi/userpass.txt
2062
%%MMDIR%%/templates/vi/verify.txt
2063
%%MMDIR%%/templates/zh_CN/admindbdetails.html
2064
%%MMDIR%%/templates/zh_CN/admindbpreamble.html
2065
%%MMDIR%%/templates/zh_CN/admindbsummary.html
2066
%%MMDIR%%/templates/zh_CN/adminsubscribeack.txt
2067
%%MMDIR%%/templates/zh_CN/adminunsubscribeack.txt
2068
%%MMDIR%%/templates/zh_CN/admlogin.html
2069
%%MMDIR%%/templates/zh_CN/approve.txt
2070
%%MMDIR%%/templates/zh_CN/archidxentry.html
2071
%%MMDIR%%/templates/zh_CN/archidxfoot.html
2072
%%MMDIR%%/templates/zh_CN/archidxhead.html
2073
%%MMDIR%%/templates/zh_CN/archlistend.html
2074
%%MMDIR%%/templates/zh_CN/archliststart.html
2075
%%MMDIR%%/templates/zh_CN/archtoc.html
2076
%%MMDIR%%/templates/zh_CN/archtocentry.html
2077
%%MMDIR%%/templates/zh_CN/archtocnombox.html
2078
%%MMDIR%%/templates/zh_CN/article.html
2079
%%MMDIR%%/templates/zh_CN/bounce.txt
2080
%%MMDIR%%/templates/zh_CN/checkdbs.txt
2081
%%MMDIR%%/templates/zh_CN/convert.txt
2082
%%MMDIR%%/templates/zh_CN/cronpass.txt
2083
%%MMDIR%%/templates/zh_CN/disabled.txt
2084
%%MMDIR%%/templates/zh_CN/emptyarchive.html
2085
%%MMDIR%%/templates/zh_CN/headfoot.html
2086
%%MMDIR%%/templates/zh_CN/help.txt
2087
%%MMDIR%%/templates/zh_CN/invite.txt
2088
%%MMDIR%%/templates/zh_CN/listinfo.html
2089
%%MMDIR%%/templates/zh_CN/masthead.txt
2090
%%MMDIR%%/templates/zh_CN/newlist.txt
2091
%%MMDIR%%/templates/zh_CN/nomoretoday.txt
2092
%%MMDIR%%/templates/zh_CN/options.html
2093
%%MMDIR%%/templates/zh_CN/postack.txt
2094
%%MMDIR%%/templates/zh_CN/postauth.txt
2095
%%MMDIR%%/templates/zh_CN/postheld.txt
2096
%%MMDIR%%/templates/zh_CN/private.html
2097
%%MMDIR%%/templates/zh_CN/probe.txt
2098
%%MMDIR%%/templates/zh_CN/refuse.txt
2099
%%MMDIR%%/templates/zh_CN/roster.html
2100
%%MMDIR%%/templates/zh_CN/subauth.txt
2101
%%MMDIR%%/templates/zh_CN/subscribe.html
2102
%%MMDIR%%/templates/zh_CN/subscribeack.txt
2103
%%MMDIR%%/templates/zh_CN/unsub.txt
2104
%%MMDIR%%/templates/zh_CN/unsubauth.txt
2105
%%MMDIR%%/templates/zh_CN/userpass.txt
2106
%%MMDIR%%/templates/zh_CN/verify.txt
2107
%%MMDIR%%/templates/zh_TW/admindbpreamble.html
2108
%%MMDIR%%/templates/zh_TW/adminsubscribeack.txt
2109
%%MMDIR%%/templates/zh_TW/adminunsubscribeack.txt
2110
%%MMDIR%%/templates/zh_TW/admlogin.html
2111
%%MMDIR%%/templates/zh_TW/approve.txt
2112
%%MMDIR%%/templates/zh_TW/bounce.txt
2113
%%MMDIR%%/templates/zh_TW/checkdbs.txt
2114
%%MMDIR%%/templates/zh_TW/convert.txt
2115
%%MMDIR%%/templates/zh_TW/cronpass.txt
2116
%%MMDIR%%/templates/zh_TW/handle_opts.html
2117
%%MMDIR%%/templates/zh_TW/headfoot.html
2118
%%MMDIR%%/templates/zh_TW/help.txt
2119
%%MMDIR%%/templates/zh_TW/listinfo.html
2120
%%MMDIR%%/templates/zh_TW/masthead.txt
2121
%%MMDIR%%/templates/zh_TW/newlist.txt
2122
%%MMDIR%%/templates/zh_TW/options.html
2123
%%MMDIR%%/templates/zh_TW/postack.txt
2124
%%MMDIR%%/templates/zh_TW/postauth.txt
2125
%%MMDIR%%/templates/zh_TW/postheld.txt
2126
%%MMDIR%%/templates/zh_TW/refuse.txt
2127
%%MMDIR%%/templates/zh_TW/roster.html
2128
%%MMDIR%%/templates/zh_TW/subauth.txt
2129
%%MMDIR%%/templates/zh_TW/subscribe.html
2130
%%MMDIR%%/templates/zh_TW/subscribeack.txt
2131
%%MMDIR%%/templates/zh_TW/userpass.txt
2132
%%MMDIR%%/templates/zh_TW/verify.txt
2133
%%MMDIR%%/tests/EmailBase.py
2134
%%MMDIR%%/tests/TestBase.py
2135
%%MMDIR%%/tests/bounces/aol_01.txt
2136
%%MMDIR%%/tests/bounces/bounce_01.txt
2137
%%MMDIR%%/tests/bounces/bounce_02.txt
2138
%%MMDIR%%/tests/bounces/bounce_03.txt
2139
%%MMDIR%%/tests/bounces/dsn_01.txt
2140
%%MMDIR%%/tests/bounces/dsn_02.txt
2141
%%MMDIR%%/tests/bounces/dsn_03.txt
2142
%%MMDIR%%/tests/bounces/dsn_04.txt
2143
%%MMDIR%%/tests/bounces/dsn_05.txt
2144
%%MMDIR%%/tests/bounces/dsn_06.txt
2145
%%MMDIR%%/tests/bounces/dsn_07.txt
2146
%%MMDIR%%/tests/bounces/dsn_08.txt
2147
%%MMDIR%%/tests/bounces/dsn_09.txt
2148
%%MMDIR%%/tests/bounces/dsn_10.txt
2149
%%MMDIR%%/tests/bounces/dsn_11.txt
2150
%%MMDIR%%/tests/bounces/dsn_12.txt
2151
%%MMDIR%%/tests/bounces/dsn_13.txt
2152
%%MMDIR%%/tests/bounces/dsn_14.txt
2153
%%MMDIR%%/tests/bounces/dsn_15.txt
2154
%%MMDIR%%/tests/bounces/dsn_16.txt
2155
%%MMDIR%%/tests/bounces/dsn_17.txt
2156
%%MMDIR%%/tests/bounces/dumbass_01.txt
2157
%%MMDIR%%/tests/bounces/exim_01.txt
2158
%%MMDIR%%/tests/bounces/groupwise_01.txt
2159
%%MMDIR%%/tests/bounces/groupwise_02.txt
2160
%%MMDIR%%/tests/bounces/hotpop_01.txt
2161
%%MMDIR%%/tests/bounces/llnl_01.txt
2162
%%MMDIR%%/tests/bounces/microsoft_01.txt
2163
%%MMDIR%%/tests/bounces/microsoft_02.txt
2164
%%MMDIR%%/tests/bounces/microsoft_03.txt
2165
%%MMDIR%%/tests/bounces/netscape_01.txt
2166
%%MMDIR%%/tests/bounces/newmailru_01.txt
2167
%%MMDIR%%/tests/bounces/postfix_01.txt
2168
%%MMDIR%%/tests/bounces/postfix_02.txt
2169
%%MMDIR%%/tests/bounces/postfix_03.txt
2170
%%MMDIR%%/tests/bounces/postfix_04.txt
2171
%%MMDIR%%/tests/bounces/postfix_05.txt
2172
%%MMDIR%%/tests/bounces/qmail_01.txt
2173
%%MMDIR%%/tests/bounces/qmail_02.txt
2174
%%MMDIR%%/tests/bounces/qmail_03.txt
2175
%%MMDIR%%/tests/bounces/qmail_04.txt
2176
%%MMDIR%%/tests/bounces/qmail_05.txt
2177
%%MMDIR%%/tests/bounces/qmail_06.txt
2178
%%MMDIR%%/tests/bounces/sendmail_01.txt
2179
%%MMDIR%%/tests/bounces/simple_01.txt
2180
%%MMDIR%%/tests/bounces/simple_02.txt
2181
%%MMDIR%%/tests/bounces/simple_03.txt
2182
%%MMDIR%%/tests/bounces/simple_04.txt
2183
%%MMDIR%%/tests/bounces/simple_05.txt
2184
%%MMDIR%%/tests/bounces/simple_06.txt
2185
%%MMDIR%%/tests/bounces/simple_07.txt
2186
%%MMDIR%%/tests/bounces/simple_08.txt
2187
%%MMDIR%%/tests/bounces/simple_09.txt
2188
%%MMDIR%%/tests/bounces/simple_10.txt
2189
%%MMDIR%%/tests/bounces/simple_11.txt
2190
%%MMDIR%%/tests/bounces/simple_12.txt
2191
%%MMDIR%%/tests/bounces/simple_13.txt
2192
%%MMDIR%%/tests/bounces/simple_14.txt
2193
%%MMDIR%%/tests/bounces/simple_15.txt
2194
%%MMDIR%%/tests/bounces/simple_16.txt
2195
%%MMDIR%%/tests/bounces/simple_17.txt
2196
%%MMDIR%%/tests/bounces/simple_18.txt
2197
%%MMDIR%%/tests/bounces/simple_19.txt
2198
%%MMDIR%%/tests/bounces/simple_20.txt
2199
%%MMDIR%%/tests/bounces/simple_21.txt
2200
%%MMDIR%%/tests/bounces/simple_22.txt
2201
%%MMDIR%%/tests/bounces/simple_23.txt
2202
%%MMDIR%%/tests/bounces/simple_24.txt
2203
%%MMDIR%%/tests/bounces/simple_25.txt
2204
%%MMDIR%%/tests/bounces/simple_26.txt
2205
%%MMDIR%%/tests/bounces/simple_27.txt
2206
%%MMDIR%%/tests/bounces/simple_28.txt
2207
%%MMDIR%%/tests/bounces/simple_29.txt
2208
%%MMDIR%%/tests/bounces/simple_30.txt
2209
%%MMDIR%%/tests/bounces/simple_31.txt
2210
%%MMDIR%%/tests/bounces/simple_32.txt
2211
%%MMDIR%%/tests/bounces/simple_33.txt
2212
%%MMDIR%%/tests/bounces/simple_34.txt
2213
%%MMDIR%%/tests/bounces/simple_35.txt
2214
%%MMDIR%%/tests/bounces/simple_36.txt
2215
%%MMDIR%%/tests/bounces/simple_37.txt
2216
%%MMDIR%%/tests/bounces/simple_38.txt
2217
%%MMDIR%%/tests/bounces/sina_01.txt
2218
%%MMDIR%%/tests/bounces/smtp32_01.txt
2219
%%MMDIR%%/tests/bounces/smtp32_02.txt
2220
%%MMDIR%%/tests/bounces/smtp32_03.txt
2221
%%MMDIR%%/tests/bounces/smtp32_04.txt
2222
%%MMDIR%%/tests/bounces/smtp32_05.txt
2223
%%MMDIR%%/tests/bounces/smtp32_06.txt
2224
%%MMDIR%%/tests/bounces/smtp32_07.txt
2225
%%MMDIR%%/tests/bounces/yahoo_01.txt
2226
%%MMDIR%%/tests/bounces/yahoo_02.txt
2227
%%MMDIR%%/tests/bounces/yahoo_03.txt
2228
%%MMDIR%%/tests/bounces/yahoo_04.txt
2229
%%MMDIR%%/tests/bounces/yahoo_05.txt
2230
%%MMDIR%%/tests/bounces/yahoo_06.txt
2231
%%MMDIR%%/tests/bounces/yahoo_07.txt
2232
%%MMDIR%%/tests/bounces/yahoo_08.txt
2233
%%MMDIR%%/tests/bounces/yahoo_09.txt
2234
%%MMDIR%%/tests/bounces/yahoo_10.txt
2235
%%MMDIR%%/tests/bounces/yale_01.txt
2236
%%MMDIR%%/tests/fblast.py
2237
%%MMDIR%%/tests/msgs/bad_01.txt
2238
%%MMDIR%%/tests/onebounce.py
2239
%%MMDIR%%/tests/paths.py
2240
%%MMDIR%%/tests/test_bounces.py
2241
%%MMDIR%%/tests/test_handlers.py
2242
%%MMDIR%%/tests/test_lockfile.py
2243
%%MMDIR%%/tests/test_membership.py
2244
%%MMDIR%%/tests/test_message.py
2245
%%MMDIR%%/tests/test_runners.py
2246
%%MMDIR%%/tests/test_safedict.py
2247
%%MMDIR%%/tests/test_security_mgr.py
2248
%%MMDIR%%/tests/test_smtp.py
2249
%%MMDIR%%/tests/testall.py
2250
@dirrm %%MMDIR%%/tests/msgs
2251
@dirrm %%MMDIR%%/tests/bounces
2252
@dirrm %%MMDIR%%/tests
2253
@dirrm %%MMDIR%%/templates/zh_TW
2254
@dirrm %%MMDIR%%/templates/zh_CN
2255
@dirrm %%MMDIR%%/templates/vi
2256
@dirrm %%MMDIR%%/templates/uk
2257
@dirrm %%MMDIR%%/templates/tr
2258
@dirrm %%MMDIR%%/templates/sv
2259
@dirrm %%MMDIR%%/templates/sr
2260
@dirrm %%MMDIR%%/templates/sl
2261
@dirrm %%MMDIR%%/templates/sk
2262
@dirrm %%MMDIR%%/templates/ru
2263
@dirrm %%MMDIR%%/templates/ro
2264
@dirrm %%MMDIR%%/templates/pt_BR
2265
@dirrm %%MMDIR%%/templates/pt
2266
@dirrm %%MMDIR%%/templates/pl
2267
@dirrm %%MMDIR%%/templates/no
2268
@dirrm %%MMDIR%%/templates/nl
2269
@dirrm %%MMDIR%%/templates/lt
2270
@dirrm %%MMDIR%%/templates/ko
2271
@dirrm %%MMDIR%%/templates/ja
2272
@dirrm %%MMDIR%%/templates/it
2273
@dirrm %%MMDIR%%/templates/ia
2274
@dirrm %%MMDIR%%/templates/hu
2275
@dirrm %%MMDIR%%/templates/hr
2276
@dirrm %%MMDIR%%/templates/he
2277
@dirrm %%MMDIR%%/templates/gl
2278
@dirrm %%MMDIR%%/templates/fr
2279
@dirrm %%MMDIR%%/templates/fi
2280
@dirrm %%MMDIR%%/templates/eu
2281
@dirrm %%MMDIR%%/templates/et
2282
@dirrm %%MMDIR%%/templates/es
2283
@dirrm %%MMDIR%%/templates/en
2284
@dirrm %%MMDIR%%/templates/el
2285
@dirrm %%MMDIR%%/templates/de
2286
@dirrm %%MMDIR%%/templates/da
2287
@dirrm %%MMDIR%%/templates/cs
2288
@dirrm %%MMDIR%%/templates/ca
2289
@dirrm %%MMDIR%%/templates/ast
2290
@dirrm %%MMDIR%%/templates/ar
2291
@dirrm %%MMDIR%%/templates
2292
@dirrmtry %%MMDIR%%/spam
2293
@dirrm %%MMDIR%%/scripts
2294
@dirrmtry %%MMDIR%%/qfiles
2295
@dirrm %%MMDIR%%/pythonlib/email/mime
2296
@dirrm %%MMDIR%%/pythonlib/email
2297
@dirrm %%MMDIR%%/pythonlib
2298
@dirrm %%MMDIR%%/messages/zh_TW/LC_MESSAGES
2299
@dirrm %%MMDIR%%/messages/zh_TW
2300
@dirrm %%MMDIR%%/messages/zh_CN/LC_MESSAGES
2301
@dirrm %%MMDIR%%/messages/zh_CN
2302
@dirrm %%MMDIR%%/messages/vi/LC_MESSAGES
2303
@dirrm %%MMDIR%%/messages/vi
2304
@dirrm %%MMDIR%%/messages/uk/LC_MESSAGES
2305
@dirrm %%MMDIR%%/messages/uk
2306
@dirrm %%MMDIR%%/messages/tr/LC_MESSAGES
2307
@dirrm %%MMDIR%%/messages/tr
2308
@dirrm %%MMDIR%%/messages/sv/LC_MESSAGES
2309
@dirrm %%MMDIR%%/messages/sv
2310
@dirrm %%MMDIR%%/messages/sr/LC_MESSAGES
2311
@dirrm %%MMDIR%%/messages/sr
2312
@dirrm %%MMDIR%%/messages/sl/LC_MESSAGES
2313
@dirrm %%MMDIR%%/messages/sl
2314
@dirrm %%MMDIR%%/messages/sk/LC_MESSAGES
2315
@dirrm %%MMDIR%%/messages/sk
2316
@dirrm %%MMDIR%%/messages/ru/LC_MESSAGES
2317
@dirrm %%MMDIR%%/messages/ru
2318
@dirrm %%MMDIR%%/messages/ro/LC_MESSAGES
2319
@dirrm %%MMDIR%%/messages/ro
2320
@dirrm %%MMDIR%%/messages/pt_BR/LC_MESSAGES
2321
@dirrm %%MMDIR%%/messages/pt_BR
2322
@dirrm %%MMDIR%%/messages/pt/LC_MESSAGES
2323
@dirrm %%MMDIR%%/messages/pt
2324
@dirrm %%MMDIR%%/messages/pl/LC_MESSAGES
2325
@dirrm %%MMDIR%%/messages/pl
2326
@dirrm %%MMDIR%%/messages/no/LC_MESSAGES
2327
@dirrm %%MMDIR%%/messages/no
2328
@dirrm %%MMDIR%%/messages/nl/LC_MESSAGES
2329
@dirrm %%MMDIR%%/messages/nl
2330
@dirrm %%MMDIR%%/messages/lt/LC_MESSAGES
2331
@dirrm %%MMDIR%%/messages/lt
2332
@dirrm %%MMDIR%%/messages/ko/LC_MESSAGES
2333
@dirrm %%MMDIR%%/messages/ko
2334
@dirrm %%MMDIR%%/messages/ja_JP.UTF8/LC_MESSAGES
2335
@dirrm %%MMDIR%%/messages/ja_JP.UTF8
2336
@dirrm %%MMDIR%%/messages/ja/LC_MESSAGES
2337
@dirrm %%MMDIR%%/messages/ja
2338
@dirrm %%MMDIR%%/messages/it/LC_MESSAGES
2339
@dirrm %%MMDIR%%/messages/it
2340
@dirrm %%MMDIR%%/messages/ia/LC_MESSAGES
2341
@dirrm %%MMDIR%%/messages/ia
2342
@dirrm %%MMDIR%%/messages/hu/LC_MESSAGES
2343
@dirrm %%MMDIR%%/messages/hu
2344
@dirrm %%MMDIR%%/messages/hr/LC_MESSAGES
2345
@dirrm %%MMDIR%%/messages/hr
2346
@dirrm %%MMDIR%%/messages/he/LC_MESSAGES
2347
@dirrm %%MMDIR%%/messages/he
2348
@dirrm %%MMDIR%%/messages/gl/LC_MESSAGES
2349
@dirrm %%MMDIR%%/messages/gl
2350
@dirrm %%MMDIR%%/messages/fr/LC_MESSAGES
2351
@dirrm %%MMDIR%%/messages/fr
2352
@dirrm %%MMDIR%%/messages/fi/LC_MESSAGES
2353
@dirrm %%MMDIR%%/messages/fi
2354
@dirrm %%MMDIR%%/messages/eu/LC_MESSAGES
2355
@dirrm %%MMDIR%%/messages/eu
2356
@dirrm %%MMDIR%%/messages/et/LC_MESSAGES
2357
@dirrm %%MMDIR%%/messages/et
2358
@dirrm %%MMDIR%%/messages/es/LC_MESSAGES
2359
@dirrm %%MMDIR%%/messages/es
2360
@dirrm %%MMDIR%%/messages/el/LC_MESSAGES
2361
@dirrm %%MMDIR%%/messages/el
2362
@dirrm %%MMDIR%%/messages/de/LC_MESSAGES
2363
@dirrm %%MMDIR%%/messages/de
2364
@dirrm %%MMDIR%%/messages/da/LC_MESSAGES
2365
@dirrm %%MMDIR%%/messages/da
2366
@dirrm %%MMDIR%%/messages/cs/LC_MESSAGES
2367
@dirrm %%MMDIR%%/messages/cs
2368
@dirrm %%MMDIR%%/messages/ca/LC_MESSAGES
2369
@dirrm %%MMDIR%%/messages/ca
2370
@dirrm %%MMDIR%%/messages/ast/LC_MESSAGES
2371
@dirrm %%MMDIR%%/messages/ast
2372
@dirrm %%MMDIR%%/messages/ar/LC_MESSAGES
2373
@dirrm %%MMDIR%%/messages/ar
2374
@dirrm %%MMDIR%%/messages
2375
@dirrm %%MMDIR%%/mail
2376
@dirrmtry %%MMDIR%%/logs
2377
@dirrmtry %%MMDIR%%/locks
2378
@dirrmtry %%MMDIR%%/lists
2379
@dirrm %%MMDIR%%/icons
2380
@dirrmtry %%MMDIR%%/data
2381
@dirrm %%MMDIR%%/cron
2382
@dirrm %%MMDIR%%/cgi-bin
2383
@dirrm %%MMDIR%%/bin
2384
@dirrmtry %%MMDIR%%/archives/public
2385
@dirrmtry %%MMDIR%%/archives/private
2386
@dirrmtry %%MMDIR%%/archives
2387
@dirrm %%MMDIR%%/Mailman/Queue
2388
@dirrm %%MMDIR%%/Mailman/MTA
2389
@dirrm %%MMDIR%%/Mailman/Logging
2390
@dirrm %%MMDIR%%/Mailman/Handlers
2391
@dirrm %%MMDIR%%/Mailman/Gui
2392
@dirrm %%MMDIR%%/Mailman/Commands
2393
@dirrm %%MMDIR%%/Mailman/Cgi
2394
@dirrm %%MMDIR%%/Mailman/Bouncers
2395
@dirrm %%MMDIR%%/Mailman/Archiver
2396
@dirrmtry %%MMDIR%%/Mailman
2397
@dirrmtry %%MMDIR%%
2398
@dirrmtry %%IMGDIR%%
(-)files/FreeBSD-post-install-notes (+172 lines)
Added Link Here
1
# ----------------------------------------------------------------------
2
# Post-installation instructions for the FreeBSD port/package of Mailman
3
# $FreeBSD: ports/mail/mailman/files/FreeBSD-post-install-notes,v 1.6 2006/05/09 18:07:54 jmelo Exp $
4
# ----------------------------------------------------------------------
5
6
7
CONTENTS:
8
* VERY IMPORTANT NOTE
9
1) General post-installation instructions
10
2) Integrating Mailman with your web server
11
3) Integrating Mailman with various mail servers
12
   3.1) Sendmail
13
   3.2) Exim
14
   3.3) Postfix
15
   3.4) Qmail
16
4) Apache configuration
17
18
19
VERY IMPORTANT NOTE
20
21
The Mailman port has a number of build time options.  Getting the values of
22
some of these right is CRUCIAL if you want your Mailman installation to work!
23
24
1) General post-installation instructions
25
26
   You should find two files named "INSTALL" and "README" in the same
27
   directory as this file.  You should read them for general
28
   post-installation instructions.  Bear in mind that the installation of
29
   Mailman from the FreeBSD port or package may have already taken care of
30
   many of the steps you may read about in these files.  Also, not everything
31
   in these files is necessarily relevant to the FreeBSD port.
32
33
34
2) Integrating Mailman with your web server
35
36
   You need to set up your webserver to find Mailman's CGI scripts.  The
37
   Mailman port works well with either Apache 1.3.x or Apache 2.x as
38
   installed from their respective ports (www/apache13 and www/apache2).
39
40
   If you're using Apache, you need to add at least two lines to your
41
   httpd.conf.  Assuming that you installed the Mailman port in the default
42
   location (/usr/local/mailman), they are:
43
44
     ScriptAlias /mailman "/usr/local/mailman/cgi-bin"
45
     Alias /pipermail "/usr/local/mailman/archives/public"
46
47
   If you installed the Mailman port to a non-standard location, replace
48
   "/usr/local/mailman" as appropriate.
49
50
   If your Apache is configured for multiple virtual servers, ensure that the
51
   above configuration lines appear in all the relevant <VirtualHost>
52
   sections.
53
54
   Remember to restart your Apache server after you have changed httpd.conf!
55
56
   No specific instructions exist at this time on how to integrate the
57
   Mailman port with web servers other than Apache.  Please submit any such
58
   information to the maintainer of the Mailman port.
59
60
61
3) Integrating Mailman with various mail servers
62
63
64
3.1) Sendmail
65
66
     You have to choose SENDMAIL option on config build and port will set 
67
     MAIL_GID=mailnull to you. 
68
69
     When your build is finished, please review the instructions found in 
70
     mailman-install.txt in the same directory port. The port is designed to 
71
     work with Sendmail by default.
72
73
     No further instructions exist at this time on how to integrate the
74
     Mailman port with Sendmail.  Please submit any such information to the
75
     maintainer of the Mailman port.
76
77
78
3.2) Exim
79
80
     The following instructions assume that Exim has been set up from the
81
     FreeBSD Exim port, and that it runs with a fairly default configuration.
82
     Specifically, it assumes that Exim runs under the default UID and GID as
83
     configured by the FreeBSD port.  In other words, that the following
84
     lines appear in Exim's configure file:
85
86
       exim_user = mailnull
87
       exim_group = mail
88
89
     For Exim 3.x, the value of MAIL_GID has to be set to 'nobody' (or 65534)
90
     when building the Mailman port, so you have to choose EXIM3 on build options
91
     to set it to you.
92
93
     For Exim 4.x, the value of MAIL_GID has to be set to 'mail' (or 6) when
94
     building the Mailman port, so you have to choose EXIM4 on build options to
95
     set it to you.
96
97
     Next, follow the instructions in mailman-install.txt found in the same
98
     directory as this file.  You can add the macros, transport and router
99
     found in mailman-install.txt verbatim to your Exim's configure file.
100
101
     Note that mailman-install.txt as installed with the FreeBSD port of
102
     Mailman has been patched, and should be trusted over a version of the
103
     file obtained from another source.  Specifically, when adding the
104
     macros found in mailman-install.txt, you should set the MAILMAN_USER
105
     and MAILMAN_GROUP to the same values as those for Exim, namely:
106
107
       MAILMAN_USER=mailnull
108
       MAILMAN_GROUP=mail
109
110
     Once you have finished editing configure, remember to re-HUP your Exim
111
     server:
112
113
       # kill -1 `cat /var/run/exim.pid`
114
115
     Now, start Mailman's qrunner daemon:
116
117
       # /usr/local/etc/rc.d/mailman start
118
119
     Troubleshooting:  If you ever see an error message such as the following
120
     in your Exim's mainlog, it's a sure sign that Exim and Mailman disagree
121
     about the GID under which mail is delivered:
122
123
       ** testlist@your.host.com R=mailman_router T=mailman_transport:
124
       Child process of mailman_transport transport returned 2 from command:
125
       /usr/local/mailman/mail/mailman
126
127
     In this case, ensure that you have followed the instructions in this
128
     section to the letter.
129
130
131
3.3) Postfix
132
133
     The value of MAIL_GID has to be set to 'nobody' (or 65534) when building
134
     the Mailman port, so you have to choose POSTFIX on build options to
135
     set it to you.
136
137
     NOTE: the group needs to be 'mailman' if you are using the Mailman
138
     integration for generating the postfix virtual and aliases files.
139
140
     Review the instructions found in mailman-install.txt in the same
141
     directory as this file.
142
143
3.4) Qmail
144
145
     The maintainer of the Mailman port has no information at this time as to
146
     the required value of MAIL_GID for Mailman to work with Qmail.  :-(
147
148
     Review the instructions found in mailman-install.txt in the same
149
     directory as this file.
150
151
     No further instructions exist at this time on how to integrate the
152
     Mailman port with Qmail.  Please submit any such information to the
153
     maintainer of the Mailman port.
154
155
4) Apache configuration
156
157
    You should add the follow lines in you httpd.conf to mailman interface
158
    works correctly:
159
160
      <Directory "/usr/local/mailman">
161
        Options FollowSymLinks ExecCGI
162
        AllowOverride None
163
        Order allow,deny
164
        Allow from all
165
     </Directory>
166
167
   After that, restart your apache:
168
169
     # apachectl restart.
170
171
-- Jean Milanez Melo <jmelo@FreeBSD.org>
172
   (Mailman port maintainer)
(-)files/extra-patch-Mailman-Cgi-private.py (+30 lines)
Added Link Here
1
--- Mailman/Cgi/private.py.orig	2010-09-21 03:18:27.000000000 +0900
2
+++ Mailman/Cgi/private.py	2011-04-08 22:28:09.000000000 +0900
3
@@ -116,6 +116,7 @@
4
 
5
     i18n.set_language(mlist.preferred_language)
6
     doc.set_language(mlist.preferred_language)
7
+    is_cgi = 0
8
 
9
     cgidata = cgi.FieldStorage()
10
     username = cgidata.getvalue('username', '')
11
@@ -179,6 +180,10 @@
12
         elif true_filename.endswith('.gz'):
13
             import gzip
14
             f = gzip.open(true_filename, 'r')
15
+        elif true_filename.endswith('namazu.cgi'):
16
+            os.putenv('SCRIPT_NAME', 'namazu.cgi')
17
+            f = os.popen(true_filename, 'r')
18
+            is_cgi = 1
19
         else:
20
             f = open(true_filename, 'r')
21
     except IOError:
22
@@ -188,6 +193,7 @@
23
         print doc.Format()
24
         syslog('error', 'Private archive file not found: %s', true_filename)
25
     else:
26
-        print 'Content-type: %s\n' % ctype
27
+        if not is_cgi:
28
+            print 'Content-type: %s\n' % ctype
29
         sys.stdout.write(f.read())
30
         f.close()
(-)files/mailman.in (+38 lines)
Added Link Here
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
#
5
# PROVIDE: mailman
6
# REQUIRE: LOGIN
7
# KEYWORD: shutdown
8
#
9
# Add the following lines to /etc/rc.conf to enable mailman:
10
# mailman_enable (bool):        Set it to "YES" to enable mailman.
11
#                               Default is "NO".
12
13
. /etc/rc.subr
14
15
name="mailman"
16
rcvar=mailman_enable
17
18
pidfile="%%MAILMANDIR%%/data/master-qrunner.pid"
19
20
load_rc_config $name
21
22
: ${mailman_enable="NO"}
23
24
start_cmd=${name}_start
25
stop_cmd=${name}_stop
26
extra_commands="reload"
27
28
mailman_start() {
29
	%%MAILMANDIR%%/bin/mailmanctl -s -q start
30
}
31
32
mailman_stop() {
33
	[ -f $pidfile ] \
34
	  && %%MAILMANDIR%%/bin/mailmanctl -q stop \
35
	  || echo ${name} not running? \(check ${pidfile}\)
36
}
37
38
run_rc_command "$1"
(-)files/patch-Mailman-Defaults.py.in (+54 lines)
Added Link Here
1
--- Mailman/Defaults.py.in.orig	2011-12-11 16:56:23.000000000 +0900
2
+++ Mailman/Defaults.py.in	2012-02-15 05:39:56.000000000 +0900
3
@@ -62,7 +62,7 @@
4
 # Banner images
5
 DELIVERED_BY = 'mailman.jpg'
6
 PYTHON_POWERED = 'PythonPowered.png'
7
-GNU_HEAD = 'gnu-head-tiny.jpg'
8
+FREEBSD_POWERED = 'powerlogo.gif'
9
 
10
 # Don't change MAILMAN_URL, unless you want to point it at one of the mirrors.
11
 MAILMAN_URL = 'http://www.gnu.org/software/mailman/index.html'
12
@@ -119,7 +119,7 @@
13
 # Command that is used to convert text/html parts into plain text.  This
14
 # should output results to standard output.  %(filename)s will contain the
15
 # name of the temporary file that the program should operate on.
16
-HTML_TO_PLAIN_TEXT_COMMAND = '/usr/bin/lynx -dump %(filename)s'
17
+HTML_TO_PLAIN_TEXT_COMMAND = '%%LOCALBASE%%/bin/lynx -dump %(filename)s'
18
 
19
 # A Python regular expression character class which defines the characters
20
 # allowed in list names.  Lists cannot be created with names containing any
21
@@ -460,8 +460,8 @@
22
 # and virtual-mailman.db files, respectively, from the associated plain text
23
 # files.  The file being updated will be appended to this string (with a
24
 # separating space), so it must be appropriate for os.system().
25
-POSTFIX_ALIAS_CMD = '/usr/sbin/postalias'
26
-POSTFIX_MAP_CMD = '/usr/sbin/postmap'
27
+POSTFIX_ALIAS_CMD = '%%LOCALBASE%%/sbin/postalias'
28
+POSTFIX_MAP_CMD = '%%LOCALBASE%%/sbin/postmap'
29
 
30
 # Ceiling on the number of recipients that can be specified in a single SMTP
31
 # transaction.  Set to 0 to submit the entire recipient list in one
32
@@ -495,7 +495,7 @@
33
 
34
 # Command for direct command pipe delivery to sendmail compatible program,
35
 # when DELIVERY_MODULE is 'Sendmail'.
36
-SENDMAIL_CMD = '/usr/lib/sendmail'
37
+SENDMAIL_CMD = '/usr/sbin/sendmail'
38
 
39
 # Set these variables if you need to authenticate to your NNTP server for
40
 # Usenet posting or reading.  If no authentication is necessary, specify None
41
@@ -747,6 +747,13 @@
42
 # debugging).
43
 MAX_AUTORESPONSES_PER_DAY = 10
44
 
45
+# This FreeBSD port of Mailman can utilize Postfix SMTP server's VERP ability.
46
+# You may set VERP_STYLE = 'Postfix' to enable it.
47
+VERP_STYLE = 'Manual'
48
+
49
+# When using Postfix style VERP you will need the following setting.
50
+POSTFIX_XVERP_OPTS = '+='
51
+
52
 
53
 
54
 #####
(-)files/patch-Mailman-htmlformat.py (+43 lines)
Added Link Here
1
--- Mailman/htmlformat.py.orig	2011-12-11 16:56:23.000000000 +0900
2
+++ Mailman/htmlformat.py	2012-02-15 16:46:34.000000000 +0900
3
@@ -621,13 +621,13 @@
4
 #
5
 from mm_cfg import MAILMAN_URL
6
 PYTHON_URL  = 'http://www.python.org/'
7
-GNU_URL     = 'http://www.gnu.org/'
8
+FREEBSD_URL = 'http://www.freebsd.org/'
9
 
10
 # The names of the image logo files.  These are concatentated onto
11
 # mm_cfg.IMAGE_LOGOS (not urljoined).
12
 DELIVERED_BY = mm_cfg.DELIVERED_BY         # 'mailman.jpg'
13
 PYTHON_POWERED = mm_cfg.PYTHON_POWERED     # 'PythonPowered.png'
14
-GNU_HEAD = mm_cfg.GNU_HEAD                 # 'gnu-head-tiny.jpg'
15
+FREEBSD_POWERED = mm_cfg.FREEBSD_POWERED   # 'powerlogo.gif'
16
 
17
 
18
 def MailmanLogo():
19
@@ -641,18 +641,18 @@
20
         pylink = '<img src="%s" alt="Python Powered" ' \
21
                  'title="Python Powered" border=0>' % \
22
                  logo(PYTHON_POWERED)
23
-        gnulink = '<img src="%s" alt="GNU\'s Not Unix" ' \
24
-                  'title="GNU\'s Not Unix" border=0>' % \
25
-                  logo(GNU_HEAD)
26
-        t.AddRow([mmlink, pylink, gnulink])
27
+        freebsdlink = '<img src="%s" alt="Powered by FreeBSD" ' \
28
+                 'title="Powered by FreeBSD" border=0>' % \
29
+                 logo(FREEBSD_POWERED)
30
+        t.AddRow([mmlink, pylink, freebsdlink])
31
     else:
32
         # use only textual links
33
         version = mm_cfg.VERSION
34
         mmlink = Link(MAILMAN_URL,
35
                       _('Delivered by Mailman<br>version %(version)s'))
36
         pylink = Link(PYTHON_URL, _('Python Powered'))
37
-        gnulink = Link(GNU_URL, _("Gnu's Not Unix"))
38
-        t.AddRow([mmlink, pylink, gnulink])
39
+        freebsdlink = Link(FREEBSD_URL, _("Powered by FreeBSD"))
40
+        t.AddRow([mmlink, pylink, freebsdlink])
41
     return t
42
 
43
 
(-)files/patch-configure.in (+70 lines)
Added Link Here
1
2
$FreeBSD: ports/mail/mailman/files/patch-configure-in,v 1.1 2011/06/21 16:00:53 crees Exp $
3
4
Mailman tests for existence of users during configure -- unfortunately
5
this creates a problem; we create the users just before install.
6
7
We remove the testing part.
8
9
--- configure.in.orig	2011-12-11 16:56:23.000000000 +0900
10
+++ configure.in	2012-02-15 06:11:05.000000000 +0900
11
@@ -341,28 +341,7 @@
12
 # $2 == user id to check for
13
 AC_SUBST($1)
14
 changequote(,)
15
-if test -z "$$1"
16
-then
17
-    cat > conftest.py <<EOF
18
-import grp
19
-gid = ''
20
-for group in "$2".split():
21
-    try:
22
-        try:
23
-            gname = grp.getgrgid(int(group))[0]
24
-            break
25
-        except ValueError:
26
-            gname = grp.getgrnam(group)[0]
27
-            break
28
-    except KeyError:
29
-        gname = ''
30
-fp = open("conftest.out", "w")
31
-fp.write("%s\n" % gname)
32
-fp.close()
33
-EOF
34
-    $PYTHON conftest.py
35
-    $1=`cat conftest.out`
36
-fi
37
+$1=$2
38
 changequote([, ])
39
 rm -f conftest.out conftest.py])
40
 
41
@@ -373,28 +352,7 @@
42
 # $2 == user id to check for
43
 AC_SUBST($1)
44
 changequote(,)
45
-if test -z "$$1"
46
-then
47
-    cat > conftest.py <<EOF
48
-import pwd
49
-uid = ''
50
-for user in "$2".split():
51
-    try:
52
-        try:
53
-            uname = pwd.getpwuid(int(user))[0]
54
-            break
55
-        except ValueError:
56
-            uname = pwd.getpwnam(user)[0]
57
-            break
58
-    except KeyError:
59
-        uname = ''
60
-fp = open("conftest.out", "w")
61
-fp.write("%s\n" % uname)
62
-fp.close()
63
-EOF
64
-    $PYTHON conftest.py
65
-    $1=`cat conftest.out`
66
-fi
67
+$1=$2
68
 changequote([, ])
69
 rm -f conftest.out conftest.py])
70
 
(-)files/patch-misc-mailman.in (+25 lines)
Added Link Here
1
--- misc/mailman.in.orig	2011-12-11 16:56:23.000000000 +0900
2
+++ misc/mailman.in	2012-02-15 06:27:15.000000000 +0900
3
@@ -39,16 +39,20 @@
4
 case "$1" in
5
 'start')
6
     #rm -f $MAILMANHOME/locks/*
7
-    $PYTHON $MAILMANCTL -s -q start
8
+    $PYTHON $MAILMANCTL -s -q start && echo -n ' mailman'
9
     ;;
10
 
11
 'stop')
12
-    $PYTHON $MAILMANCTL -q stop
13
+    $PYTHON $MAILMANCTL -q stop && echo -n ' mailman'
14
     ;;
15
 
16
 'restart')
17
     $PYTHON $MAILMANCTL -q restart
18
     ;;
19
+*)
20
+    echo "Usage: `basename $0` {start|stop|restart}" >&2
21
+    exit 64
22
+    ;;
23
 
24
 esac
25
 exit 0
(-)files/pkg-deinstall.in (+52 lines)
Added Link Here
1
#! /bin/sh
2
#
3
# $FreeBSD$
4
5
PATH=/bin:/usr/bin:/usr/sbin
6
7
case $2 in
8
9
DEINSTALL)
10
  echo "---> Starting deinstall script:"
11
12
  if /usr/bin/crontab -u "%%USER%%" -l | \
13
      /usr/bin/diff - %%MAILMANDIR%%/cron/crontab.in >/dev/null 2>&1 ; then
14
      echo "---> Zeroing crontab for \"%%USER%%\""
15
      /usr/bin/crontab -u "%%USER%%" /dev/null
16
      if [ -e /var/cron/allow ]; then
17
         grep -v %%USER%% /var/cron/allow > /var/cron/allow.new
18
         mv /var/cron/allow.new /var/cron/allow
19
      fi
20
  else
21
      echo "---> Crontab for \"%%USER%%\" not removed: please deinstall"
22
      echo "---> manually if you no-longer wish to use Mailman. eg:"
23
      echo "--->     /usr/bin/crontab -u "%%USER%%" -r"
24
  fi
25
26
  echo "---> Preserving the \"last_mailman_version\" file"
27
  /bin/cp -f %%MAILMANDIR%%/data/last_mailman_version /var/tmp/
28
29
  # If the errorlog is the only existing logfile, delete it.  (If Mailman's
30
  # qrunner had not been running, then the process of trying to stop the
31
  # qrunner (above) will cause the errorlog to be written to.  Hence, even if
32
  # the Mailman port/package is installed and immediately deinstalled, the
33
  # errorlog will exist.)
34
  if [ "`echo %%MAILMANDIR%%/logs/*`" = "%%MAILMANDIR%%/logs/error" ]; then
35
    echo "---> Deleting errorlog (It is the only existing logfile.)"
36
    /bin/rm -f %%MAILMANDIR%%/logs/error
37
  fi
38
  ;;
39
40
POST-DEINSTALL)
41
  echo "---> Starting post-deinstall script:"
42
43
  if [ -d %%MAILMANDIR%% ]; then
44
    echo '---> %%MAILMANDIR%% is not empty - this installation may have active lists!'
45
    echo "---> Restoring \"last_mailman_version\" file"
46
    [ -d %%MAILMANDIR%%/data ] || /bin/mkdir %%MAILMANDIR%%/data
47
    /bin/mv -f /var/tmp/last_mailman_version %%MAILMANDIR%%/data/
48
  fi
49
50
  ;;
51
52
esac
(-)files/pkg-install.in (+39 lines)
Added Link Here
1
#! /bin/sh
2
#
3
# $FreeBSD$
4
5
PATH=/bin:/usr/bin:/usr/sbin
6
7
case $2 in
8
9
POST-INSTALL)
10
  echo "---> Starting post-install script:"
11
12
  /bin/chmod g+s "%%MAILMANDIR%%" || exit 1
13
14
  echo "---> Checking crontab(5) file for user \"%%USER%%\""
15
16
  if [ -e /var/cron/allow ]; then
17
  echo "%%USER%%" >> /var/cron/allow
18
  fi
19
20
  if /usr/bin/crontab -u "%%USER%%" -l >/tmp/mmctab$$ 2>&1 ; then
21
      if test -s /tmp/mmctab$$; then
22
          echo "---> \"%%USER%%\" already has a crontab.  Not overwriting it"
23
          echo "---> Please merge any changes from the standard crontab file"
24
          echo "--->     %%MAILMANDIR%%/cron/crontab.in"
25
      else
26
          echo "---> Installing crontab(5) file for user \"%%USER%%\""
27
          /usr/bin/crontab -u "%%USER%%" "%%MAILMANDIR%%/cron/crontab.in" || exit 1
28
      fi
29
  else
30
      echo "---> Creating crontab(5) file for user \"%%USER%%\""
31
      /usr/bin/crontab -u "%%USER%%" "%%MAILMANDIR%%/cron/crontab.in" || exit 1
32
  fi
33
  rm -f /tmp/mmctab$$
34
35
  echo "---> Checking (and fixing) file and directory permissions"
36
  %%MAILMANDIR%%/bin/check_perms -f >/dev/null 2>&1
37
  ;;
38
39
esac
(-)files/pkg-message.in (+29 lines)
Added Link Here
1
----------------------------------------------------------------------------
2
Mailman has been installed, but requires further configuration before use!
3
4
You will have to configure both your MTA (mail server) and web server to
5
integrate with Mailman.  If the port's documentation has been installed,
6
extensive post-installation instructions may be found in:
7
8
  %%DOCSDIR%%/FreeBSD-post-install-notes
9
10
Note (1):  If you use an alternate (non-Sendmail) MTA, you MUST be sure
11
that the correct value of MAIL_GID was used when this port or package
12
was built.  Performing a "make config" in the Mailman port directory
13
you can choose your MTA with the correct MAIL_GID.
14
15
Note (2):  The entire Mailman installation resides under %%MAILMANDIR%%
16
The command-line scripts necessary to administer Mailman have been
17
installed in %%MAILMANDIR%%/bin
18
19
Note (3):  As of version 2.1, Mailman's queue runner runs as a daemon and
20
is started by a script in %%LOCALBASE%%/etc/rc.d
21
22
In order to make private archives searchable with namazu2, you need copy
23
or link %%LOCALBASE%%/libexec/namazu.cgi to
24
%%MAILMANDIR%%/archives/private/<ML name>/ and configure .namazurc
25
to refer to %%LOCALBASE%%/etc/namazu/namazu-sample.
26
See also
27
http://www.python.jp/pipermail/mailman-users-jp/2004-August/001008.html
28
written in Japanese.
29
----------------------------------------------------------------------------
(-)files/postfix-verp.diff (+44 lines)
Added Link Here
1
--- Mailman/Handlers/SMTPDirect.py.orig	2011-12-11 16:56:23.000000000 +0900
2
+++ Mailman/Handlers/SMTPDirect.py	2012-02-15 15:50:47.000000000 +0900
3
@@ -64,11 +64,11 @@
4
         self.__conn.connect(mm_cfg.SMTPHOST, mm_cfg.SMTPPORT)
5
         self.__numsessions = mm_cfg.SMTP_MAX_SESSIONS_PER_CONNECTION
6
 
7
-    def sendmail(self, envsender, recips, msgtext):
8
+    def sendmail(self, envsender, recips, msgtext, mailopts=[]):
9
         if self.__conn is None:
10
             self.__connect()
11
         try:
12
-            results = self.__conn.sendmail(envsender, recips, msgtext)
13
+            results = self.__conn.sendmail(envsender, recips, msgtext, mailopts)
14
         except smtplib.SMTPException:
15
             # For safety, close this connection.  The next send attempt will
16
             # automatically re-open it.  Pass the exception on up.
17
@@ -114,7 +114,7 @@
18
     # recipients they'll swallow in a single transaction.
19
     deliveryfunc = None
20
     if (not msgdata.has_key('personalize') or msgdata['personalize']) and (
21
-           msgdata.get('verp') or mlist.personalize):
22
+           (msgdata.get('verp') and mm_cfg.VERP_STYLE == 'Manual') or mlist.personalize):
23
         chunks = [[recip] for recip in recips]
24
         msgdata['personalize'] = 1
25
         deliveryfunc = verpdeliver
26
@@ -376,6 +376,9 @@
27
     if mlist.include_sender_header:
28
         del msg['sender']
29
         msg['Sender'] = '"%s" <%s>' % (mlist.real_name, envsender)
30
+    mailopts=[]
31
+    if msgdata.get('verp') and mm_cfg.VERP_STYLE == 'Postfix':
32
+        mailopts.append('XVERP=' + mm_cfg.POSTFIX_XVERP_OPTS)
33
     # Get the plain, flattened text of the message, sans unixfrom
34
     # using our as_string() method to not mangle From_ and not fold
35
     # sub-part headers possibly breaking signatures.
36
@@ -385,7 +388,7 @@
37
     msgid = msg['message-id']
38
     try:
39
         # Send the message
40
-        refused = conn.sendmail(envsender, recips, msgtext)
41
+        refused = conn.sendmail(envsender, recips, msgtext, mailopts)
42
     except smtplib.SMTPRecipientsRefused, e:
43
         syslog('smtp-failure', 'All recipients refused: %s, msgid: %s',
44
                e, msgid)
(-)files/powerlogo.gif.uue (+121 lines)
Added Link Here
1
begin 664 powerlogo.gif
2
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
119
.!W^@!WB=UX2M20$!`#L`
120
`
121
end

Return to bug 165403