annotate 3rdparty/packages/uucpbb/src/todo @ 3226:9749d0dfc4a2

Changed a puls PC to rts to save cycles
author David Ladd <drencor-xeen@users.sourceforge.net>
date Sat, 20 Jan 2018 19:32:22 -0600
parents d47db9a69151
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1773
d47db9a69151 Forgot these
boisy
parents:
diff changeset
1 A list of things to add or finish working on for the UUCPbb package. These
d47db9a69151 Forgot these
boisy
parents:
diff changeset
2 are listed in no particular order. If you wish to work on something or
d47db9a69151 Forgot these
boisy
parents:
diff changeset
3 contribute to the package, contact me.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
4
d47db9a69151 Forgot these
boisy
parents:
diff changeset
5 Bob Billson <bob@kc2wz.bubble.org>
d47db9a69151 Forgot these
boisy
parents:
diff changeset
6
d47db9a69151 Forgot these
boisy
parents:
diff changeset
7
d47db9a69151 Forgot these
boisy
parents:
diff changeset
8 1. UUSTAT -- The code is mostly done, but still has a few bugs to nail.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
9
d47db9a69151 Forgot these
boisy
parents:
diff changeset
10 2. MAILX needs continue moving in the direction of more like UNIX's mailx.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
11
d47db9a69151 Forgot these
boisy
parents:
diff changeset
12 3. FILSERV need to make it smarter. :-) Right now it will attempt to
d47db9a69151 Forgot these
boisy
parents:
diff changeset
13 send any size file in a single message. This is "Not A Good Thing" (tm)
d47db9a69151 Forgot these
boisy
parents:
diff changeset
14 to do. Most systems bounce mail greater than 100K. FileServ needs to
d47db9a69151 Forgot these
boisy
parents:
diff changeset
15 split large files into smaller pieces for mail.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
16
d47db9a69151 Forgot these
boisy
parents:
diff changeset
17 The begins of the code to allow submitting files is there, but this
d47db9a69151 Forgot these
boisy
parents:
diff changeset
18 feature is not yet implement.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
19
d47db9a69151 Forgot these
boisy
parents:
diff changeset
20 Allow mailing list to be run by FileServ.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
21
d47db9a69151 Forgot these
boisy
parents:
diff changeset
22 4. UUCLEAN expand it so will scan the days uulog file and keep statistics
d47db9a69151 Forgot these
boisy
parents:
diff changeset
23 on UUCP calls. Be nice to know how many minutes you actually spent
d47db9a69151 Forgot these
boisy
parents:
diff changeset
24 for a day's/week's/month's phone calls.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
25
d47db9a69151 Forgot these
boisy
parents:
diff changeset
26 5. RMAIL allow regular expression parsing of addresses. This would allow
d47db9a69151 Forgot these
boisy
parents:
diff changeset
27 something along the lines of UNIX sendmail (though hopefully easier
d47db9a69151 Forgot these
boisy
parents:
diff changeset
28 to comprehend :-) ). Brad Spencer <brad@anduin.eldar.org> had some
d47db9a69151 Forgot these
boisy
parents:
diff changeset
29 ideas. If you want to try working something like this, contact Brad.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
30
d47db9a69151 Forgot these
boisy
parents:
diff changeset
31 6. POSTNEWS needs to be fixed. It still doesn't allow cross-posting
d47db9a69151 Forgot these
boisy
parents:
diff changeset
32 a follow-up article to more than one newsgroup. If the original
d47db9a69151 Forgot these
boisy
parents:
diff changeset
33 article was posted to multiple newsgroups, your follow-up only goes to
d47db9a69151 Forgot these
boisy
parents:
diff changeset
34 the group you are reading the article no. Not good.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
35 articles
d47db9a69151 Forgot these
boisy
parents:
diff changeset
36
d47db9a69151 Forgot these
boisy
parents:
diff changeset
37 7. READNEWS can't think of specific things, but I'm sure y'all will. :-)
d47db9a69151 Forgot these
boisy
parents:
diff changeset
38
d47db9a69151 Forgot these
boisy
parents:
diff changeset
39 8. Feed news- UUCPbb do allow you to provide a news feed to anyone right
d47db9a69151 Forgot these
boisy
parents:
diff changeset
40 now. We are limited to only receiving news. I would like to able to
d47db9a69151 Forgot these
boisy
parents:
diff changeset
41 provide news feeds to someone "downstream" from us.
d47db9a69151 Forgot these
boisy
parents:
diff changeset
42
d47db9a69151 Forgot these
boisy
parents:
diff changeset
43 9. Protocols. Currently only the 'g' protocol is supported. I would like
d47db9a69151 Forgot these
boisy
parents:
diff changeset
44 to try implementing the bi-directional 'i' protocol which Taylor (GNU)
d47db9a69151 Forgot these
boisy
parents:
diff changeset
45 UUCP uses. This should help cut down phone time. :-)
d47db9a69151 Forgot these
boisy
parents:
diff changeset
46
d47db9a69151 Forgot these
boisy
parents:
diff changeset
47 gproto.c could use a little more robustness. Boisy, Brad and I have it
d47db9a69151 Forgot these
boisy
parents:
diff changeset
48 talking to different versions of UUCICOs we had access to. When talking
d47db9a69151 Forgot these
boisy
parents:
diff changeset
49 to DEC Ultrix on the CoCo, gproto.c sometimes gets lost when it drops
d47db9a69151 Forgot these
boisy
parents:
diff changeset
50 some bits. UUCICO eventually times out. The code needs a little more
d47db9a69151 Forgot these
boisy
parents:
diff changeset
51 tweaking so dropped bits don't always leave the CoCo twiddling its
d47db9a69151 Forgot these
boisy
parents:
diff changeset
52 registers. :-)
d47db9a69151 Forgot these
boisy
parents:
diff changeset
53
d47db9a69151 Forgot these
boisy
parents:
diff changeset
54 10. Working with BBSs. I have not have any opportunity to getting UUCPbb
d47db9a69151 Forgot these
boisy
parents:
diff changeset
55 and the various OS-9 BBSs programs to work together. No reason why it
d47db9a69151 Forgot these
boisy
parents:
diff changeset
56 can't be done. If you do it, send along your work!
d47db9a69151 Forgot these
boisy
parents:
diff changeset
57
d47db9a69151 Forgot these
boisy
parents:
diff changeset
58 11. Other ideas?