Re: [Twisted-Python] FUSE

2010-04-04 Thread exarkun
On 03:21 am, donal.mcmul...@gmail.com wrote: I'm interested in doing some FUSE stuff with Twisted, mostly to prototype some ideas for profiling. Can anyone expand on Glyph's comment [1]: 8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Python FUSE bindings obscure the issue because

Re: [Twisted-Python] FUSE

2010-04-04 Thread Pavel Pergamenshchik
On Sun, Apr 4, 2010 at 4:21 AM, Donal McMullan wrote: > I'm interested in doing some FUSE stuff with Twisted, mostly to > prototype some ideas for profiling. Can anyone expand on Glyph's > comment [1]: I wrote some code for this a while ago. I don't remember anything about it, but it might be a r

[Twisted-Python] smtp-server: issue with checkers.FilePasswordDB and hash

2010-04-04 Thread aleu...@inwind.it
Hi all, I use FilePasswordDB with a small smtp-server (a very small toy), but when I use the hash function the authentication doesn't work. Here few lines of code: """ def _hash(name, clearpsw, hashedpsw): # a very simple hash function ? return md5.md5(clearpsw).hexdigest() # retur

Re: [Twisted-Python] smtp-server: issue with checkers.FilePasswordDB and hash

2010-04-04 Thread Lucas Taylor
On 4/4/10 5:41 PM, aleu...@inwind.it wrote: > Hi all, >I use FilePasswordDB with a small smtp-server (a very small toy), but when > I use the hash function the authentication doesn't work. > > Here few lines of code: > """ > def _hash(name, clearpsw, hashedpsw): > # a very simple hash fun