From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <024501c04064$a14477a0$0ab9c6d4@cybercable.fr> From: "Boyd Roberts" To: <9fans@cse.psu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: [9fans] smtpfs Date: Sat, 28 Oct 2000 00:23:57 +0200 Topicbox-Message-UUID: 1e1129e4-eac9-11e9-9e20-41e7f4b1d025 looking at inferno's smtp module i thought why not an smtpfs? all you do is write the 822 message into /n/smtp and it parses the message and delivers it. it's trivial. a minimal 822 message is: Date: From: To: or: Date: From: Bcc: ok, we can toss the Date: 'cos the server can add that. we can toss the From: 'cos the Tattach has the uid. parsing To:/Cc:/Bcc: is trivial 'cos i have a yacc grammar that does that. so MH style 'comp' is just: cat <<'!' To: Cc: Bcc: Subject: ! sourced into say acme, then name the file /n/smtp and Put sends it.