How to create a mailbox like INBOX

Hi all!I want to cennect to my mail server and create other mailboxs like INBOX with java mail API.But I don't know how to start.Your help will be grateful appreciated!
[191 byte] By [metalcure] at [2007-9-26 3:12:01]
# 1

just two steps.....

1. call

Folder urNewFolder= [defaultfolder].getFolder(String theNameUWantToGive).

2.call urNewFolder.create(int type) method (in Folder class type is kind of folder u require i.e read only write only etc.) returns boolean true if created successfully.

now urNewFolder is a fully qualified folder

pawan

pkshnarnond at 2007-6-29 11:20:02 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Thank you,I get it!
metalcure at 2007-6-29 11:20:02 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...