E7 MFE and searching contacts on server

I'm using MFE to connect to my Hotmail inbox, but am not syncing contacts. Rather, I'd prefer to use the ability to search on the server when inputting a contact, however whenever I try I get a "Search failed. Try again later" message. Is there an issue, or is this a limitation of Hotmail using Exchange Server 2003?

I have the same issue- I have over 100 contacts and to swipe up to the top takes many tries- sometimes I inadvertantly touch the screen too hard and find it dialing someone. My wife's phone seems to always display the search part of the screen- mine never does unless I go through this whole procedure. The phones are identical in all ways except this- is there some setting that allows me to change this? It would be nice if double-clicking on the contact icon automatically brought up the search pane.

Similar Messages

  • Full text Search Issue with Boolean AND Search in 2012 server

    We are trying to use CONTAINSTABLE function with BOOLEAN AND search, but unable to get expected results in sql server 2012.
     If use BOOLEAN OR search we get expected results.
    Full text indexed table is having more than 10 millions of records. we checked index fragmentation level is 82%. then we done Rebuild. Even after rebuild, unable to fetch expected results with AND SEARCH.
    The below query is used
    SELECT ft.* FROM FT_ROWS ft
    INNER JOIN CONTAINSTABLE(FT_ROWS, summary,
    ' "manifest" AND "version" ') AS key_tbl
    ON ft.log_id = key_tbl.[key]
    if we remove ( "manifest" AND ) from the search string, then getting some results but AND search is not returning expected results.
    Please help any suggestion
    kkprasad

    The explanation that is closest at hand is that you have no documents with both of these words in them.
    An alternate explanation is that you have accidently entered "manitest" into your stoplist.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • How to set and search contact favorites

    As title.
    I know somewhere it showed that we can mark someone as "favorite" in Contact so that their call will not be blocked by "Do Not Disturb"
    But I do not know how to set the "favotite" and how to search who has beeen set as the "favorite"
    Please advise !!

    The SearchKey is created by Exchange when the Item is saved so after you have Saved the Item you'll need to use Load with a propertyset that includes that property to access it eg
    Appointment newappointment = new Appointment(service);
    newappointment.Start = DateTime.Now;
    newappointment.End = DateTime.Now.AddHours(1);
    newappointment.Subject = "testc";
    newappointment.Save(SendInvitationsMode.SendToNone);
    PropertySet aptPropset = new PropertySet(BasePropertySet.FirstClassProperties);
    ExtendedPropertyDefinition PR_SEARCH_KEY = new ExtendedPropertyDefinition(0x300B, MapiPropertyType.Binary);
    aptPropset.Add(PR_SEARCH_KEY);
    newappointment.Load(aptPropset);
    Byte[] SearchKeyVal = null;
    newappointment.TryGetProperty(PR_SEARCH_KEY,out SearchKeyVal);
    You can't bind to Item using the SearchKey the only Id that can be used to Bind to an Item is the EWSid. You can search for an Item that has that searchKey eg using the example above
    Byte[] SearchKeyVal = null;
    newappointment.TryGetProperty(PR_SEARCH_KEY,out SearchKeyVal);
    SearchFilter sfSearchFilter = new SearchFilter.IsEqualTo(PR_SEARCH_KEY, Convert.ToBase64String(SearchKeyVal));
    FindItemsResults<Item> fiResults = service.FindItems(WellKnownFolderName.Calendar, sfSearchFilter, new ItemView(1));
    if (fiResults.Items.Count == 1) {
    Appointment foundappointment = (Appointment)fiResults.Items[0];
    Console.WriteLine(foundappointment.Subject);
    Cheers
    Glen

  • Keypad not visible to create and search contacts

    I Updated to ios7.1.2 last night without any issues during update. After update i tried to create a contact and shocked to see keypad is not visible to enter a name. I tried to search a contact and found that keypad is missing. Any other members are facing the same issue??

    Hello, Bhargavgangarapu. 
    Thank you for visiting Apple Support Communities.
    Try forcing all applications to close and power cycle the device.  Once this is done test to see if the keyboard appear.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Cheers,
    Jason H.

  • How I migrated my caldav data (Contacts and Calendars) to Mavericks + Server

    Hello,
    I write this post to share with you the steps I had to take for correctly migrating my caldav database (containing data for Addressbook and Calendar Server) from a Lion Server to Mavericks with Server version 3.
    The problem occured like this : after downloading and installing mavericks (from the Apple Store), and downloading/installing the Server Utility (version 3), everything migrated just fine, except I had an error message during the first launch of the Server utility, but since it eventually launched, and the services were running, I didn't notice anything at first.
    But I rapidly saw a big problem : my caldav data was missing. If a client connected to their calendar application, they would get (after syncing with the server) a new empty calendar named "calendar" (this is typical of a fresh empty caldav database). Same for addressbook clients (empty contacts).
    So I searched and read several post that helped me greatly :
    https://discussions.apple.com/thread/3890595
    https://discussions.apple.com/message/23581552
    BUT, what is different in mavericks, is this :
    The postgres cluster that hosts the caldav data seems to have move (again!), and this is by exploring several config files that I figured which was the right socket to use to connect to the good postgres cluster.
    The clues were in the file : /Applications/Server.app/Contents/ServerRoot/private/etc/caldavd/caldavd-apple.p list
    Where I found the precious parameter (under the Postgres section) :
    <key>SocketDirectory</key>
           <string>/var/run/caldavd/PostgresSocket</string>
    What I also figured is that the user account to use for connecting to this postgres cluster is caldav, and not _postgres.
    So here are basically the steps I had to take  to reinstall my old database.
    Step #0 :
    First, you need to locate the dump of the old postgres database, I found that the migration process seemed to make a dump inside :
    This method ONLY WORKS if you have the following file :
    /Library/Server/Migrated/Library/Server/PostgreSQL/Backup/dumpall.psql.gz
    If you have that file, you can extract it with the command :
      gunzip /Library/Server/Migrated/Library/Server/PostgreSQL/Backup/dumpall.psql.gz
    For the rest of the steps I assume this file is named  /path/to/your/dump.psql
    I think (but I'm not sure of it) that THIS precise dump is different than what you would get inside a manual dump, meaning that in this dump you have all the  databases of the cluster. Again I'm not sure, but that's what I think since there are CREATE DATABASE instructions inside it).
    If you don't have that file, perhaps you made a dump by hand.
    If that's the case, I think that before Step #3 you will have to create an empty caldav database, BUT, I'm not sure the command "calendarserver_bootstrap_database -v" mentionned here will create the caldav in the right cluster (read above). Perhaps we could figured out together if that's your case.
    Step #1 : stop the services
    sudo serveradmin stop addressbook
    sudo serveradmin stop calendar
    Step #2 : drop the caldav database
    sudo dropdb -h /var/run/caldavd/PostgresSocket -U caldav caldav
    If you get this error message :
    dropdb: database removal failed: ERROR:  database "caldav" is being accessed by other users
    DETAIL:  There is 1 other session using the database.
    then go to Step #2a, otherwise, go straight to Step #3
    Step #2a : only if Step 2 didn't work, see above ! (taken from here)
    # Connect to the postgres database
    psql -h /var/run/caldavd/PostgresSocket -U caldav
    # Terminate the current sessions
    postgres=> select pg_terminate_backend(procpid) from pg_stat_activity where datname='caldav';
    # Exit postgres
                   postgres=> \q
    Step #3 : if your database dump is not from /Library/Server/Migrated/Library/Server/PostgreSQL/Backup/dumpall.psql.gz, then PERHAPS you will have to create manually an empty caldav database (see Step #0)
    Step #4 : create the new database from the dump
    sudo psql -h /var/run/caldavd/PostgresSocket -U caldav -f </path/to/your/dump.psql> caldav
    A lot of things should be displayed, and I eventually got an error at the end :
    psql:DataDump.sql:49844: \connect: FATAL:  database "collab" does not exist
    But in my case that didn't affect my migration.
    Step #5 : restart services
    sudo serveradmin start calendar
    sudo serveradmin start addressbook
    I hope that helps you.
    Cheers

    iCloud adds a new (additional) Address book to Outlook, it contains the iCloud contacts, if the iCloud contacts and the Outlook contacts are the same there will be duplicates:
    Look in one Contact Folder only
    Delete the Outlook Contacts (you can't delete the whole folder, only the contents
    These are your choices.

  • Server 3.1.2: Unable to locate search base: -1 Can't contact LDAP server

    Hello all—
    I've been getting repeated errors below in my system.log.  I'm running OS X 10.9.3 with Server version 3.1.2.  I've replaced my actual server name with "my.servername.net" in the log entries. Thanks for any advice!  —michael
    May 30 17:47:03 leo com.apple.launchd[1] (org.openldap.slapd): Throttling respawn: Will start in 7 seconds
    May 30 17:47:04 my.servername.net PasswordService[1345]: int pwsf_GetPublicKey(char *): ldap_search_ext_s cn=authdata for Public Key returned -1
    May 30 17:47:04 leo com.apple.launchd[1] (com.apple.PasswordService[1345]): Exited with code: 1
    May 30 17:47:04 leo com.apple.launchd[1] (com.apple.PasswordService): Throttling respawn: Will start in 10 seconds
    May 30 17:47:06 my.servername.net xscertd-helper[1351]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    May 30 17:47:06 leo com.apple.launchd[1] (com.apple.xscertd-helper[1351]): Exited with code: 1
    May 30 17:47:06 leo com.apple.launchd[1] (com.apple.xscertd-helper): Throttling respawn: Will start in 10 seconds
    May 30 17:47:09 my.servername.net xscertd[335]: Failed sending LookupCRLByCARecordName command to com.apple.xscertd.helper: The operation couldn’t be completed. (com.apple.certificateserver error 42005.)
    May 30 17:47:14 my.servername.net PasswordService[1363]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 30 17:47:14 my.servername.net PasswordService[1363]: -[PasswordServerPrefsObject loadXMLData]: Unable to locate passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 30 17:47:14 my.servername.net PasswordService[1363]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 30 17:47:14 my.servername.net PasswordService[1363]: -[PasswordServerPrefsObject saveXMLData]: ldap_modify_ext_s of the passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 30 17:47:14 leo com.apple.launchd[1] (org.openldap.slapd[1359]): Exited with code: 1
    May 30 17:47:14 leo com.apple.launchd[1] (org.openldap.slapd): Throttling respawn: Will start in 7 seconds
    May 30 17:47:14 my.servername.net PasswordService[1363]: int pwsf_GetPublicKey(char *): ldap_search_ext_s cn=authdata for Public Key returned -1
    May 30 17:47:14 leo com.apple.launchd[1] (com.apple.PasswordService[1363]): Exited with code: 1
    May 30 17:47:14 leo com.apple.launchd[1] (com.apple.PasswordService): Throttling respawn: Will start in 10 seconds
    May 30 17:47:16 my.servername.net xscertd-helper[1365]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    May 30 17:47:16 leo com.apple.launchd[1] (com.apple.xscertd-helper[1365]): Exited with code: 1
    May 30 17:47:16 leo com.apple.launchd[1] (com.apple.xscertd-helper): Throttling respawn: Will start in 10 seconds
    May 30 17:47:20 my.servername.net xscertd[335]: Failed sending LookupCRLByCARecordName command to com.apple.xscertd.helper: The operation couldn’t be completed. (com.apple.certificateserver error 42005.)
    May 30 17:47:24 my.servername.net PasswordService[1375]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 30 17:47:24 my.servername.net PasswordService[1375]: -[PasswordServerPrefsObject loadXMLData]: Unable to locate passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 30 17:47:24 my.servername.net PasswordService[1375]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    May 30 17:47:24 my.servername.net PasswordService[1375]: -[PasswordServerPrefsObject saveXMLData]: ldap_modify_ext_s of the passwordserver config record's plist attribute: -1 Can't contact LDAP server
    May 30 17:47:25 leo com.apple.launchd[1] (org.openldap.slapd[1371]): Exited with code: 1
    May 30 17:47:25 leo com.apple.launchd[1] (org.openldap.slapd): Throttling respawn: Will start in 7 seconds
    May 30 17:47:25 my.servername.net PasswordService[1375]: int pwsf_GetPublicKey(char *): ldap_search_ext_s cn=authdata for Public Key returned -1
    May 30 17:47:25 leo com.apple.launchd[1] (com.apple.PasswordService[1375]): Exited with code: 1
    May 30 17:47:25 leo com.apple.launchd[1] (com.apple.PasswordService): Throttling respawn: Will start in 10 seconds
    May 30 17:47:26 my.servername.net xscertd-helper[1377]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    May 30 17:47:26 leo com.apple.launchd[1] (com.apple.xscertd-helper[1377]): Exited with code: 1
    May 30 17:47:26 leo com.apple.launchd[1] (com.apple.xscertd-helper): Throttling respawn: Will start in 10 seconds
    May 30 17:47:30 my.servername.net xscertd[335]: Failed sending LookupCRLByCARecordName command to com.apple.xscertd.helper: The operation couldn’t be completed. (com.apple.certificateserver error 42005.)

    Unfortunately this problem wasn't solved this way.  After dragging the Server.app to the trash and then retrieving it ("Put Back") and launching it, and re-starting services, my problem still persists.
    Here are relevant system.log file entries. (Note the hostname is "leo"—I've changed the FQDN to leo.myservername.net):
    Jun  6 22:57:31 leo.myservername.net PasswordService[1011]: int pwsf_GetPublicKey(char *): ldap_search_ext_s cn=authdata for Public Key returned -1
    Jun  6 22:57:31 leo com.apple.launchd[1] (com.apple.PasswordService[1011]): Exited with code: 1
    Jun  6 22:57:31 leo com.apple.launchd[1] (com.apple.PasswordService): Throttling respawn: Will start in 10 seconds
    Jun  6 22:57:32 leo.myservername.net xscertd-helper[1014]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    Jun  6 22:57:32 leo com.apple.launchd[1] (com.apple.xscertd-helper[1014]): Exited with code: 1
    Jun  6 22:57:32 leo com.apple.launchd[1] (com.apple.xscertd-helper): Throttling respawn: Will start in 10 seconds
    Jun  6 22:57:34 leo.myservername.net xscertd[333]: Failed sending LookupCRLByCARecordName command to com.apple.xscertd.helper: The operation couldn’t be completed. (com.apple.certificateserver error 42005.)
    Jun  6 22:57:40 leo com.apple.launchd[1] (org.openldap.slapd[1016]): Exited with code: 1
    Jun  6 22:57:40 leo com.apple.launchd[1] (org.openldap.slapd): Throttling respawn: Will start in 7 seconds
    Jun  6 22:57:40 leo.myservername.net com.apple.SecurityServer[22]: Session 100004 created
    Jun  6 22:57:41 leo.myservername.net PasswordService[1024]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    Jun  6 22:57:41 leo.myservername.net PasswordService[1024]: -[PasswordServerPrefsObject loadXMLData]: Unable to locate passwordserver config record's plist attribute: -1 Can't contact LDAP server
    Jun  6 22:57:41 leo.myservername.net PasswordService[1024]: -[PasswordServerPrefsObject getSearchBase]: Unable to locate search base: -1 Can't contact LDAP server
    Jun  6 22:57:41 leo.myservername.net PasswordService[1024]: -[PasswordServerPrefsObject saveXMLData]: ldap_modify_ext_s of the passwordserver config record's plist attribute: -1 Can't contact LDAP server
    Jun  6 22:57:41 leo.myservername.net PasswordService[1024]: int pwsf_GetPublicKey(char *): ldap_search_ext_s cn=authdata for Public Key returned -1
    Jun  6 22:57:41 leo com.apple.launchd[1] (com.apple.PasswordService[1024]): Exited with code: 1
    Jun  6 22:57:41 leo com.apple.launchd[1] (com.apple.PasswordService): Throttling respawn: Will start in 10 seconds
    Jun  6 22:57:42 leo.myservername.net xscertd-helper[1028]: ldap_search_ext_s returned -1 - Can't contact LDAP server when searching for bdb suffix, exiting
    Jun  6 22:57:42 leo com.apple.launchd[1] (com.apple.xscertd-helper[1028]): Exited with code: 1
    Jun  6 22:57:42 leo com.apple.launchd[1] (com.apple.xscertd-helper): Throttling respawn: Will start in 10 seconds
    Jun  6 22:57:45 leo.myservername.net xscertd[333]: Failed sending LookupCRLByCARecordName command to com.apple.xscertd.helper: The operation couldn’t be completed. (com.apple.certificateserver error 42005.)
    Also, for what it's worth, "Open Directory" in the Server.app has no settings within it. Nor will it stay "on." I'm not using OD per se, and am happy to leave it off, but it's possible the errors above are preventing it from running.
    Thanks for any other solutions. —michael

  • I have mac osx 10.6.8 and I keep getting update notices that do nothing, just search for update server. Happens every day. What can you or I do to fix this?

    I have mac osx 10.6.8 and I keep getting update notices that do nothing, just search for update server. Happens every day. What can you or I do to fix this? Other people I work with and use macs have the same issue.

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • TS1347 when i add new contact to my iphone , and search for it i did't find it but it store in my phone and apperars when called me or i write the no

    when i add new contact to my iphone , and search for it i did't find it but it store in my phone and apperars when called me or i write the no

    In the Contacts app, select "Groups" in the upper left hand corner.
    Then select all the groups that are desired to be displayed.
    Select Done.
    Now search for the contact(s) in question.  Do they appear now?

  • My 3G unlocked iPhone is not syncing mail or contacts from my mac book pro, using Lion. I am able to get a calendars and music, only. I get the message that I need to reset the password which I have done 3x's on the phone and on the Apple server.

    My 3G unlocked iPhone is not syncing mail or contacts from my mac book pro, using Lion. I am able to get a calendars and music, only. I get the message that I need to reset the password which I have done 3x's on the phone and on the Apple server.

    Good to know that, but what can I do to get the mail and contacts downloaded from Icloud onto my Iphone?  I am told that the password needs to be reset and I have erased and reset it 3x's already? Should I Restore All Settings or Restore Network Settings or will that result in a situation where I have to have it re-unlocked again? GRACIAS!

  • 6233 Search contact in last name AND first name

    Hi,
    the 6233 does not search Contacts in both first names AND last names. It only searches only in what come first.
    Exemple : searching for "Paul" does not find "Smith Paul"
    Do I need a firmware update to fix this ??
    Thanks for your answer !

    Hi Chen,
    Based on my knowledge, there is no related method to enforce all users using More Columns as the default search option in Outlook Address Book. We can just change the search option for individual Outlook user by remembering the last search using as I mentioned
    above.
    Sorry for any inconvenience and thanks for your understanding.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Searching contacts only works once first and last name entered

    Evening.
    I'm experiencing a frustration in as much as if I'm searching for a name i.e Adam Smith, it isn't until I enter the S that the search starts to register. It seems you have to enter 5 characters or more before the search begins.
    Secondly, I've added a mobile number into an existing contacts stored details. I'd have expected the call log to show the contact name and number now as oppose to just unknown. This is what used to happen on my Bold. But it doesn't. The numbers been added as a 2nd mobile number rather than main number but thought with such an advanced machine it would register.

    when I type in A it starts to get me results and narrows them down as i type more in Universal search and in contacts app too
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Need some advice with indexing and search server in multihomed environment.

    Hi,
    I want to introduce the JISS (java indexing and search server). We have an multihomed environment with two frontends for convergence and imap/pop proxy service and two mail stores in a cluster HA environment
    (Sun cluster 3.2, messaging server 7u3-15.01, convergence 1.0-12.01 running on glassfish 2.1.1). The directory servers (multimaster) are on speperated servers.
    I viewed the jiss deployment pages in the wiki (http://wikis.sun.com/display/CommSuite/Indexing+and+Search+Service+Deployment+Planning), but they are more confusing than helpful.
    My questions are as follows:
    Can I put the jiss web service on the convergence server (to share the same glassfish server?
    Is it better to put the indexing part of JISS on a seperate server or on the convergence server or better on the mail store servers?
    Can I run the JMQ broker in an HA environment on the cluster? Is it possible to run JMQ together with messaging server in the same cluster group?
    Can JISS index two mail stores (I didn't find anything in the config guide)?
    Best Regards,
    Ruediger

    ruediger_kunze wrote:
    I want to introduce the JISS (java indexing and search server). We have an multihomed environment with two frontends for convergence and imap/pop proxy service and two mail stores in a cluster HA environmentI would recommend holding off until the next release (Communication Suite 7 update 1) as ISS update 1 provides a large number of useful enhancement.
    I viewed the jiss deployment pages in the wiki (http://wikis.sun.com/display/CommSuite/Indexing+and+Search+Service+Deployment+Planning), but they are more confusing than helpful.
    My questions are as follows:
    Can I put the jiss web service on the convergence server (to share the same glassfish server?Yes. This is the scenario used in the single-host-install guide:
    http://wikis.sun.com/display/CommSuite7/Sun+Java+Communications+Suite+7+on+a+Single+Host
    Is it better to put the indexing part of JISS on a seperate server or on the convergence server or better on the mail store servers?This is answered in the Deployment Planning guide:
    "Indexing requires significant CPU resources, thus, it is best to install the indexing service on a separate host dedicated to an ISS single server installation. If this is not an option, then install ISS on the back-end host as a single server installation, and install GlassFish Server as well for ISS."
    Can I run the JMQ broker in an HA environment on the cluster? Is it possible to run JMQ together with messaging server in the same cluster group?This article may help:
    http://wikis.sun.com/display/CommSuite/Deploying+GlassFish+Message+Queue+in+a+Highly+Available+Environment
    Can JISS index two mail stores (I didn't find anything in the config guide)?When you Bootstrap the account you point at the mailhost that the account resides on:
    http://wikis.sun.com/display/CommSuite/Administering+Indexing+and+Search+Service
    "Creating New ISS Accounts"
    Regards,
    Shane.

  • Our company have just upgraded to iOS 6 and the majority of the users are now receiving the following error 'Cannot Get Mail – Server error. Contact your server administrator' when accessing ms exchange this never happened on iOS 5 can anyone help

    Our company have just upgraded to iOS 6 and the majority of the users are now receiving the following error 'Cannot Get Mail – Server error. Contact your server administrator' when accessing ms exchange this never happened on iOS 5 can anyone help

    Have you tried deleting the account and re-adding it on the phone?
    What version of Exchange server are you running?

  • How to enable categories in iCloud Outlook contacts and search option to include contacts notes?

    So, I've seen various threads about iCloud not supporting categories as we know them in Outlook.  Categories are kept in iCloud contacts (in Outlook) but they just don't work as they did when contacts where in Outlook's PST folder.  I haven't seen that someone has found a solution to work this out without having to create groups one by one.  The other problem though is that when I search iCloud contacts in Outlook, I type in a keyword and the contact with the supposed keyword in its categories does not display if the contact has more than one categories linked to it.  Prior to iCloud I was able to pull up contacts by typing in a word in the search bar.  For instance, I'd type in a keyword of one my categories and Outlook would display all contacts that contained the word I searched (be it if the contact contained the keyword in its contact fields, categories, or notes).  Now, when I search a keyword, iCloud does not pull up the contact(s) with the specific word  if the contact has more than one categories linked to it.  It also appears that iCloud contacts in Outlook does not search keywords that are in the contacts' notes.  Does anyone know how to get these features to work?  I basically need iCloud contacts to be able to search contacts  along with their categories and their notes and display all contacts that contain the word I typed in the search bar.

    Hi there,
    I would recommend taking a look at some of the troubleshooting steps found in the article below.
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    -Griff W.

  • I have a problem with my Imessage at my macbook pro ,its says it can contact the server and i cant use it ,please solve me this problem

    i have a problem with my Imessage at my macbook pro ,its says it can contact the server and i cant use it ,please solve me this problem

    I am having the exact same problem with the iMessage on both my MacBook pro and my iphone4. It either says the username/password is incorrect or it can not contact the server. Facetime and iCloud works just fine with the same apple id and password. Somebody please help, I am beyond frustrated!

Maybe you are looking for