[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Bump version to 0.0.8; put manpages in prefix/share/man...
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv23202
Modified Files:
TODO setup.py
Log Message:
Bump version to 0.0.8; put manpages in prefix/share/man/manx
Index: TODO
===================================================================
RCS file: /home/minion/cvsroot/src/minion/TODO,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -d -r1.209 -r1.210
--- TODO 4 Apr 2004 17:58:28 -0000 1.209
+++ TODO 4 Apr 2004 18:44:07 -0000 1.210
@@ -12,12 +12,17 @@
NEEDS TO BE WRITTEN:
-Deferred from 0.0.7:
+For 0.0.8:
+ - Better error messages on expired / not-yet-ready certificates,
+ no matter how hard OpenSSL makes it.
+ - Dummies and pinging
+ - Distributed directories
+
+Reach goals for 0.0.8:
- Specification
- Clear up specification for payload versions.
- Clear up specification for NEWS
- - Dummies and pinging [Rationale: no time]
- - Make 'SIGHUP' reload, (and 'SIGUSR' dump). [Rationale: no time]
+ - Make 'SIGHUP' reload, (and 'SIGUSR' dump).
- SIGHUP should reconfigure everything:
- Logs
- EventStats
@@ -31,14 +36,7 @@
- SIGHUP should check whether serverinfo should be
regenerated.
- Add SIGUSR1 to do rotate-and-dump only.
- - MMTP [Rationale: more design needed]
- - Retrying should be per-destination, not per-packet.
- Otherwise, we can leak which packets were first attempted
- when.
- - Limit number of packets sent over single client
- connection.
- - UI [Rationale: don't build stuff for integrators till after
- codecon, when I'll talk with 2 potential integrators.]
+ - Integrator help
- RFC822 interface to help integrators.
- "-o" option for queue
- "-i" option for flush.
@@ -47,14 +45,14 @@
- Text/binary modes
- With/without decoding handle
- Attach to any type.
-
-For 0.0.8:
- - For petmail:
- - Working,well-designed --status-fd option
- - For mnet:
- - Implement trivial client side of client API
- - Specify pluggable modules better.
- - Consider server APIs
+ - For petmail:
+ - Working,well-designed --status-fd option
+ - For mnet:
+ - Implement trivial client side of client API
+ - Specify pluggable modules better.
+ - Consider server APIs
+ - Use a 'sendmail'-like program instead of a SMTP server,
+ optionally.
Require for "0.1.0" (the in-theory-as-good-as-type-II release):
[Release criteria: Workable replacement for type II. At least as
@@ -70,8 +68,6 @@
- Support multiple exit addresses. (cc, bcc, etc.)
Needs to be bandwidth-limited.
- Support NEWS
- - Use a 'sendmail'-like program instead of a SMTP server,
- optionally.
- End-to-end issues
- Minimal MIME support: allow headers; don't attempt to
enforce a single-best format.
@@ -167,7 +163,12 @@
into RAM at once.
- Fragment and unfragment large messages on disk.
- MMTP / async
- - Tests for all cases:
+ - Retrying should be per-destination, not per-packet.
+ Otherwise, we can leak which packets were first attempted
+ when.
+ - Limit number of packets sent over single client
+ connection.
+ - Tests for all cases:
- Packet to server with bogus IP
- Junk
- Retry on bogus close.
Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -d -r1.98 -r1.99
--- setup.py 4 Apr 2004 17:58:28 -0000 1.98
+++ setup.py 4 Apr 2004 18:44:07 -0000 1.99
@@ -6,9 +6,9 @@
#
# Current Mixminion version
#
-VERSION = '0.0.7'
+VERSION = '0.0.8alpha1'
# System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,7,100,-1)
+VERSION_INFO = (0,0,8,0,1)
# Check the version. We need to make sure version_info exists before we
# compare to it: it was only added as of Python version 1.6.
@@ -526,10 +526,10 @@
}
elif sys.platform != 'win32':
EXTRA = {
- 'data_files' : [("man/man1", ["etc/mixminion.1"]),
- ("man/man5", ["etc/mixminionrc.5",
+ 'data_files' : [("share/man/man1", ["etc/mixminion.1"]),
+ ("share/man/man5", ["etc/mixminionrc.5",
"etc/mixminiond.conf.5"]),
- ("man/man8", ["etc/mixminiond.8"])]
+ ("share/man/man8", ["etc/mixminiond.8"])]
}
else:
EXTRA = {}