Yet another perl script for loading Cyrus mailboxes

2001-10-13 Thread mills
People were asking about this perl script, so I thought I'd make it publically available. Using it, I was able to load a Unix mail spool containing about 5 gigabytes of mail, spread over about 17000 mailboxes, in just under five hours. load-imap is used to populate a Cyrus IMAP server from Unix

Re: Yet another perl script for loading Cyrus mailboxes

2001-10-13 Thread Ken Murchison
[EMAIL PROTECTED] wrote: > > People were asking about this perl script, so I thought I'd make > it publically available. Using it, I was able to load a Unix mail > spool containing about 5 gigabytes of mail, spread over about 17000 > mailboxes, in just under five hours. > > load-imap is used

Re: Yet another perl script for loading Cyrus mailboxes

2001-10-14 Thread mills
Ken Murchison writes: > >FYI, you might want to use the Cyrus::IMAP module and use AUTHENTICATE >PLAIN (or add PLAIN to Net::IMAP). By doing this, you can proxy for >each user by logging in as an admin and assuming the user's identity >(see RFC2595 for details). IMO this is cleaner than patching

Re: Yet another perl script for loading Cyrus mailboxes

2001-10-15 Thread Ken Murchison
[EMAIL PROTECTED] wrote: > > Ken Murchison writes: > > > >FYI, you might want to use the Cyrus::IMAP module and use AUTHENTICATE > >PLAIN (or add PLAIN to Net::IMAP). By doing this, you can proxy for > >each user by logging in as an admin and assuming the user's identity > >(see RFC2595 for de

Re: Yet another perl script for loading Cyrus mailboxes

2001-10-15 Thread Ken Murchison
[EMAIL PROTECTED] wrote: > > Ken Murchison writes: > > > >FYI, you might want to use the Cyrus::IMAP module and use AUTHENTICATE > >PLAIN (or add PLAIN to Net::IMAP). By doing this, you can proxy for > >each user by logging in as an admin and assuming the user's identity > >(see RFC2595 for de

Re: Yet another perl script for loading Cyrus mailboxes

2001-10-15 Thread Lawrence Greenfield
Date: Mon, 15 Oct 2001 12:25:24 -0400 From: Ken Murchison <[EMAIL PROTECTED]> It looks like using Net::IMAP is much easier for your app, so I hacked up a quick AUTH=PLAIN patch for it. There is a Authen::SASL package for Perl that might bear some investigation. It would be ultracool