Can we separate the mailboxes into a separate directory in CE

Can we separate the mailboxes into a separate directory in communication express 6.2?

navvith wrote:
we are using some other product which is combined with Communication express.. What "some other product"? I cannot help you if you continue to be extremely vague about what you are trying to achieve.
So thought whether we can separate the mailboxes for the users.I still have no idea what you are trying to do and more importantly why.
Regards,
Shane.

Similar Messages

  • I have gmail and hotmail account on my macbook. In gmail I can visualize all the mailboxes but in hotmail i only can see the inbox ¿how can I visualize the rest of the mailboxes? thanks

    I have gmail and hotmail account on my macbook.
    In gmail I can visualize all the mailboxes but in hotmail i only can see the inbox ¿how can I visualize the rest of the mailboxes?
    I have the same problem with my ipad; the solution would be the same?
    thanks

    Hello Sophie59
    You should be able to see two different tabs when setting up the email if you go to Other > Add Mail Account. Once you enter in the email address and password, you should be at the next screen to provide more details about the email as far as incoming and outgoing servers and at the top there will be a blue section to add it in as a POP or IMAP email account. Check out the article below for further troubleshooting and emails setup options.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    Regards,
    -Norm G.

  • How can we specify the Mailbox for Notes?

    In Mail.app, how can we specify the Mailbox for Notes (where the new notes will be resided)? It is now 'On My Mac'. I wish to change to my IMAP Mailbox so it sync with my iPhone by just checking email (not by syncing on iTunes).
    Thanks in advance.
    Message was edited by: Ekapon

    You could use the DecimalFormat or NumberFormat to do the job.
    double number 1234.567;
    DecimalForamt df = new DecimalFormat("###.##");
    String s = df.format(number);or
    double number 1234.567;
    NumberFormat nf = NumberFormat.getNumberInstance();
    nf.setMaximumFractionDigits(2);
    /* if needed.
       nf.setMaximumIntegerDigits(value);
       nf.setMinimumFractionDigits(value);
       nf.setMinimumIntegerDigits(value); */
    String s = nf.format(number);I didn't test the codes but they should work. For more information, please consult the documentations.

  • When moving a file using drag and drop, as I hover over the destination folder it no longer opens, so I can't drop the file into the folder.  Why?

    When moving a file using drag and drop, as I hover over the destination folder it no longer opens, so I can't drop the file into the folder.  Why?  I have a heirarchical embedded folder structure under \Documents.  Usually, as I drag the file to be moved over the various folders, they will blink twice, then expand/open to reveal contents (in Finder).  Now, when the file to be moved is held (hovering) over the destination folder, it will not blink or expand, so there's no place to drop the file.  If I release the mouse button, the file image disappears, showing that it is "going back to the place it came from", a.k.a. was not moved.  This just started happening.  I noticed it after upgrading to Mavericks.  Is this a bug or could anything else be causing this?

    As of today, Apple Support discovered during a remote support session with me that the same thing happens on their own system.  It is isolated to "Column View"; the Icon and List views in Finder behave correctly.  Issue is being escalated to engineering, and Apple will call to report status in a couple days.  In all likelihood, this is a bug that will need to be addressed in a future update.

  • Can you plug the kona3 into a macbook pro?

    can you plug the kona3 into a macbook pro?

    Recommended KONA 3 System:
    Apple Mac Pro with Dual-Core Intel Xeon Processors (2 GHz or better) with a minimum of 2Gb RAM for uncompressed SD or 4Gb for uncompressed HD. Use a Fibre Channel or SCSI external RAID for uncompressed SD/HD storage.
    Minimum KONA 3 System:
    Power Mac G5 (dual) PCI-Express, 2GHz with 2Gb minimum for uncompressed SD or 4Gb for uncompressed HD. Ensure your Macintosh has a PCI-Express slot for compatibility. Use a Fibre Channel or SCSI external RAID for uncompressed SD/HD storage.
    Recommended KONA 3X System: Apple Xserve 3 GHz Quad Xeon or Power Mac G5 (dual) 2.5 GHz or better with minimum of 2Gb RAM for uncompressed SD or 4Gb for uncompressed HD.
    PCI-X slot required (later G5s have these slots)
    Minimum KONA 3X System:
    Apple Power Mac G5 (dual) 2GHz with a minimum of 2Gb RAM for uncompressed SD or 4Gb for uncompressed HD. PCI-X slot required (later G5s have these slots)

  • How can I display the rows into columns.

    How can I display the rows into columns. I mean
    Create table STYLE_M
    (Master varchar2(10), child varchar2(10));
    Insert itno style_m
    ('MASTER1','CHILD1');
    Insert itno style_m
    ('MASTER2','CHILD1');
    Insert itno style_m
    ('MASTER2','CHILD2');
    Insert itno style_m
    ('MASTER3','CHILD1');
    Insert itno style_m
    ('MASTER3','CHILD2');
    Insert itno style_m
    ('MASTER3','CHILD3');
    Note : The Master may have any number of childs.
    I want to display like this..
    Master child1, child2, child3, .......(dynamic)
    MASTER1 CHILD1
    MASTER2 CHILD1 CHILD2
    MASTER3 CHILD1 CHILD2 CHILD3
    Sorry for disturbing you. Please hlp me out if you have any slution.
    Thanks alot.
    Ram Dontineni

    Here's a straight SQL "non-dynamic" approach.
    This would be used if you knew the amount of children.
    SELECT
         master,
         MAX(DECODE(r, 1, child, NULL)) || ' ' || MAX(DECODE(r, 2, child, NULL)) || ' ' || MAX(DECODE(r, 3, child, NULL)) children
    FROM
         SELECT
              master,
              child,
              ROW_NUMBER() OVER(PARTITION BY master ORDER BY child) r
         FROM
              style_m
    GROUP BY
         master
    MASTER     CHILDREN                        
    MASTER1    CHILD1                          
    MASTER2    CHILD1 CHILD2                   
    MASTER3    CHILD1 CHILD2 CHILD3             Since you said that the number of children can vary, I incorporated the same logic into a dynamic query.
    SET AUTOPRINT ON
    VAR x REFCURSOR
    DECLARE
            v_sql           VARCHAR2(1000) := 'SELECT master, ';
            v_group_by      VARCHAR2(200)  := 'FROM (SELECT master, child,  ROW_NUMBER() OVER(PARTITION BY master ORDER BY child) r FROM style_m) GROUP BY master';
            v_count         PLS_INTEGER;
    BEGIN
            SELECT
                    MAX(COUNT(*))
            INTO    v_count
            FROM
                    style_m
            GROUP BY
                    master;
            FOR i IN 1..v_count
            LOOP
                    v_sql := v_sql || 'MAX(DECODE(r, ' || i || ', child, NULL))' || ' || '' '' || ';
            END LOOP;
                    v_sql := RTRIM(v_sql, ' || '' '' ||') ||' children ' || v_group_by;
                    OPEN :x FOR v_sql;
    END;
    PL/SQL procedure successfully completed.
    MASTER     CHILDREN
    MASTER1    CHILD1
    MASTER2    CHILD1 CHILD2
    MASTER3    CHILD1 CHILD2 CHILD3I'll point your other thread to this one.

  • Can we send the data into different data target from single datasource how

    Hai
    can we send the data into different data target from single datasource how ?

    Hi,
    Create the transformation for each target and connect through DTP if you are in BI 7.0
    If it is BW 3.5 create transfer rules and load it Info source and then different update rules for different targets then load it using IP.
    If you are speaking about loading data from R3 data source to multiple data sources in BI
    Then follow the below step.
    1)create init IP's and run the IP's with different selection to different DSO(With same selection it is not possible).
    2)Then you will have different delta queues for the same data source in RSA7
    3)Your delta loads will run fine to different data sources from same DS in R3.
    Hope this helps
    Regards,
    Venkatesh

  • When you are sharing songs through wifi, can those songs be copied to another device?  Can you copy the songs into a playlist?

    When you are sharing songs through wifi, can those songs be copied to another device?  Can you copy the songs into a playlist?

    When you are sharing songs through wifi, can those songs be copied to another device?  Can you copy the songs into a playlist?

  • Can you make the iphone4 into a wifi hotspot to make ipad 3g

    can you make the iphone4 into a wifi hotspot to make ipad 3g

    http://www.tipb.com/2011/03/15/daily-tip-connect-ipad-iphone-personal-hotspot/
     Cheers, Tom

  • I have written an ebook that has been created for kindle. How can I export the book into iBooks author?

    I have written an ebook that has been created for kindle. How can I export the book into iBooks Author?
    I have tried converting the book to different files like, mobi, epub, pdf. By using an app on my iphone.
    I still cannot add it to iBooks Author.
    I'm stuck, Please help me!

    Either use copy/paste and then format/style as desired, or take it to Pages or WORD and insert chapters - which may still require resettling.
    If you're looking for a 1:1 port, with all styles and layout intact, you may be dissapointed, tho.

  • My mailboxes have disappeared when I installed Yosemite, but if I try to create a new mailbox by that name, it says I can not because the mailbox already exists  How do I get them to show up?

    I upgraded mu iMac to Yosemite now my mailboxes don't show up in my mail.  If I try to create a new mailbox with the same name, it tells me that that mailbox already exists.  How do I get my mailboxes to appear?

    The mailbox list is divided into categories with headings in caps, such as ON MY MAC. When you hover the cursor over one of those headings (except for MAILBOXES), you should see the word Show or Hide on the right. Click Show. The  MAILBOXES category can't be hidden.
    In each category, the mailboxes are arranged in groups, such as Inbox. To the left of each group is a small disclosure triangle. If the triangle points to the right, click it so that it points down.

  • I have three different ipods with music on them and have had to replace our computer as it was in a fire. How can we combine the ipods into one ipod.

    We had to replace our computer due to a fire and lost many of the fiels which were on them. Many were music files for the ipods, we have thre. Also, do not have ID's and passwords to the iTunes store.
    How can we combine the information so that they are all in each one or at least compbine everything into one ipod?

    Just so you know the method suggested by Nelsonleee will cost your $29.95 USD, Yamipod is free.

  • When I call an external program from Labview, how can I embed the interface into the front panel?

    I'm running Labiew 6i for Linux. I'm using a system exec.vi to call an external program to do image manipulation (since there is no IMAQ for linux). How can I embed the user interface of the external program into the front panel of Labview?

    As far as I know, the only way to embed other GUIs in LabView is an ActiveX in a container.
    As long as you are using Linux, try to place (moving them on the desktop ) the two windows linked (like those 3 of WinAmp).

  • My tech person on campus wants to know the apple number of the apple tv so he can directly hook the internet into the apple tv without a password. I can't seem to find anything but the serial number on the box or on the tv? Does anyone know where it is?

    I bought apple tv thinkng it would save me from my college life of not being able to have cable but it has cost more of a problem Be
    ause my campus is so large we have passwords to log into our network. When I called the tech people they siad if i had the apple number they would be able to connect it to the network without a password. I tought this was the source of my problem because i can not connect to the server because it is not loging in to my apple id and password that is my itunes account. I have checked it multiple times and thats not the problem. The other problem is I can not find the apple number the tech was describing to connect it to the network. Does anyone know the answers to my problems? Im a college student in dire need of tv!

    Hi,
    I imagine he means "encrypted wireless.
    I'm a little confused about what the IT guy wants. If your campus has a wireless network and others with laptops etc can connect to it them you should also be able to with the Apple TV. It seems to me that the campus IT guy needs to give you the name of the wireless network (SSID) and a  password so you can connect.
    Then go to Apple TV General/Network/Configure Wi-fi and follow instructions. The IT person should tell you what encryption they use WEP, WPA, WPA2 etc. Probably WPA2. You'll need this infor to connect.
    Then go to
    Apple TV General/Network/Configure TCP/IP and you will probably tell it to use DHCP and it should connect you to the campus network.
    After that you can sign into the iTunes store etc.
    Or am I missing something here?
    Pat.

  • Installing Adobe Creative Suite - NEW 21" late 2012 iMac - Don't want to buy superdrive!! How can I trick the computer into thinking the USB drive is a CD?

    I've got a new late 2012 imac, but I realize yes it doesn't come with a compact disc drive. I have an Adobe Creative Suite CS5.5 install disc with all the information included (serial). I copied the contents of the CD into a USB Flash drive, but I can't get it to install because it is looking for the content on the CD. Since I don't want to have to buy the external Superdrive!! How do I convince the computer into installing adobe via the files on the flash drive?

    Your question makes perfect sense to me. I would contact Adobe Supptrt Services from the contacts listed here:
    http://helpx.adobe.com/creative-suite/kb/install-creative-suite-5-cs5.html
    You will need adobe current serial number.
    I hope you'll post here with your results. I've interested know what happens.

