How can i migration netscape messaging 3.6 mailbox to iplanet messaging 5.2 mailbox

how can i migration netscape messaging 3.6 mailbox to iplanet messaging 5.2 mailbox

Once you have created all the users on the directory, you can use mboxutil and deliver, to copy the mails from one box to another. I have done this twice, but I can't send you the scripts for a legal problem.
If a user on the NMS3.6 use pop, there is only a folder called uid/inbox, with something like:
./uid/inbox/__VALIDITY__
./uid/inbox/__lock__
./uid/inbox/__deliver__
./uid/inbox/__GENNAME__
./uid/inbox/__highest__
./uid/inbox/20020106172021.AAA.4ce2af5a
./uid/inbox/20020106215444.AAA.4ce2af5a
./uid/inbox/20020106232803.AAA.4ce2af5a
./uid/inbox/20020106233026.AAA.4ce2af5a
All the files that begin with _ are useless. And the files like 200... are the emails. So you have the uid, and the files that you have to copy.
To deliver an email to a user, that user MUST have a mailbox. So first you have to create the mailbox, through execute "mboxutil -c user/uid/INBOX", after that you can copy the email using, "deliver -m inbox uid < ./uid/inbox/20020106172021.AAA.4ce2af5a".
You can use a script to first create all the mailboxes, after that you can deliver all the emails.
If your users use IMAP, then they can have differents folders, the idea is the same, first create all the folder(always create the INBOX first), in the _MAILBOX.LST file there is a list of the folders of every user.
Best regards
eos no mas

