CFEXCHANGECALENDAR with multiple mailboxes

I'm trying to pull the calendar from multiple mailboxes. I'm looping over a list of the mailboxes in question, and just using CFEXCHANGECALENDAR on the specfic mailbox.
The first CFEXCHANGECALENDAR works fine, but any subsequent CFEXCHANGECALENDARs on the page fail with "Could not login to the Exchange server. Verify the server name, username, and password. Ensure that proper client certificates are installed." I've verified each of the mailboxes separately, and even changed the order of the list I'm looping over so different mailboxes are in the first slot. Always the first CFEXCHANGECALENDAR is the only one that works. I assume it has something to do with the initial connection not being fully closed before trying to connect to the next mailbox, but unsure how to solve the problem.
How can I use CFEXCHANGECALENDAR to grab the calendar from multiple mailboxes on a single page load?
Thanks!

Hi and Welcome to the Forums!
You did not say, but I guess that you are on BES rather than BIS/OWA. As such, you should investigate activating Hard Deletes:
KB04853How to enable hard deletes on the BlackBerry Enterprise Server
Good luck!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Synchronisation problem with multiple mailboxes

    We have a user who has Microsoft Outlook set up to show multiple mailboxes.  It seems that if he moves something from his inbox to another folder within his own mailbox, then this move is synchronised down to the BB fine, but if he moves it from within his own mailbox to another mailbox, then the move isn't noticed, and the item sits in the inbox on his BB indefinitely.
    Two questions:
    1) Any idea how to fix this?
    2) Is there any way to force a full resync of the mailbox to get it back in step?
    Solved!
    Go to Solution.

    Hi and Welcome to the Forums!
    You did not say, but I guess that you are on BES rather than BIS/OWA. As such, you should investigate activating Hard Deletes:
    KB04853How to enable hard deletes on the BlackBerry Enterprise Server
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Exchange 2010 - Selecting display names for users with multiple mailboxes

     Hi all,
    This isn't so much of a problem, but more of a "What is the best way to handle this" sort of thing.
    I have a client with Exchange 2010 and multiple domains. Because they must be able to send as each domain, I have them setup with individual accounts/mailboxes for each domain. We're at a point that they have three domains which means three accounts per
    user and three listings in the GAL. Their original accounts shows up as Smith, John. The second domain added shows up as First last. I'm at a loss what to use for the third. They want each account to show up in the GAL so that other users can send account
    specific stuff to them if needed, but I'm trying to figure out how to keep this relatively organized and not make the name on outbound emails too convoluted.
    Any suggestions on a format I can use that will make these accounts stand out from each other in the GAL, but not be a hot mess on the recipient end either?

    Smith, John (Company A)
    Smith, John (Company B)
    Smith, John (Company C)
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Issues with multiple mailboxes

    This is driving me nuts. When I get an email, it shows up in my Inbox, and my gmail or aol mail boxes. Is there a way to make all mail just show up in my Inbox?
    [IMG]http://img600.imageshack.us/img600/8292/mail1t.png[/IMG]
    http://imageshack.us/photo/my-images/600/mail1t.png/
    The images show what I mean. Seriously, it takes to much time and effort to delete the same mail in two mailboxes.
    Any help is very much appreciated.

    Thanks Ed. Actually the shared mailboxes in question are online as well. Obviously I was not involved in the transition and I misunderstood what's still on-premises. There are some shared mailboxes still on-premises, but these are accessed by external clients
    through XenApp and are not part of the performance story.
    Okay, so we're better off with keeping shared mailboxes online. Is there anything at the client side we can do to improve Outlook performance? I think the main cause of Outlook performance issues are link latency and server response time, but I wasn't able
    to find any info on how client side Windows indexing affects an online mailbox?
    Thanks

  • HT5361 Why is that when I am composing a new message do I end up with multiple versions of my message I am composing up in my Google Trash mailbox?  How can I stop this from happening?

    Why is that when I am composing a new message do I end up with multiple versions of my message I am composing up in my Google Trash mailbox?  How can I stop this from happening?

    It was very hard to see what the box says because the message displays for less than one second. However, I was able to record it with my iphone and pause it until I got a shot of the message. The box says the following:
    "Do you want the application “java” to accept incoming network connections?
    Clicking deny may limit the application’s behavior. This setting can be changed in the Firewall pane of Security preferences."
    I did make some changes. I will see if it works.
    Thank you!!!

  • Add-MailboxPermission for multiple users on multiple mailboxes

    I have a need to grant a large number of users full access to an equally large number of mailboxes. I've previously been able to do this easily in the management shell where I have multiple users for one mailbox (or vice-versa; one user for multiple mailboxes)
    by using one of the following 2 commands:
    get-content c:\xxxx.txt | foreach { Add-MailboxPermission $_ -User user.name -AccessRights FullAccess}
    or
    get-content c:\xxxx.txt | foreach { Add-MailboxPermission examplemailbox -User $_ -AccessRights FullAccess}
    This works fine for when there are only multiple entries on one side of the equation, but using this method, I would need to run the command multiple times to get all of the accesses set up as requested. So I've been looking to see if there is a way of writing
    one command that could achieve it all in one go.
    What I've been looking at doing is creating a .csv file, filled as such;
    name,mail
    user.name1,mailbox1
    user.name2,mailbox2
    And then writing a shell command like the below:
    import-csv c:\xxxx.csv | foreach { Add-MailboxPermission $_.mail -User $_.name -AccessRights FullAccess}
    Will this achieve the result that I'm aiming for? or is it going to be easier to just go with the more time-consuming method of just having the multiple entries on one side of the equation?

    Hi,
    I have a test in my environment, you can use the following cmdlet to grant multiple users full access to multiple mailboxes.
    Import-csv c:\test1.csv | foreach { Add-MailboxPermission $_.mail -User $_.name -AccessRights FullAccess}
    For example, if I want to grant amy02, amy03 full access permission to amy01; grant amy01, amy02 full access permission to amy03, the test1.csv file should be:
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Mail with multiple gmail accounts sending messages from wrong email, other than the one i select

    mail with multiple gmail accounts sending messages from wrong email, other than the one i select:
    i'm using mail on osx 10.7 with multiple gmail accounts. when i create an email, i check to be sure i'm sending/replying from the correct account. after i send it, somehow it actually sends it from a different account, other than the one i've selected "from." this is evidenced by the reply email i receive. how can i fix this?
    in preferences, i have "send new messages from : account of selected mailbox"

    From the Mail menu bar, select
              Mail ▹ Preferences...
    The Mail preference dialog opens. Select the Composing tab from the row of icons at the top. From the menu labeled
              Send new messages from:
    choose
              Account of selected mailbox
    Note that this setting may have no effect if you start a new message while a VIP or smart mailbox is selected in the mailbox list. Those are saved searches, not actual mailboxes.
    If the problem remains, select the Accounts tab in the preference dialog, then select the affected account in the list on the left.
    In the Account Information pane, select the correct server in the menu labeled
              Outgoing Mail Server (SMTP)
    If there's only one server in the menu, select
              Edit SMTP Server List...
    and add a new server with the correct settings. If you're not sure how to do that, try the Mail Settings Lookup.
    Another possibility is that the wrong card in your address book is selected as yours. Select your card in the Contacts application. Then select
              Card ▹ Make This My Card
    from the menu bar.

  • How to query multiple mailboxes?

    I have a multiple mailboxes in my outlook but I need to query the 2nd mailbox I have using EWS to move items and read items from that specific mailbox with a windows application I'm developing.  Whenever I try to use the code below I get a error with
    the .dll.
    var userMailBox = new Mailbox("[email protected]");
    var folderId = new FolderId(WellKnownFolderName.Inbox, userMailBox);
    var itemView = new ItemView(50);
    var userItems = service.FindItems(folderId, itemView);
    foreach (var item in userItems)
    textBox2.Text += item.Subject;
    The error shows up when it hits the var userItems statement.
    An unhandled exception of type 'Microsoft.Exchange.WebServices.Data.ServiceResponseException' occurred in Microsoft.Exchange.WebServices.dll
    If anyone has another solution that would be great.

    Hi,
    In order to resolve your problem more efficiently, I recommend you ask your question on the Exchange Server Development forum which is staffed by more experts specializing in this kind of problems to get better help. Thanks for understanding.
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrdevelopment
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Users with multiple primary email addresses

    I have some users that have multiple email addresses. I need to keep these email mailboxes completely separate. I do not want proxy email accounts all going into one inbox. So, how can I create multiple mailboxes for the same user ([email protected] and
    [email protected])? I need userA to log into each email account separately. I basically need a way for the system to see these as two different users all together, the problem being the username login only uses the userA
    portion and not the whole address. Any help would be appreciated.               

    User A can have one mailbox associated with his ID.  You can create other "User A" mailboxes with different names and e-mail addresses as shared mailboxes and grant User A full mailbox rights and send as right.  User A can
    then connect to each one of them separately.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • EWS complex searchfiltercollection with multiple logical operators

    Hi everyone,
    Can you help me, how to make a searchfiltercollection with multiple logical operators?
    I would like to filter by sender and receiver in that way: (sender1 or sender2) and (receiver1 or receiver2)
    My solution doesnt work:
    //filter email sender
    ArrayList<SearchFilter> filterEmailFromArray = new ArrayList<SearchFilter>();
    filterEmailFromArray.add(new SearchFilter.IsEqualTo(EmailMessageSchema.Sender,new EmailAddress("[email protected]")));
    filterEmailFromArray.add(new SearchFilter.IsEqualTo(EmailMessageSchema.Sender,new EmailAddress("[email protected]")));
    SearchFilter filterEmailFrom = new SearchFilter.SearchFilterCollection(LogicalOperator.Or,filterEmailFromArray);
    //filter email received by
    ArrayList<SearchFilter> filterEmailToArray = new ArrayList<SearchFilter>();
    filterEmailToArray.add(new SearchFilter.IsEqualTo(EmailMessageSchema.ReceivedBy,new EmailAddress("[email protected]")));
    filterEmailToArray.add(new SearchFilter.IsEqualTo(EmailMessageSchema.ReceivedBy,new EmailAddress("[email protected]")));
    SearchFilter filterEmailTo = new SearchFilter.SearchFilterCollection(LogicalOperator.Or,filterEmailToArray);
    //final filter
    ArrayList<SearchFilter> filterExchangeArray = new ArrayList<SearchFilter>();
    filterExchangeArray.add(filterEmailFrom);
    filterExchangeArray.add(filterEmailTo);
    SearchFilter filterExchange = new SearchFilter.SearchFilterCollection(LogicalOperator.And,filterExchangeArray);
    This filter finds me 0 results, what is wrong.
    Thanks in advance

    What version of Exchange are you using ? the following works for me against Exchange Online but only if you use the X500 address of the mailbox rather then the SMTP address eg
    SearchFilter sf1 = new SearchFilter.IsEqualTo(EmailMessageSchema.Sender, new Microsoft.Exchange.WebServices.Data.EmailAddress("[email protected]"));
    SearchFilter sf2 = new SearchFilter.IsEqualTo(EmailMessageSchema.Sender, new Microsoft.Exchange.WebServices.Data.EmailAddress("[email protected]"));
    SearchFilter sfc1 = new SearchFilter.SearchFilterCollection(LogicalOperator.Or) { sf1, sf2 };
    SearchFilter sf3 = new SearchFilter.IsEqualTo(EmailMessageSchema.ReceivedBy , new Microsoft.Exchange.WebServices.Data.EmailAddress("/O=EXCHANGELABS/OU=EXCHANGE ADMINISTRATIVE GROUP (FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=426976116074436785E74E4DD1C079D9-GSCALES1"));
    SearchFilter sf4 = new SearchFilter.IsEqualTo(EmailMessageSchema.ReceivedBy, new Microsoft.Exchange.WebServices.Data.EmailAddress("/O=EXCHANGELABS/OU=EXCHANGE ADMINISTRATIVE GROUP (FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=426976116074436785E74E4DD1C079D9-GSCALES2"));
    SearchFilter sfc2 = new SearchFilter.SearchFilterCollection(LogicalOperator.Or) { sf3, sf4 };
    SearchFilter filterExchange = new SearchFilter.SearchFilterCollection(LogicalOperator.And) { sfc1,sfc2, };
    This makes sense as the ReceivedBy property refers to the Mailbox that received the Message not the email address that was used, eg if you have a mailbox with two alias's the ReceivedBy (which relates to the PidTagReceivedByEmailAddress
    http://msdn.microsoft.com/en-us/library/office/cc839550.aspx ) will always be the primarySMTP of the Mailbox. So why are you trying to use multiple ReceivedBy's ?
    Cheers
    Glen

  • Set storage quota on multiple mailboxes using PowerShell?

    I need to set storage quota limits on multiple mailboxes using PowerShell. I understand I can create a .csv file with aliases and pipe that into a cmdlet, eg.,
    Import-CSV "C:\temp\alias.csv" | % {Set-Mailbox -identity $_.alias -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false
    Is there any other way of doing this with a much more robust script?
    Any help would be much appreciated.

A: Set storage quota on multiple mailboxes using PowerShell?

Hi,
Is there any special attribute for these multiple mailboxes? such as they are from a specific OU or a distribution group etc.
If there is, we can direct use the filter to pick out these mailboxes instead of create .csv file for them. The following example can set storage quota for mailboxes in a distrobution group Group1:
Get-DistributionGroupMember -Identity Group1 | ForEach{ Set-Mailbox -identity $_.Name -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false}
The following example is used to set storage quota for mailboxes from Exchange Department:
Get-Recipient | Where-Object {$_.Department -eq 'Exchange'} | ForEach{ Set-Mailbox -identity $_.Name -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false}
Regards,
Winnie Liang
TechNet Community Support

Hi,
Is there any special attribute for these multiple mailboxes? such as they are from a specific OU or a distribution group etc.
If there is, we can direct use the filter to pick out these mailboxes instead of create .csv file for them. The following example can set storage quota for mailboxes in a distrobution group Group1:
Get-DistributionGroupMember -Identity Group1 | ForEach{ Set-Mailbox -identity $_.Name -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false}
The following example is used to set storage quota for mailboxes from Exchange Department:
Get-Recipient | Where-Object {$_.Department -eq 'Exchange'} | ForEach{ Set-Mailbox -identity $_.Name -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false}
Regards,
Winnie Liang
TechNet Community Support

  • Mail with multiple macs.

    Lets say you own 2 macs...
    Lets say you have 6 or so email addresses... yahoo, gmail, .mac etc.
    How do you get both mac's mail apps and mailboxes to mirror one another? Is this possible?
    I don't mean mirror the same keychains and folder structure that synching does. I mean if I send a pdf from 1 mac and then I happen to be using the other mac and I want to find that pdf in my sent mailbox... I can find it! Is this doable? I thought synch would take care of this? I also thought synch would ALSO do this on .mac so I could ultimately have a web based version of my mailboxes and multiple machine based mailboxes ALL seeing the same stuff. Thanks for any help. Maybe I'm missing something?

    I've done that but there are a few issues:
    1. When I send an email in Apple Mail on my laptop... when I go to my tower Apple Mail that email does not show up in my sent folder.
    2. Apple Mail retrievs Inbox messages but it doesn't seem to import Sent messages
    3. .mac is totally in the dark with all of this activity and I can't log on at a friends computer and be up to date.
    As much as I like Apple Mail it doesn't seem practical UNLESS you only use Mail from 1 computer and you're not dependent on retrieving mail from any other computer. With multiple computers today, multiple email addresses and pda, phones etc it seems like this needs to be nailed so someone can see everything wherever they happen to be.

  • Mail Groups with Multiple Contact Email Addresses

    I cannot find a way to create a Group in Address Book where the contacts have more than one email address. In fact I have not been able to get emailing to groups with Mail to work at all. I always get prompted to select one of my other outgoing SMTP servers... none of them work, iCloud, Gmail, private domain. I don't understand why this is so difficult.
    I have read online that Groups do not support contacts with multiple email addresses... Really? Say it isn't so!

    User A can have one mailbox associated with his ID.  You can create other "User A" mailboxes with different names and e-mail addresses as shared mailboxes and grant User A full mailbox rights and send as right.  User A can
    then connect to each one of them separately.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Can multiple mailboxes be configured upon enrollment?

    We have a couple situations in which a single user needs to have multiple mailboxes sync'd to an iOS /Android device.
    I have ZMM configured to use LDAP for authentication and leverage activesync domains to associate the user to a GMS 2.1 server.
    Is there anyway to associate a user with an additional mailbox(es) allowing them all to be provisioned automatically when they enroll in ZMM?
    Regards,
    Frank

    vodobaas,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Outlook 2010 mass copy inbox to inbox with multiple accounts

    I have multiple users with Outlook 2010 setup with multiple Exchange accounts in the same profile.  I want to be able to run a script that will copy all content from one accounts mailbox to the other accounts mailbox in Outlook. 
    Is that possible?
    Thanks so much for all replies.
     

    Hello,
    Since we are not the best resource for coding, if you want to do this on Outlook client side, you can post your question to Outlook for Developers forum for more effective responses:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    If you are familiar with script, you can have a look at the links below and check if they help:
    http://blogs.msdn.com/b/emeamsgdev/archive/2012/04/27/powershell-script-to-move-items-from-one-folder-to-another-in-a-user-s-mailbox.aspx
    http://jmerrell.com/2011/05/21/outlook-macros-move-email/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice.
    Microsoft does not guarantee the accuracy of this information.
    In addition, maybe we can try using the New-MailboxExportRequest cmdlet and the
    New-MailboxImportRequest cmdlet to achieve this on Exchange server side. See:
    http://technet.microsoft.com/en-us/library/ff607299(v=exchg.141).aspx
    http://technet.microsoft.com/en-us/library/ff607310(v=exchg.141).aspx
    For more information about the cmdlet, you can contact your Exchange admin or post a question in the Exchange forum to get further assistance:
    http://social.technet.microsoft.com/Forums/en-US/category/exchangeserver/ 
    Thank you for your understanding.
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Maybe you are looking for

    • How to get the first element of a List?

      Hi, I have the following hierachy: A (top level) -A1 (child of A) -B1 (child of A) --B11 (child of B1) --B12 (child of B1) I have an UDA on members B11 and B12 that have the same name as A1, and I use it to allocate values from A1 to B11 and B12. Aft

    • Can i change the storage device for a user on my macbook pro

      That basically says it all

    • Feedback for new Email system - do you like it, or...

      Does anyone know whether it is possible to give feedback  on the new email system to anyone in BT who might listen (and preferably do something about it)? I am finding it much slower that the previous version; I don't like the pop up messages - email

    • Media manager crashes - across - disks

      I was trying to use media manager in FCP (latest version) to copy (and delete excess) a project. I was doing so from one LaCie firewire disk to another. I kept getting kernels. Tried as much debugging as possible without luck. Finally tried by doing

    • Archiving customized tables

      Hi, I want to archive around 10 tables for the past 30 days.  i  have used the following code to archive for one table. * Internal table to store the records that was retrieved DATA :  BEGIN OF GET_TAB OCCURS 1000.         INCLUDE STRUCTURE ZFIT0056.