Maybe you are looking for

  • To POP up the open sales order quantity in Sales order

    Hi gurus, I hav a requirement that for example,I raised an order for 100 Qty and delivered 80 materials 20 is open,So when i raise an order for the same material for 50 Quantity,I need to get POP up box saying that 20 qTY IS OPEN. in Sales order. I a

  • My early 2008 MacBook Pro

    My early 2008 MacBook suddenly crashed and displayed a white screen with the apple emblem which had lines through it and was pixelated. Now it won't boot up past the apple screen and still has lines through. I reset the dram and it didn't fix the pro

  • Facing Problem  In Using Oracle Database Cloud Backup Service

    Hi Everyone, I m trying to use Oracle Database Backup Service, for this i have done the following as mentioned in the documentation. http://www.oracle.com/technetwork/database/features/availability/twp-oracledatabasebackupservice-2183633.pdf 1.Downlo

  • OSB HowTo: Adding an endpoint using the customization file.

    Hi Guys, I want to add a new endpoint URL using the OSB customization file. My use case is, that we have single endpoints in the test environment but multiple (cluster) endpoints in the integration environment. So I though i can use the following Sni

  • Apps show up as installed while they aren't

    After doing a reinstall of lion my previously installed apps still show up in the mac app store as installed. Is there any way to reset my purchases or something so I can reinstall these apps? Edit, never mind, I had a backup drive connected with the