Export Apple mail to Outlook 2011 for Mac

Hi everyone,
I don't like the serie Mail/iCal/Carnet d'adresses from Apple, reason why I bought Outlook 2011 for Mac.
I succeed transferring all my contacts to Outlook.
I try now to transfer all my mails with their categories to Outlook too but I don't succeed.  I read some discussions on this forum but they are obsolete as they were with snowLeopard and Outlook 2011.  Would someone have good news for me and find a way to transfer all the mails with their categories from Apple Mail to Outlook 2011 for Mac ?
It would be nice and to receive a positive answer.
Thank you for your help
Renée

INFORMATION on Emailchemy from another Forum
I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
Once you run the app, you need to do the following:
1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
2. Then you open Emailchemy and do the following:
- click on “toolbox” in the bottom left hand corner
- click on the second box on the top left hand called “advanced email conversion”
- click on “add file”
- select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
Now here comes the trick
- select format “apple mail 1.0 in the format option at the bottom
- then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
Select “mbox”
- click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
- click on save
And you then have a folder created which Outlook 2011 recognizes and can import.
I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
Hope this helps.

Similar Messages

  • Export NOTES from Mac Mail to Outlook 2011 for Mac

    I have been trying to get Outlook 2011 to work as my primary Mail, Calendar, Notes, and Contacts. 
    I have only been successful syncing Mail (except for Notes), which it seemed to do on its own, and Contacts where I dragged an exported VCard file to Outlook Contacts.  I couldn't get Calendar to import into Outlook so I just recreated the calendar on Outlook.  Now Calendar and Mail sync just fine.
    Can anyone tell me how to get Notes over to Outlook?
    Sherman

    Outlook for Mac has no option to import from Apple's Mail application. The best suggestion I can offer is that you use an IMAP account to transfer your messages.
    Get a free Gmail IMAP account from Google and connect to the account in Mail. Drag your messages into the account to copy them to the server.
    Connect to the same account in Outlook and copy your messages from the server to folders under On My Computer.
    Another option is to get a third party tool that are available online.
    One tool that I am familiar with is Apple Mail Export
    Or you can find more on
    google or
    yahoo for more results
    Hope this helps!

  • Exporting selected contacts from Outlook 2011 for Mac

    I've wanted to easily export a set of selected contacts from Outlook in Microsoft Office for Mac 2011.  I've been through many threads about synching to Address Book and then exporting, but I've found a host of troubles, including duplicate copies of contacts being created.
    So, I finally broke down and wrote an AppleScript script to export all of the currently selected contacts from Outlook to a file in either vcf (vcard) or csv (comma separated value) format.  The best use of this script is to:
    -- Install this as a script in Microsoft Outlook by saving the script below to Documents>Microsoft User Data>Outlook Script Menu Items
    -- Change to your Contacts in Outlook.  Use the Outlook search bar to find the contacts you want to export.  You might search by name, category, company, or anything else that identifies the contacts you want to export.  Or, you might just leave the view showing all contacts.
    -- Select the contacts you want to export
    -- Launch the script
    The script will have you select between vcard and csv and select a destination file.  This hasn't been optimized for speed, so if you're exporting 100's or 1,000's of contacts, be patient.  And there isn't a progress bar at present, so you have to wait.  It will display an alert when it's complete.
    Sorry not to have a download location for you.  You'll just have to copy the script text :-).  Keep in mind there's been some but limited testing.  Read the comments for details.  And enjoy.
    -- jsc
    --  Export Outlook Contacts
    --  (c) 2012 J. Scott Carr.  The script is made available for free use, with no
    --  warranty, under the Creative Commons license agreement.
    --  This script has only been tested on Mac OS X 10.6.8 with Micrsoft Outlook for
    --  Mac 2011 version 14.1.4.
    property byCategory : "By category"
    property byPattern : "Names matching pattern"
    property vcardFormat : "VCard"
    property csvFormat : "CSV"
    --  main
    set contactsToExport to {}
    -- Get the contact selection
    set contactsToExport to get_contacts_to_export()
    if (count of contactsToExport) is 0 then
              display alert "Please select contacts to export and rerun script" as warning
              return
    end if
    -- Shall we export to vcard or CSV?
    set theFormat to vcard_or_csv()
    if theFormat is "" then
              display alert "Error: Must select VCard or CSV format" as warning
              return
    end if
    -- Get and open the output file
    set oFile to open_output_file(theFormat)
    if (oFile is equal to -128) then
    display alert "Canceled"
              return
    else if (oFile < 0) then
              display alert "File open failed (" & oFile & ")" as warning
              return
    end if
    -- Export the contacts
    display dialog "About to export " & (count of contactsToExport) & " contacts in " & theFormat & " format.  Proceed?"
    if button returned of result is not "OK" then
              try
      close access oFile
              end try
              return
    end if
    if theFormat is vcardFormat then
    export_to_vcard(contactsToExport, oFile)
    else if theFormat is csvFormat then
    export_to_csv(contactsToExport, oFile)
    else
              display alert "Invalid format" as warning
    end if
    close access oFile
    display alert "Complete"
    return
    --  get_contacts_to_export()
    --  We're going to export the Contacts currently selected in Outlook.
    --  Check that the current selection is Contacts and not some other Outlook
    --  object.  Snag the selected Contacts and return them as a list.
    --  A side note.  When I started this, I built options to enter a matching
    --  name string or select a category.  And then it hit me that those features
    --  are much more robust in Outlook, and it would be easy to just use the
    --  current selection.
    --  There is some strange behavior that Outlook needs to have recently been
    --  the front, active window.
    on get_contacts_to_export()
              set selectedContacts to {}
              tell application "Microsoft Outlook"
                        set theSelection to selection
                        if class of theSelection is list then
                                  if class of the first item of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        else
                                  if class of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        end if
                        return selectedContacts
              end tell
    end get_contacts_to_export
    --  vcard_or_csv()
    --  Get the format to use when exporting contacts
    on vcard_or_csv()
              choose from list {vcardFormat, csvFormat} with prompt "Select export file format:"
              if result is false then
                        return ""
              else
                        return first item of result
              end if
    end vcard_or_csv
    --  open_output_file()
    --  Open the destination file for the export, returning the file descriptor or the error number
    --  if the operation fails
    on open_output_file(exportType)
    -- Get the filename, letting "choose file name" deal with existing files.
              set theDate to current date
              set theTime to time of theDate
              if exportType is csvFormat then
                        set fileName to "contacts.csv"
              else
                        set fileName to "contacts.vcf"
              end if
              try
                        set outputFile to choose file name with prompt "Select export destination file" default name fileName
              on error errText number errNum
                        return errNum
              end try
    -- Open the file
              try
      -- Open the file as writable and overwrite contents
                        set oFile to open for access outputFile with write permission
      set eof oFile to 0
              on error errText number errNum
                        display alert "Error opening file: " & errNum & return & errText as warning
                        try
      close access oFile
                        end try
                        return errNum
              end try
              return oFile
    end open_output_file
    --  export_to_vcard()
    --  Export each of theContacts to the open file outFile as a set of vcards.  Note that the
    --  vcard data is from the "vcard data" property of the theContacts.  This routine
    --  doesn't attempt to reformat an Outlook vcard, nor limit the fields included
    --  in the vcard.
    on export_to_vcard(theContacts, outFile)
              set vcards to {}
              tell application "Microsoft Outlook"
                        repeat with aContact in theContacts
                                  copy vcard data of aContact to the end of vcards
                        end repeat
              end tell
              repeat with aCard in vcards
      write (aCard & linefeed) to outFile
              end repeat
    end export_to_vcard
    --  export_to_csv()
    --  Export each of theContacts to the open file outFile in csv format
    on export_to_csv(theContacts, outFile)
              set csvFields to {}
    -- Get the fields of the contact to export
              set csvFields to init_csv()
    -- Write the header row
              set nFields to count csvFields
    write first item of csvFields to outFile
              repeat with i from 2 to nFields
      write "," & item i of csvFields to outFile
              end repeat
    write linefeed to outFile
    -- Export the fields of the contacts in CSV format, one per line
              repeat with aContact in theContacts
      write build_csv_line(csvFields, aContact) & linefeed to outFile
              end repeat
    end export_to_csv
    --  init_csv(): defines the fields to export when csv format is selected
    --  Each of the fields in the list must match a name used in the routine build_csv_line().
    --  The idea is to later create a a pick list so the user can select which contact properties
    --  to export.
    on init_csv()
              set csvFields to {"first name", "last name", "middle name", "title", "nickname", "suffix", "phone", "home phone number", "other home phone number", "home fax number", "business phone number", "other business phone number", "busines fax number", "pager number", "mobile number", "home email", "work email", "other email", "company", "job title", "department", "assistant phone number", "home street address", "home city", "home state", "home country", "home zip", "business street address", "business city", "business state", "business country", "business zip", "home web page", "business web page", "note"}
    end init_csv
    --  build_csv_line(): format one line for the csv file
    --  Parameter csvFields determins which fields to include in the export.
    --  Unfortunately I've not figured out how to use perl-style generation of
    --  indirect references.  If I could, this would have been much more elegant
    --  by simply using the field name to refer to a Contact properly.
    --  Note that email address are a special case as they're a list of objects in
    --  Outlook.  So these are handled specially in the export function and can only
    --  be selected by the column names "home email", "work email", and "other email". 
    --  Outlook allows a contact to have more than one of each type of email address
    --  but not all contact managers are the same.  This script takes the first of
    --  each type.  So if a contact has more than one "home" email address, you will
    --  only be able to export the first to a csv file.  Suggest you clean up your
    --  addresses in Outlook to adapt.  The alternative is to support multiple
    --  columns in the csv like "other email 1" and "other email 2", but that's not
    --  supported in this version.
    --  Another note.  In this version, any embedded "return" or "linefeed" characters
    --  found in a property of a contact are converted to a space.  That means that
    --  notes, in particular, will be reformated.  That said, this gets arond a problem
    --  with embedded carriage returns in address fields that throw off importing
    --  the csv file.
    --  Also note that at this time IM addresses aren't supported, but it's an easy add
    --  following the same logic as email addresses.
    on build_csv_line(csvFields, theContact)
              set aField to ""
              set csvLine to ""
              set homeEmail to ""
              set workEmail to ""
              set otherEmail to ""
              tell application "Microsoft Outlook"
                        set props to get properties of theContact
      -- Extract email addresses from address list of contact
                        set emailAddresses to email addresses of props
                        repeat with anAddress in emailAddresses
                                  if type of anAddress is home then
                                            set homeEmail to address of anAddress
                                  else if type of anAddress is work then
                                            set workEmail to address of anAddress
                                  else if type of anAddress is other then
                                            set otherEmail to address of anAddress
                                  end if
                        end repeat
      -- Export each desired fields of the contact
                        repeat with aFieldItem in csvFields
                                  set aField to aFieldItem as text
                                  set aValue to ""
                                  if aField is "first name" then
                                            set aValue to get first name of props
                                  else if aField is "last name" then
                                            set aValue to last name of props
                                  else if aField is "middle name" then
                                            set aValue to middle name of props
                                  else if aField is "display name" then
                                            set aValue to display name of props
                                  else if aField is "title" then
                                            set aValue to title of props
                                  else if aField is "nickname" then
                                            set aValue to nickname of props
                                  else if aField is "suffix" then
                                            set aValue to suffix of props
                                  else if aField is "phone" then
                                            set aValue to phone of props
                                  else if aField is "home phone number" then
                                            set aValue to home phone number of props
                                  else if aField is "other home phone number" then
                                            set aValue to other home phone number of props
                                  else if aField is "home fax number" then
                                            set aValue to home fax number of props
                                  else if aField is "business phone number" then
                                            set aValue to business phone number of props
                                  else if aField is "other bsiness phone number" then
                                            set aValue to other business phone number of props
                                  else if aField is "bsuiness fax number" then
                                            set aValue to business fax number of props
                                  else if aField is "pager number" then
                                            set aValue to pager number of props
                                  else if aField is "mobile number" then
                                            set aValue to mobile number of props
                                  else if aField is "home email" then
                                            set aValue to homeEmail
                                  else if aField is "work email" then
                                            set aValue to workEmail
                                  else if aField is "other email" then
                                            set aValue to otherEmail
                                  else if aField is "office" then
                                            set aValue to office of props
                                  else if aField is "company" then
                                            set aValue to company of props
                                  else if aField is "job title" then
                                            set aValue to job title of props
                                  else if aField is "department" then
                                            set aValue to department of props
                                  else if aField is "assistant phone number" then
                                            set aValue to assistant phone number of props
                                  else if aField is "age" then
                                            set aValue to age of props
                                  else if aField is "anniversary" then
                                            set aValue to anniversary of props
                                  else if aField is "astrololgy sign" then
                                            set aValue to astrology sign of props
                                  else if aField is "birthday" then
                                            set aValue to birthday of props
                                  else if aField is "blood type" then
                                            set aValue to blood type of props
                                  else if aField is "desription" then
                                            set aValue to description of props
                                  else if aField is "home street address" then
                                            set aValue to home street address of props
                                  else if aField is "home city" then
                                            set aValue to home city of props
                                  else if aField is "home state" then
                                            set aValue to home state of props
                                  else if aField is "home country" then
                                            set aValue to home country of props
                                  else if aField is "home zip" then
                                            set aValue to home zip of props
                                  else if aField is "home web page" then
                                            set aValue to home web page of props
                                  else if aField is "business web page" then
                                            set aValue to business web page of props
                                  else if aField is "spouse" then
                                            set aValue to spouse of props
                                  else if aField is "interests" then
                                            set aValue to interests of props
                                  else if aField is "custom field one" then
                                            set aValue to custom field one of props
                                  else if aField is "custom field two" then
                                            set aValue to custom field two of props
                                  else if aField is "custom field three" then
                                            set aValue to custom field three of props
                                  else if aField is "custom field four" then
                                            set aValue to custom field four of props
                                  else if aField is "custom field five" then
                                            set aValue to custom field five of props
                                  else if aField is "custom field six" then
                                            set aValue to custom field six of props
                                  else if aField is "custom field seven" then
                                            set aValue to custom field seven of props
                                  else if aField is "custom field eight" then
                                            set aValue to custom field eight of props
                                  else if aField is "custom phone 1" then
                                            set aValue to custom phone 1 of props
                                  else if aField is "custom phone 2" then
                                            set aValue to custom phone 2 of props
                                  else if aField is "custom phone 3" then
                                            set aValue to custom phone 3 of props
                                  else if aField is "custom phone 4" then
                                            set aValue to custom phone 4 of props
                                  else if aField is "custom date field one" then
                                            set aValue to custom date field one of props
                                  else if aField is "custom date field two" then
                                            set aValue to custom date field two of props
                                  else if aField is "note" then
                                            set aValue to plain text note of props
                                  end if
                                  if aValue is not false then
                                            if length of csvLine > 0 then
                                                      set csvLine to csvLine & ","
                                            end if
                                            if (aValue as text) is not "missing value" then
                                                      set csvLine to csvLine & "\"" & aValue & "\""
                                            end if
                                  end if
                        end repeat
              end tell
    -- Change all embeded "new lines" to spaces.  Does mess with the formatting
    -- of notes on contacts, but it makes it cleans the file for more reliable
    -- importing.  This could be changed to an option later.
              set csvLine to replace_text(csvLine, return, " ")
              set csvLine to replace_text(csvLine, linefeed, " ")
              return csvLine
    end build_csv_line
    --  replace_text()
    --  Replace all occurances of searchString with replaceString in sourceStr
    on replace_text(sourceStr, searchString, replaceString)
              set searchStr to (searchString as text)
              set replaceStr to (replaceString as text)
              set sourceStr to (sourceStr as text)
              set saveDelims to AppleScript's text item delimiters
              set AppleScript's text item delimiters to (searchString)
              set theList to (every text item of sourceStr)
              set AppleScript's text item delimiters to (replaceString)
              set theString to theList as string
              set AppleScript's text item delimiters to saveDelims
              return theString
    end replace_text

    Thank You, but this is a gong show. Why is something that is so important to us all so very, very difficult to do?

  • Export Apple Mail Emails & Sub Folders to Outlook 2011 for Mac

    Hello,
    Could somebody please tell me how I go about exporting emails and the subfolders I have created from Apple Mail over to Microsoft Outlook 2011.
    Can you also please advise if I am able to add these emails into an existing Main Identity?
    Any help would be much appreciated

    INFORMATION on Emailchemy from another Forum
    I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
    The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
    You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
    Once you run the app, you need to do the following:
    1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
    2. Then you open Emailchemy and do the following:
    - click on “toolbox” in the bottom left hand corner
    - click on the second box on the top left hand called “advanced email conversion”
    - click on “add file”
    - select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
    Now here comes the trick
    - select format “apple mail 1.0 in the format option at the bottom
    - then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
    Select “mbox”
    - click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
    - click on save
    And you then have a folder created which Outlook 2011 recognizes and can import.
    I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
    Hope this helps.

  • Synchronisation from iCal to Outlook 2011 for MAC

    I am wondering when Apple will start supporting reminder/task synchronisation between iCal---iCloud---Office 2011 Mac. Even though new Office versions have been released Outlook 2011 will be around for some time and this would be something rather simple to create right?
    The strange things is that it is supported for Outlook 2011 Windows.
    So when I have dual boot I can see my Icloud reminders as tasks in Outlook but if I boot on Mac i can't see them in Outlook. How weird is that Apple...?
    If Apple is not going to do anything about this, is there anything possible with a script perhaps that works between iCal and Outlook 2011 Mac? that would be a proper workaround at least.
    Also curious actually as to why this functionality was not added.

    INFORMATION on Emailchemy from another Forum
    I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
    The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
    You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
    Once you run the app, you need to do the following:
    1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
    2. Then you open Emailchemy and do the following:
    - click on “toolbox” in the bottom left hand corner
    - click on the second box on the top left hand called “advanced email conversion”
    - click on “add file”
    - select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
    Now here comes the trick
    - select format “apple mail 1.0 in the format option at the bottom
    - then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
    Select “mbox”
    - click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
    - click on save
    And you then have a folder created which Outlook 2011 recognizes and can import.
    I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
    Hope this helps.

  • Export Apple Mail to Outlook

    Just set up my new MBP17 with Boot Camp and now I need to move my old mail over to the dark side and get it into Outlook. I've got the address book over already, just need to move messages. Tried to do this via Eudora or MailSmith but can't even get the messages from Mac Mail to Mac Eudora, so I'm stuck. Any ideas?

    INFORMATION on Emailchemy from another Forum
    I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
    The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
    You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
    Once you run the app, you need to do the following:
    1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
    2. Then you open Emailchemy and do the following:
    - click on “toolbox” in the bottom left hand corner
    - click on the second box on the top left hand called “advanced email conversion”
    - click on “add file”
    - select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
    Now here comes the trick
    - select format “apple mail 1.0 in the format option at the bottom
    - then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
    Select “mbox”
    - click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
    - click on save
    And you then have a folder created which Outlook 2011 recognizes and can import.
    I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
    Hope this helps.

  • Scan to outlook 2011 for mac

    When we scan to email using HP Director for our CM2320nf mfp Color Laser all in one, we need it to go to MS Outlook 2011 for Mac as default. There is no option in HP Director preferences to select Outlook. The only 2 options are Mail (Mac Mail), or Entourage but no option for Outlook.
    Is there an updated HP Director sofware ot printer firmware that we need, so we can use Outlook as our default scan to email???

    INFORMATION on Emailchemy from another Forum
    I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
    The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
    You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
    Once you run the app, you need to do the following:
    1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
    2. Then you open Emailchemy and do the following:
    - click on “toolbox” in the bottom left hand corner
    - click on the second box on the top left hand called “advanced email conversion”
    - click on “add file”
    - select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
    Now here comes the trick
    - select format “apple mail 1.0 in the format option at the bottom
    - then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
    Select “mbox”
    - click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
    - click on save
    And you then have a folder created which Outlook 2011 recognizes and can import.
    I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
    Hope this helps.

  • Import apple mails to outlook 2011

    Having trouble in moving my mails to outlook 2011 for mac.
    Gone through a lot of forums and forum sites but none provided the right solution.
    Tried the the IMAP procedure but it takes long time. Don't have that much time to waste.
    Have got around 10000 mails and outlook impoet fundtion doesn't seem to work.
    Need solutions that can quickly solve this problem of mine.
    Waiting for useful help. Thank You

    You can find a queue of solutions if you type the heading of your query in a suitable search engine like google or yahoo.
    Basically you will need to convert the apple mail emails that are stored in .emlx format to .olm format that will require a converter tool.
    here is one that I think might be helpful: http://mailexporterpro.com/

  • Using Outlook 2011 for mac and syncing blackberry very slow

    I just bought 2 pcs of Mcabook pro. one for me and second for my cousin. we both have same office usage.i have installed office 2011. i use contacts / events / tasks of outlook and sync it with my blackberry curve. previously i was using Windows OS and i am so much used to it with its easy functionalities. Since last 15 days i have not done any work in my office as all time i am just involved in setting up one or another thing in my Macbook. i am really so much fed up and frustrated that i am thinking of switching back to Windows. i have some current issues like
    Airport disconnects automatically anytime. after then i have to restart the system that is the only way. it shows as connected but i dont find my home network or internet. after restarting it works !!! it happens 4-5 times in a day...
    Sync with blackberry is very slow. i do have Approx 2500 contacts / 300 tasks and 10-15 events. but it takes approx 10 times more time than i was doing with Windows.
    in the blackberry desktop manager there is only one option of syncing i.e. Two way sync. what if i only want to transfer data from Macbook to Blackberry or from Blackberry to Macbook?
    data sync is not perfect also. every time some entries goes missing.
    i want to use ical for events and tasks.. but i dont find List view for events which is not convinient.
    i have my e mails in Outlook 2011 for mac. what if i want to transfer my mail to mail for mac?
    i will be obliged if anyone can help and show that my INR 70000.00 * 2 is not wasted... Frustrated Really...

    Good luck with that.
    You're not going to like this answer, but you should let Exchange be your e-mail system.  Move off Gmail to Exchange on-premises or Online.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • How to export Apple mail emails to Microsoft Outlook 2011 for mac?

    Please provide some solution to migrate apple mail emails to outlook 2011 for mac.
    NOTE: emails from the server have been deleted.

    Hi,
    Please check if this helps:
    http://support.microsoft.com/kb/2413370/en-us
    Since this forum is for general questions and feedback related to Outlook for Windows, it's better to post your question to the forum for Mac:
    http://answers.microsoft.com/en-us/mac/forum/macoutlook
    The reason why we recommend posting appropriately is
    you
    will
    get the most qualified pool of respondents,
    and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Steve Fan
    TechNet Community Support

  • Outlook 2011 for Mac stops retrieving new e-mail

    I have both Outlook 2011 for Mac and Apple Mac tied to the same Gmail account via IMAP. After a few hours, Outlook stops retrieving new e-mail while Apple Mail continues retrieving new e-mail with no problem. I've already deleted the Gmail account from Outlook and recreated it. What could be causing this? Should Microsoft Office 2011 for Mac be re-installed? Does Outlook 2011 create a log during the e-mail send/receive process that I can review?

    Hi,
    Any good news from the Mac Forum?
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Working with Outlook 2011 for Mac, my mails are slow and I can work only on-line, when off-line, mail cannot be opened because it is only partially downloaded. How to solve??

    working with Outlook 2011 for Mac, my mails are slow and I can work only on-line, when off-line, mail cannot be opened because it is only partially downloaded. How to solve??

    Try http://www.microsoft.com/mac/support.

  • Mails with suspicious links are send to contacts in my Outlook 2011 for Mac

    Hi all
    I have now for two days experienced that emails seems to be sent from my Outlook 2011 for Mac to 4 or 5 people from my contacts with suspicious links - they do not apear in my sent box - but I do get an copy sent to my own inbox ?
    Does anyone know what this is and what to do ?
    Regards
    Gert

    Sounds like your mail account has been hacked. Change the password immediately to a long, random, all over the keyboard one. Never use an ordinary word that can be found in the dictionary. My mail pword is 15 characters long.
    http://www.reedcorner.net/mmg-infected/#spam
    Message was edited by: WZZZ

  • Outlook 2011 for Mac users must click send/receive to get new mail from exchange 2013 server

    I recently switched our primary CAS servers over from a single exchange 2010 cas/mailbox/hub server to a couple new exchange 2013 CAS/Mailbox servers.  Exchange 2013 has cu3, and is hosted on windows server 2012.  Anyone who has their mailbox hosted
    on one of these exchange 2013 servers has an issue where they must click the send/receive button to get new messages downloaded to their client. This is only the case for outlook 2011 for mac client.  Activesync clients, mac mail, OWA, and Outlook 2010/13
    all behave normally.
    Where can I look or what can I check to troubleshoot this issue?

    Hi,
    Any good news from the Mac Forum?
    Thanks,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

Maybe you are looking for

  • Why don't  we do the confirmation in variant configuration?

    Hello guys,    As far as i know that in variant configuration we don't do the confirmation, we directly do the goods receipt.Is it right?If yes than why?   Following are the steps we  do while doing the variant configuration scenario: 1)First we crea

  • Can't Send mail in Mountain Lion Mail

    I am able to receive incoming email in Mail 6.0 but am unable to send messages.  First I got a message that the STMP server did not recognize my email address (nothing had changed other then upgrading to Mountain Lion), I spent some time with my ISP

  • Is it possible to upgrade iPad 1 to iOS7?

    Does anyone know? Mine stopped updating at iOS 5.1.1, and insists this is completely up to date. It's an iPad 1.

  • Server with secure communication unavailable?

    When I try to sync my iCal with my Gmail account, iCal gives me an error that says "Server with secure communication unavailable" My accounts were linked just fine before and this just started up one day. Any thoughts?

  • How to filter HTML javadoc output ?

    Hi all, I would like to create a specific HTML javadoc output for a given source code tree. Each class or method to be displayed is tagged with a specific (proprietary) tag, and I would like to create a Javadoc HTML tree with ONLY these classes and m