plan9fox/sys/src/cmd/upas
2013-10-30 03:12:53 -04:00
..
alias
bayes
common fix permissiosn for upas and telco rc script 2012-10-25 18:51:55 +02:00
filterkit
fs upas/fs: fix potential filedescriptor leaks 2013-09-15 14:45:57 +02:00
marshal upas/marshal: change Inline: to Include: header, interpret even withou -8 flag 2013-01-01 16:27:01 +01:00
misc upas: fix original mail in /sys/src/cmd/upas/misc 2012-12-04 08:02:50 +01:00
ml
ned nedmail: recognize image/jpg mimetype 2013-05-04 07:03:37 +02:00
pop3 tls: fix various tlsClient()/tlsServer() related bugs 2013-09-14 19:19:08 +02:00
q
scanmail
send fix permissiosn for upas and telco rc script 2012-10-25 18:51:55 +02:00
smtp smtp: fix free on uninitialized pointer 2013-10-30 03:12:53 -04:00
unesc
vf fix utf and rune handling in preparation for 32bit runes 2012-12-31 21:09:46 +01:00
mkfile
README

Once upon a time Upas ran on many versions of Unix.
This is a partial rewrite to ANSI C specifically for Plan 9.
It uses's Plan 9's bio library instead of stdio and Plan 9's
regular expression library.

I've tried to make portability possible but it has
never been ported.  To port Upas to another system:

	- port Plan 9's libbio library working on that system (already available).
	- port Plan 9's regexp library working on that system (should just compile).
	- rewrite common/libsys.c to reflect system calls for that system.  This
	  file contains all the really system dependent code that differs between
	  Plan 9 and each Unix.  This includes file management, signal
	  handling, process control and error handling.
	- change the important directory trees in common/mail.c to reflect
	  where you want things like 
	- get the ARGBEGIN/ARGEND/ARGF macros from Plan 9's libc.h
	- get the include files correct in common/sys.h
	- rewrite smtp/mxdial to use the conventions of that system
	- rewrite runq.c to walk queues on that system.