Similar Messages

  • How to migrate netscape messaging 4.15 to iplanet messaging 5.2 on solaris

    How to migrate netscape messaging 4.15 to iplanet messaging 5.2 on solaris. Any guide is available ?

    Hi,
    Below given is the Migration guide from iPlanet. Follow the instructions given carefully. Also, you would like to check out the Release notes for any known gotchas.
    http://docs.sun.com/source/816-6017-10/single.htm#44598
    Regards,
    Preethy

  • How can I migrate an Aperture library from an external HDD with Mac OS Extended (Journaled, Encrypted) format?

    How can I migrate an Aperture library from an external HDD with Mac OS Extended (Journaled, Encrypted) format?
    I used to store my pictures on an external hard drive using the latest version of Aperture. Now I tried migrating my Aperture library to Photos. However, after a short moment an error message popped up telling me that "Photos was unable to make a copy of your library before preparing it. Photos does not have the necessary permissions...".
    My external HDD doesn't need any permission repairs nor is the system prohibited to read from or write to it.
    Thanks for any advice in advance!
    Gohtac

    My guess is that the encryption is the problem for the new app.

  • I'm gonna to change machine. how can I migrate license between old to new PC? (creative cloud)

    how to switch license if I buy a new computer?
    sorry for my english

    thanks
    2014-11-14 0:23 GMT+01:00 Jeff A Wright <[email protected]>:
        I'm gonna to change machine. how can I migrate license between old to
    new PC? (creative cloud)
    Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright?et=watches.email.outcome>
    marked John T Smith
    <https://forums.adobe.com/people/JohnTSmith?et=watches.email.outcome>'s
    reply on I'm gonna to change machine. how can I migrate license between
    old to new PC? (creative cloud)
    <https://forums.adobe.com/thread/1633443?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/6923056?et=watches.email.outcome#6923056>

  • How can I migrate everything from one account to another on same computer?

    How can I migrate everything from one account to another on same computer?

    Transferring files from one User Account to another

  • How can i print text messages from my htc amaze to my deskjet 3050A

    how can i print text messages from my htc amaze to my hp deskjet 3050A

    Hi,
    I believe the phone uses Android OS, v2.3.4 (Gingerbread) therefore you can use one of these applications:
       http://www.printeron.com/apps/androidprinting.html
       https://market.android.com/details?id=com.pauloslf​.cloudprint&hl=en
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can i display the message

    public class Userdefined extends Exception {
              Userdefined(String sparam){
              System.out.println(sparam);
              Userdefined(){
         private static int acno[]={100,105};
         private static double bal[]={100.00,200.00};
         public static void main(String args[]) {
              try{
              for(int i=0;i<2;i++)
                   System.out.println("ACCCCNO------>"+acno[i]+"BAl------>"+bal);
                   if(bal[i]<150.00)
              Userdefined udexp=new Userdefined("bal less");
              throw udexp;
              catch(Userdefined e){
                   System.out.println("--->"+e);
    How can i display the message "less amt" using my parmeterized constructor.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    VinayTK wrote:
    How can i display the message "less amt" using my parmeterized constructor.Erm ... what? You can't --- at least not with the stuff you've got there.
    A properly formed question, with some idea of what you're trying to accomplish would be a huuuuge help.
    Winston
    BTW: Congratulations. At my age, 'first's in computing are rare; but it's definitely the first time I've seen an Exception class with a main() method.
    Edited by: YoungWinston on Sep 1, 2009 9:46 AM

  • How can I send a message from database to a J2EE application?

    How can I send a message from database to a J2EE application?
    If I have a codetable in database that has new or modified values I have to refresh the codetable in my J2EE application.
    Most effective way would be send a message to initiate a table reload from J2EE app, but I don't know how to do this.
    Now I have a background thread that regular reads the table and looks for changes.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • How can I send a message to multiple contacts using "groups".

    How can I send a message to multiple contacts using "groups".
    It was easy on my sony ericssonn....do i need to download an app?

    There is no group send option like you are looking for.
    To send to a group you have to pick each person you want to send to and send as a group that way. Then don't delete that SMS thread and you can reuse it again later.
    As for an app, well SMS works via your carrier and the OS, not something an App can do unless the app send the data to them (a third party) and then they relay it to the carrier. Do you really want to be sending your SMS to some 3rd party first?

  • How can we trigger error message in BADI PARTNER_UPDATE

    Hi All,
    I have implemented a BADI PARTNER_UPDATE. In this I have validation ( Error Message ) on saving buisness partner.
    It is giving the error message but it freeze all the fields. On pressing enter it goes for short dump.
    In short dump it gives error The COMMIT WORK processing must not be interrupted.
    Kindly suggest me that how can we pass error message and it also does not freeze the fields.
    Regards,
    Narendra Goyal

    Hi Narendra,
                          How are you trying to display message.
    Is it using message service class instance of message statement (which should not be used, as that is for GUI messages) or using collect FM or by adding to genil message class container.
      Please try different approaches and see what works for you.
    Thanks,
    Rohit

  • How can I migrate data from an old MBA to a new one without having access to the screen of the old one? The screen of the old MBA is damaged !

    How can I migrate data from an old MBA to a new one without having access to the screen of the old one? The screen of the old MBA is damaged !

    If your "older" MBA has a Thunderbolt port then it isn't that old. See Target Disk Mode about how it's used. Note that without a monitor you won't be able to tell from the screen when it has fully started, and if it succeeded in starting in TDM. If it did, then the hard drive should appear on the Desktop of your new computer. You can then access it to transfer your files. You can even use Migration Assistant or any backup utility to transfer data. Just don't try to transfer system files.

  • HT3529 How can I print a message conversation?

    HOw can I printout a message conversation? I need a legal copy of one.

    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Whether either of these programs would produce a "legal" copy is something only your attorney could answer.
    Best of luck.

  • How can i print text message from my iPhone?

    I have an iPhone 5S.  How can I print text messages to save those conversations?

    Did you try to copy and paste the content into another app, like notes or Mail and then send it to the printer?

  • How can i Migrate from EJB Application to Hibernate

    Hi ,
    i have developed web services using EJBs. can i create web services for my hybernate application. can anybody please help me for that??
    please advice me how can i Migrate from my EJB Apps to Hibernate.
    thanks & Regards,
    nagalaxmi

    Hi
    Check this link
    http://www.devx.com/Java/Article/27954
    Sameer

  • How can I select all messages in Inbox, Trash and/or Bin in one go to delete them.  I currently have 3000  unwanted messages in my Bin box and wish to delete them without having to individualy select them 50  at a time.y

    How can I select all messages in either my Inbox, Trash and /or Bin in one go to delete them all in one go.  I currently have 3000+ unwanted messages in my Bin

    Click on the inbox then Edit>Select All (if you are using Mail, if not you'll have to tell us which mail program you use) repeat in other mailboxes as needed.

Maybe you are looking for

  • Problem with Dynamic Table Name

    Hello all, I am having trouble using a dynamic table name. I have the following code..... declare l_cur sys_refcursor; l_ID int; l_tableName varchar(30); BEGIN open l_cur for select hkc.ColumnID, mapping from &HKAPPDB_Schema_Name..doctablemapping ddm

  • Java Script and PHP Issue

    I am using a JS date picker and it works great all by itself. However when I link it to a  MySQL db the JS no longer works.  Here is my source code below any help would be appreciated. Thanks Joe <?php require_once('Connections/Runin_db.php'); ?> <?p

  • What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?

    What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)? Thanks Mark

  • My screen is immediately after opening Photoshop frozen and I can no longer work with it?

    I have a mac. Now when I open a picture in Photoshop Elements 12 and I do an action like painting a dot, my whole photoshop Is stuck and my screen is frozen. What should I do?

  • Help with my D20

    Can I use a Intel Xeon X5670 in my Lenovo D20, I see the detailed specifications on the lenovo website state that the motherboard will support Intel® Xeon™ Dual Core processor with up to 4MB L2 cache and Intel® Xeon™ Quad Core processor with up to 8M