Sharing mail box

hello
I would know if it's possible to share the same mailboxes from different users
Thank's
Message was edited by: andrews111

no, that's not possible. what you can do is use the same IMAP email account. that will sync the mailboxes with the server so both users will effectively work with the same mailbox.

Similar Messages

  • Data Mining shared mail box using powershell via com object Performance is really bad.

    I was trying to pull a report from multiple shared mail boxes by configuring them in outlook. Everything works fine for me here but the problem is that the below script would need a minimum of 10-14 hours on weekly basis. Can you please comment me on how
    can I get more performance? My average mailbox details and my observations are as below:
    It would have about 35 sub folders recursively up to 3 levels in Inbox.
    It would have ~ 300,000 to 400,000 emails.
    I donot know if this can be easily accomplished via EMC Shell but I dont have it either.
    And these are configured in Outlook 2013.
    The biggest folder has about 60000 emails.
    Even plain export without any filter or calculated values in the output is taking the similar time.
    I have even tried to use pick folder and manually executed multiple instances (~10) for each folder but the performance was really worst.
    -------------------------Script Starts here--------------------------------------
    Filter WeeklyReport {If((($_.SentOn -ge ("12/14/2014" -as [datetime])) -and ($_.SentOn -le ("12/20/2014" -as [datetime])))){$_}}
    $ReportFileName="~\Desktop\EMail_Export_$(get-date -f yyyy-MM-dd-HH-mm).csv"
    function GetSubfolders($Parent) { 
        $folders = $Parent.Folders 
        foreach ($folder in $folders) { 
            $Subfolder = $Parent.Folders.Item($folder.Name) 
            Write-Host ("Started processing"+$folder.Name +" at "+$(Get-Date)+" which has "+$folder.items.Count + " items ") -NoNewLine
            $folder.Items | WeeklyReport | Select-Object -Property SenderEmailType,ConversationTopic,CreationTime,ReceivedTime,Importance,LastModificationTime,Size,Subject,CC,ReceivedByName,ReceivedOnBehalfOfName,SenderName,SentOn,SentOnBehalfOfName,To,SenderEmailAddress,Categories,@{N='FolderName';E={$($folder.Name)}}
    | epcsv -Path $ReportFileName -NoTypeInformation -Append
            Write-Host ($(Get-Date))
            GetSubfolders($Subfolder) 
    Add-Type -AssemblyName "Microsoft.Office.Interop.Outlook"
    $olFolders = "Microsoft.Office.Interop.Outlook.olDefaultFolders" -as [type]
    $outlook = New-Object -ComObject outlook.application
    $namespace = $outlook.GetNamespace("MAPI")
    $MailBox=$namespace.Folders | ?{$_.Name -eq "[email protected]"}
    $MailBoxInbox=$MailBox.Folders | ?{$_.Name -eq "Inbox"}
    Write-Host ("Started processing Inbox at "+$(Get-Date)+" which has "+$MailBoxInbox.items.Count + " items") -NoNewLine
    $MailBoxInbox.Items | WeeklyReport | Select-Object -Property SenderEmailType,ConversationTopic,CreationTime,ReceivedTime,Importance,LastModificationTime,Size,Subject,CC,ReceivedByName,ReceivedOnBehalfOfName,SenderName,SentOn,SentOnBehalfOfName,To,SenderEmailAddress,Categories,@{N='FolderName';E={'Inbox'}}
    | epcsv -Path $ReportFileName -NoTypeInformation -Force
    Write-Host ($(Get-Date))
    GetSubfolders($MailBoxInbox)
    $outlook.quit()
    -------------------------Script Ends here--------------------------------------
    --VenuGopal

    Aah, Sorry COM object....
    I have observed that for the execution of the below line hardly it is taking 1-2 seconds for processing 50,000 items and it is similar even if we dont apply the filter.
    $items=$Folder.Items.Restrict($sFilter)
    Just got a doubt and found that the performance issue is not while processing the data but export is taking so much of time. For Example: Execution of the below line starts giving out put on the fly.
    $items|Select-Property$props|ft-a
    Even Out-File is taking so much of time. So, I think I need to start looking out for string builder or Stream Writer rather using epcsv?
    --VenuGopal

  • Getting email notifications using EWS streaming notifications for a shared mail box

    Hi,
    I have been trying to get email notification for a shared mailbox using EWS streaming notifications. i am unable to get the notifications. Please can any one tell me how this task can be achieved.
    -Praveen

    I would recommend you to this link
    http://blogs.msdn.com/b/emeamsgdev/archive/2013/04/16/ews-streaming-notification-sample.aspx
    Mark Answered, if it solves your question and Vote if you found it helpful.
    Rohit Arora

  • Mail box OR Mail enabled database

    When configuring a sender mail adapter, do you have to use a mail box or can you use a mail enabled database ? We are using Lotus Notes and my company does not allow shared mail boxes.

    Hi ,
    mail box rather to say email server
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    Check this weblogs on this:
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    /people/michal.krawczyk2/blog/2006/02/23/xi-dynamic-name-in-the-mail-attachment--pseudo-variable-substitution
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e6c7911-0d01-0010-1aa3-8e1bb1551f05

  • Javamail - Access MS Exchange non default Mail Box

    Hi
    My MS Exchange user has access to multiple mailboxes on an Exchange Server.
    Using java mail I can connect to my default mailbox; however I cannot find away to connect to a non default mailbox that I have access to. I am using the "imap" protocol.
    Connection code is as follows.
    Properties props = System.getProperties();
    props.setProperty("mail.imap.auth.ntlm.domain",domain);
    Session session = Session.getInstance(props, null);
    session.setDebug(debug);
    store = session.getStore(protocol);
    store.connect(host, user, password);
    The function store.getSharedNamespaces() only returns a single entry in the array for "Public Folders".
    The function store.getPersonalNamespaces() returns a 0 length array.
    The function store.getUserNamespaces(user) returns a 0 length array.
    Is there any way to access another mailbox that the user has access to?
    Thanks for your help.
    Nick.

    Hi
    As a user I will have a mail box (or mail store). My colleagues will have their own mail boxes. There will also be some shared mailboxes. Typically permissions will ensure that users cannot access other users mail boxes and appropriate permissions will ensure that shared mailboxes are accessible by the permitted users.
    Within a mailbox, folders can be created for storing mails etc.
    From my user account I wish to be able to access a mailbox other than my own (default). Permissions have been correctly set so the some mailboxes are accessible to other users.
    If its possible to access another mailbox by using the folder, then what is the format for the folder that allows me to go beyond my users default mailbox.
    Example.
    I have mailboxes called.
    Nick1
    John1
    HelpDesk
    I connect to exchange as Nick1 and have access to mailbox Nick1 and HelpDesk. Using the javamail API I can access the emails and folders in the Nick1 mailbox, but cannot access the HelpDesk mailbox at all.
    Does that make it any clearer?
    Thanks.
    Nick.

  • Mail Box open in Other computer\account

    hi
    Is there any way to know if my mail box is open in other computer\account ?
    for Example Goole . Last Account Activity
    Thank you
    Dano

    Hi,
    In Exchange 2013, we can use
    Get-MailboxStatistics cmdlet to find Last Logon Time for a user with Exchange mailbox by the following command:
    Get-MailboxStatistics –Identity “user”
    Otherwise, please refer to the following link to get recent activity. The “Recent activity” page shows info about the activity in your Microsoft account, within the last 30 days. This includes any time that you signed in to your account, whether you used
    a web browser, your phone, an email app, a third-party app, or another method.
    http://www.microsoft.com/en-us/Account/Security/recentactivity.aspx
    Best Regrads.

  • Is there a limit to the number of mail boxes in mail?

    I cannot set up a new mailbox under the mail box menu within Mail. All I get is a "boing.

    Mail is set to check every 5 minutes.
    The error it reports is "Could not connect to the IMAP server. Check your network connection and that you entered the correct information in the Account preferences. Also verify that the server supports SSL. If it does not, uncheck the "Use SSL" checkbox in the Avanced tab of Account preferences"
    However, I'm sure it's not a problem with the settings because 1) these settings have been fine for weeks, and 2) if i inactivate any of the accounts the others (that are showing errors) no longer show errors).
    If I have fewer accounts connecting, or if I switch of SSL, then the errors go away.
    I would prefer to connect using SSL, which is why I'm not simply switching off SSL and forgetting about it.

  • Send an email to a mail box when generate a xml publisher report in R12

    Dears,
    I faced a tough problem about xml publisher, there is a user's requirement, they want to send an email to a common mail box after user run the xml publisher report in EBS R12 instance, and they can check the report in mail box, I have not met any reuqirement like this before, so anybody has the experience about this? and please kindly share it with me, thanks a lot.
    It seems I need upload the rtf file or xml file to a directory and then system will send the mail automaticlly, but I do not know the detail information.
    Best Regards
    Spark

    Hi Spark;
    Please check below thread which could be helpful for your issue:
    Concurrent Request Output via email
    Re: concurrent ouput to email
    Regard
    Helios

  • Lost Mail Boxes and Smart Boxes

    Hi can anyone give me some advice please as I have had to reinstall and have lost all of my smart boxes and some mail boxes which had valuable information.
    Thank you in advance for any advice you can give.
    Janey

    No, you are not doing anything wrong. The original e-mail stays in your inbox until deleted, which will also delete it from the Smart Folder. The Smart Mailbox is a 'sorting' tool,but it doesn't actual contain the e-mails.

  • I forgot My iCloud password, and i can not reset it as the system is not accepting the answer to the security questions and also the mail to my apple ID mail box is blocked, how can i reset my password for my apple ID.

    I forgot My iCloud password, and i can not reset it as the system is not accepting the answer to the security questions and also the mail to my apple ID mail box is blocked, how can i reset my password for my apple ID.

    Hello nmssns,
    Thank you for contacting Apple Support Communities.
    You can start with this article to reset your iCloud password. Depending on your exact circumstances, blocked email, forgot security questions, etc., there are links provided to guide you through those issues.
    About Apple ID security questions
    http://support.apple.com/kb/HT5665
    Regards,
    Jeff D.

  • How do I get rid of duplicate "in" and "sent" mail boxes?

    I have installed a new version of Thunderbird on a new machine and used Easy Transfer to move my mail boxes etc from my old machine. The problem is that I now have duplicate "in" and "sent" mail boxes. New in and sent mail only appears in one of them but I can't delete the other. I have deleted all messages in the extra "in" box (they were all duplicates) but have not been able to do the same with the messages in the duplicate "sent" box because the "deleted" folder where they would go is not big enough to take the 16000 messages in there (when I "select all" and "delete" it just says "deleted folder is full" when in fact there's nothing in it; I am assuming this just means it would not take all the messages to be deleted). Help please!

    Try rebuilding the global data base
    https://support.mozilla.org/en-US/kb/rebuilding-global-database

  • I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

  • How do I stop sharing mail with other users on my computer

    How do I stop sharing mail with other users on my Macbook pro?

    You may have to set up different user accounts in the computer if you wish to
    continue sharing the computer among other people, and only use the Mail app.
    Otherwise, if you use a webmail such as yahoo, gmail, or other, just use a browser
    and login each time; then there is no saving of your email to the computer as such.
    I've never used an email client software, nor had an ISP based email account. So
    my numerous computers have never downloaded email into software. No loss.
    But the answers do include setting up extra user accounts, not admin level, so the
    other users do not mess with the operating system; a standard account or just a
    guest account to use a browser to access web-based login email accounts, works.
    There are third-party email client for OS X, some are free applications, others are
    part of a larger browser product, such as SeaMonkey, & other Mozilla derivatives.
    They provide an email segment or client aspect; unlike Firefox that's a browser.
    Setup information should be within the Help viewer in the computer itself. Or by a
    simple search online, including the OS X version and any email client software
    your computer may have installed. Some browser software includes email client.
    Also there are several ways to go in this matter. I don't see questions, only answers.
    To learn how the Mail application works, if you want to import everyone's mail, then
    figure how to set up user accounts in the OS X. Or use web-mail & login by browser.
    Hopefully you can find the best solution for the unasked question.
    Good luck & happy computing!

  • I found the solution to a Mavericks bug on the Mail program. How can I share it? Several of my mail boxes stopped functioning properly when I updated to Mavericks. After long hours, I discovered that if I change the name of the mailbox, the content works.

    I found the solution to a Mavericks bug on the Mail program. How can I share it? Several of my mail boxes stopped functioning properly when I updated to Mavericks. The title of the mails stored in the mailbox appear, but the content was unavailable.
    After 4 long hours at the phone with the Apple staff unable to help me, I discovered that if I change the name of the mailbox, the contents of the mails stored there become available.
    Please, make this solution available to other people!

    You have found the the way to share it.   Include your problem and its solution in a forum post in the Mavericks forums.   Then mark you own post with a green solved star.
    Note.  You won't get any points for that; points are only awarded where you mark someone else's post as either helpful or solved.

  • How do i create a mail box in the SMTP server thru a java program

    How do i create a mail box in the SMTP server thru a java program. If it is possible thru a java program.pls suggest a mail server compatible for the above possibility to work.
    pls help ....

    Please let me know if it is not at all possible to
    create a user account automatically thru a program
    (java) in a mail server... how does yahoo work
    then..does he manually add a user to the mail
    server...By talking to a web server not a mail server.
    >
    Is not there any mail server that will allow us to
    create mailboxes for my java program.. how do the
    other web account services work..
    As I said mail servers do have management interfaces. You need to find one and then determine what the management interface is.

Maybe you are looking for

  • Calling a method on ear deployment.

    Hi, Our application needs to do some pre-processing when the application ear file is first deployed. Is it possible to execute custom code when a particular ear file is deployed to application server? I looked around and found few ways to do it, none

  • URGENT--------------------Problem in Inserting Japanese Content TO CLOB

    Hello, We are trying to insert the xml file containing japanese content into database table. I am getting some garbage characters inserted, if we try to insert the content of xml file into column of database table of type CLOB. PreparedStatement pstm

  • How to use an SWF file generated by Flex as a Stand Alone file

    Whenever we compile an MXML file, there is an SWF file generated. This file is not a standalone file and will not work on any other computer expect on the computer where there is a Project file created by the Flex builder. Why am I not able to use th

  • Return binary file in table entry

    Hi all, I wish to create RFC which will return in a table the binary code of a certain output (customer invoice). The motivation is that it'd be called by COM Object from external script and using "BinaryWrite" it will open Acrobat Reader and display

  • Interactive pdf bookmarks

    I have posted this on another forum. I would love to know if anyone has an answer. Even no would be acceptable. Has  anyone noticed when using the Book function and creating  Bookmarks  using the Interactive PDF maker, that the Bookmarks look for  th