3 messages in net.sourceforge.lists.courier-users[courier-users] Questions about perl:...
FromSent OnAttachments
Kanbyen GreyDawnAug 18, 2000 11:24 am 
Kanbyen GreyDawnAug 18, 2000 5:45 pm 
Kanbyen GreyDawnAug 18, 2000 7:15 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[courier-users] Questions about perl::imapActions...
From:Kanbyen GreyDawn (kanb@yahoo.com)
Date:Aug 18, 2000 11:24:09 am
List:net.sourceforge.lists.courier-users

Does perl::imap library functions work with Courier? Specifically:

MAILBOX FUNCTIONS

RFC2060 commands. These should work with any RFC2060 compliant IMAP mail servers.

create makes new mailboxes. Cyrus IMAP, for normal mailboxes, has the user. prefix. create returns a 0 on success or a 1 on failure. An error message is placed in the object->{'Error'} variable on failure. create takes an optional second argument that is the partition to create the mailbox in (I don't know if partition is rfc or not, but it is supported by Cyrus IMAP and Mirapoint).

delete destroys mailboxes. delete returns a 0 on success or a 1 on failure. An error message is placed in the object->{'Error'} variable on failure.

list lists mailboxes. list accepts wildcard matching

I'm looking to create a web interface to administer a large installation over multiple boxes authenticating to LDAP. If I could create the maildirs on boxes via perl with imap calles to Courier-imap, life would be simpler.

Thanks