From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: "Steve Simon" Date: Tue, 3 Apr 2007 17:40:02 +0100 To: 9fans@cse.psu.edu Subject: Re: [9fans] request for examples In-Reply-To: <13426df10704030823x1730619fm410b5ec8849dcfdd@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 3cded958-ead2-11e9-9d60-3106f5b1d025 > no. I still don't have TLS set up for imap, for example. It just won't work. Strange, it just works for me (sorry). I did have problems initially as the server I connect to (MS Exchange) wanted to use a subtly different auth scheme but I got a patch in last year to add that to upas/fs. for what its worth I run this script on boot to pick up my email. #!/bin/rc rfork en upas/fs -f /imaps/mail.mycompany.com/myusername cd /mail/fs/mbox while(){ for (f in `{ls | grep '^[0-9]+' | sort -n}){ upas/send -r inject!steve < $f/raw rm $f } sleep 60 } -Steve