Do I have to change password for messages to work with phone

Just downloaded moutain lion. messages starts different conversations depending on computer(imac) vs. iphone or ipad. The settings say I have to have a password that has uppercase lowercase and number. I like my iTunes password being simple.

Hi,
My long term Apple ID that I login to Discussions with is based on a email from a dial-up account I had when I bought my original Bondi Blue Ver A (Bubble) iMac.
I linked this more recently with an iCloud @me.com name.
This means using either name and a common password I can login here, to the App Store or iTunes.
I can change them in the iMessages part of Messages as the Apple ID but at this point it is unclear to me whether they continue to Sync fully.
To be a little clearer if they are fully integrated in iMessages as well as iCloud (Of which I have doubts) and I leave the older Original ID on my iPhone but use the @me.com address on my Messages app do they sync ?
So in essence I have a set up the same as yours - an external email as Apple ID linked to an iCloud @me.com name.
My belief is that for iCloud and certain Logins the two "names" are in fact one account but for iMessages I am not sure this holds true and I was asking basically if you had tried switching your Gmail ID with the iCloud ID and seen it (Messages) still sync ?
10:02 AM      Friday; July 27, 2012
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
  iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb (Snow Leopard 10.6.8)
 Mac OS X (10.6.8),
"Limit the Logs to the Bits above Binary Images."  No, Seriously

Similar Messages

  • I cannot recover my Master Password under 10.6.8. I want to change it. I do have my admin password for my account. How can I create a new master pw?

    I cannot recover my Master Password under 10.6.8. I want to change it. I do have my admin password for my account. How can I create a new master pw?

    If you are referring the Master Password that can be set in System Preferences>Security>FileVault, then see this thread:
    How to reset FileVault master password
    http://discussions.apple.com/thread.jspa?messageID=5822772
    As explained there, and for obvious security reasons, a new master password created in this fashion way will not unlock any pre-existing FileVault accounts. Resetting the master password is therefore only useful after you turn off FileVault in all existing accounts. You can then turn FileVault back on after the new master password is in place.

  • How to change password for a user in WLS 7.0 embedded ldap in code?

    I asked the similar question before but don't have an answer yet.
    I need to change password for a user in my Java code. Any help will be
    appreciated.
    Here is my stack trace:
    c:\Test>java -classpath . testEmbeddedLdap
    attribute: uid
    attribute: description
    attribute: objectclass
    attribute: wlsMemberOf
    attribute: sn
    attribute: cn
    javax.naming.NoPermissionException: [LDAP: error code 50 - Insufficient
    Access Rights]; remaining name
    'uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2872)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2810)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2616)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1374)
    at
    com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDir
    Context.java:255)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:172)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:161)
    at
    javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.
    java:146)
    at testEmbeddedLdap.main(testEmbeddedLdap.java:30)
    Here is my testing code:
    <PRE>
    import java.util.*;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class testEmbeddedLdap {
    public static void main(String[] argv) {
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://localhost:7001");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "uid=myAdministrator, ou=people,
    ou=myrealm, dc=mydomain");
    env.put(Context.SECURITY_CREDENTIALS, "myAdministrator");
    try {
    DirContext ctx = new InitialDirContext(env);
    String
    sUser="uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain";
    String sOldPassword="myRegularUser";
    String sNewPassword="newpassword";
    for (NamingEnumeration ae = ctx.getAttributes(sUser).getAll();
    ae.hasMore(); ) {
    Attribute attr = (Attribute)ae.next();
    System.out.println("attribute: " + attr.getID());
    ModificationItem[] mods = new ModificationItem[2];
    Attribute mod0 = new BasicAttribute("userpassword",
    sOldPassword);
    mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE,
    mod0);
    Attribute mod1 = new BasicAttribute("userpassword",
    sNewPassword);
    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, mod1);
    ctx.modifyAttributes(sUser, mods);
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    </PRE>
    "Neil Smithline" <[email protected]> wrote in message
    news:[email protected]...
    Two things. First, I'm not exactly sure what password you are trying to
    change. The LDAP server's password or a user's password in the LDAP
    server. Second, could you please post a stack trace.
    Thanks - Neil
    K Wong wrote:
    I am using (javax.naming.directory.DirContext.modifyAttributes) to
    change
    password to our development Weblogic 7.0 embedded LDAP.
    I login as the system administrator (a user in the administratorsgroup),
    but always gets the javax.naming.NoPermissionException - InsufficientAccess
    Rights.
    What user should I use? Any help will be appreciated.

    Hai,
    This condition based execution requires - javascript coding.
    In miscelleaneous tools bar, you have an option of SCRIPT_ITEM writer tool, drag the tool into your WAD layout, and select the properties , choose the editor option and paste your coding. that's it.
    Alternate option :
    in your web application design layout , you will fine XHTML coding editor , there you need to write coding and execute the same.
    Hope this will help to you.
    Assign Points if its really useful.
    Cheers !!!
    Bye
    Regards,
    Giri

  • ITunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email addre

    iTunes is updated and works fine and I am able to log onto my account. When I go to purchase a song, I get the error message "Your Apple ID has been disabled". I've tried different methods: changing passwords, making a new account with another email address, and emailing itunes tech support. I am curious as to how many others have been experiencing the same issue. When I googled the error, it seemed like it was happening extremely often with many people.
    We all love their products, but they always come with a lot of issues and horrible customer support.
    My apple Id is [email protected]

    My Iphone 4 is telling me the same thing and I believe I figured out what the problem is.  I had some fraudulent charges on my itunes account, so I call my bank and disputed the charges.  Right after I did that, I started getting the message "Your apple ID has been disabled."  I just realized today that the charges are not fraudulent, they are "in app purchases."  One of my daughters downloaded the game Top Girl which is FREE, but in the game Top Girl you use money in the game to purchase things.  It just so happens that the money you use to purchase things is real money MY Money!!!.  My daughter thought she was using play money in the game and had no idea she was using real money.  She spent $106.00 buying stuff.  Now I have to call the bank and tell them to release the hold and pay Itunes.  I'm hoping this solves the problem.  Here is the link to learn how to disable "in app purchase" on your iphone or ipad.
    http://www.ikidapps.com/2010/12/parents-avoid-accidental-app-purchases-how-to-tu rn-off-in-app-purchasing.html

  • Set password for messaging lumia 800

    hi,
    i have a nokia lumia 800 with windows phone 7.8.
    there is a way or application that can set password for messaging, when I or another person want to acces "messaging" it must to insert password, a pin with 4 digits for example.
    thank you!
    Solved!
    Go to Solution.

    Nah, buddy. It's not possible on the phone.
    Most of the applications I found in the Marketplace allow sending of encrypted messages in which recipient needs to decrypt, but you can check the Marketplace yourself. I may miss one that suits what you need: http://www.windowsphone.com/en-us/store/search?q=message+password
    However, you can create a password on the phone by going to Settings and then Lock+Wallpaper. This locks the phone and you need to input the password before you can access your phone.
    Cheers.

  • I am unable to change passwords for any users.  The "change password" is grayed out.

    I am unable to change passwords for any users.  The "change password" is grayed out.  I know there is a way to change them but I am having trouble finding it.
    Message was edited by: dmw1975

    If you're in the Users pane of the server app, and you select Network Users from the drop-down near the top, there's a small padlock icon at the bottom. Is it locked or open? If locked, click it and enter credentials into the authorisation box that opens

  • How to change password for BtOpenZone?

    Hi,
    Does anyone know how to change password for BtOpenZone? I have tried the following link and it is not working with me....
    http://www.btinternet.com/new/content/mybti
    Last time I have to ring BT to change the password, but I want to do via some control panel.
    Thanks
    Kam 
    Solved!
    Go to Solution.

    If you're a BT Total Broadband customer and you want to change the password, you can go to btyahoo.com, log in there and change your password. The primary email account and the FON/OZ logins are linked. if you change your email password, your FON/OZ password will also change.
    if you're an Openzone only customer, you can log into your control panel on the main page and change your password there.

  • How to change password for  XELSYSADM user in OIM?

    Hello Gurus and Experts!
    How to change password for XELSYSADM user in OIM?
    Your help is appreciated.

    Follow the undermentioned steps to change the password:
    1) Change the password from oim Design Client as usual.
    2) Open xlconfig.xml present in <XL_HOME>\xellerate\config folder.
    3) This step is optional and should only be used if you have a <XLPassword encrypted> tag in the <Scheduler> section. In the scheduler section, change the encrypted="true" to encrypted="false" and replace existing encrypted password with new clear text password, as shown below:
    <Scheduler>
    <XLUserName>xelsysadm</XLUserName>
    <XLPassword encrypted="false">NEW_PASSWORD</XLPassword>
    </Scheduler>
    4) Restart server.
    Now login with the new password.

  • Changed password for apple id/ipad not recognizing

    I changed password for apple id,my Ipad is not lettting me in in itunes ipad?

    Hi mbugs008,
    I understand you changed the password for your Apple ID and now can't log into the iTunes Store on the iPad.
    Have you gone to the Settings and logged out and back in again?
    iTunes Store settings - iPad User Guide
    iTunes Store settings
    To set options for the iTunes Store, go to Settings > iTunes & App Store.
    View or edit your account.  Tap your Apple ID, then tap View Apple ID and log in. To change your password, tap the Apple ID field, then tap the Password field.
    Sign in with a different Apple ID.  Tap your account name, then tap Sign Out. You can then enter a different Apple ID.
    Thank you for visiting Apple Support Communities.
    Nubz

  • Change password for internal/oracle??

    If for some reason, I need to change password for internal, could I logon as system to change password for internal?? Thanks for any reply...

    You could...but it is little tricky...
    Here are the steps...make sure you do a complete export of the existing
    schema...if any thing were to go wrong...
    There are different method of changing the password file.
    ORADIM or ORAPWD..
    I tend to use ORAPWD if I am concentrating on the password only...
    if there are any more alteration to be made to the SID...such as renaming A SID
    san so forth..then I use ORADIM..
    BUT for your need any one of this will work..
    CHANGING the INTERNAL PASSWORD USING ORADIM command:
    to change the password with ORADIM:
    1) Delete the SID fro the password you want to change:
    c:\ORADIM -DELETE -SID SID
    where SID is the SID to delete
    2) Verify that the PWDSID.ORA and STRTSID.CMD files have been removed from the
    \ORACLE_HOME\DATABASE\
    directory
    3) create the same SID again and specify a new INTERNAL password
    c:\ORADIM -NEW SID SID -INTPWD NEWPASSWORD -STARTMODE AUTO
    -MAXUSERS N -PFILE
    <drive:
    \path\init{sid}.ora>
    where SID is the same SID to recreate, NEW_PASSWORD is the INTERNAL password,
    and N is the maximum number of DBAs/Operators who can be logged in at once with
    the password..
    This should take care of you issue..
    However there are some other way to delete and use authentication...
    If you decide to use ORAPWD:
    Then there is a different approach to modifying the internal password...
    CHANGING PASSWORD USING ORAPWD
    F:\OraHome1\BIN>orapwd file=shahpwd password=snawaz
    this will create a passowrd file shahpwd
    also make sure your init.ora is set to
    remote_login_passwordfile = exclusive
    shutdown the database log..out of the svrmgrl..
    and log back in with a new password...
    svrmgrl> connect interna/snawaz
    GOOD LUCK
    Shah

  • I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    In this case you won't be able to do that?

  • I have forgotten my password for iPod Touch 4G and it is now disabled. I tried connecting to iTunes but i haven't synced before and i need to enter the password before i can back it up so i can restore it. I don't want to lose pictures so please help!

    I have forgotten my password for iPod Touch 4G and it is now disabled. I tried connecting to iTunes but i haven't synced before and i need to enter the password before i can back it up so i can restore it. I don't want to lose pictures so please HELP!

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased. That is how it works
    iOS: Forgot passcode or device disabled
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • I have forgotten my password for the orange webmail and I do not how to reset

    i have forgotten my password for the orange webmail  and I  do not how to reset

    Try forgotten your password? on login form http://email.orange.co.uk/ .

  • HT4798 I have forgotten my password for mountain os. I have followed the instructions about going to "User group" and enetering my apple ID. It doesn't work. Can anyone help me? Thank you.

    I have forgotten my password for mountain os. I have followed the instructions about going to "User group" and enetering my apple ID. It doesn't work. Can anyone help me? Thank you.

    Welcome to the Apple Support Communities
    https://discussions.apple.com/docs/DOC-4101

  • I have forgot my password for my lock screen what can i do to get on it?

    i have forgot my password for my lock screen, and it now says connect to iTunes but it isnt connecting i want to know how to get it on?

    2 options
    1. restore it to a backup you took before you put a password on
    2. restore it to factory settings if there was a work around then the whole password thing would be rather pointless and security would be absent

Maybe you are looking for

  • Any advice on a missing/removed Mac Store App (which has been paid for)?

    Okay, so I'd really appreciate some advice on this matter. On: 6/10/2013, I purchased Grand Theft Auto 3 from the Mac App Store. I used the App without that many problems for a few months. After a few months I deleted the App as I needed to concentra

  • 32 bit bridge hitting 1 CPU in Logic?

    Is anyone else experiencing this? I appears that all 32 bit bridge plugs are taxed to the same CPU (I'm using an 8-core). If that is the case, this is a drag...

  • My "Recently Added" playlist has disappeared

    Help! My "Recently Added" playlist function seems to have disappeared. I'm sure my kids are responsible. I can't find the topic covered anywhere. iMac G5   Mac OS X (10.3.9)  

  • IPad ios 4.2 upgrade debacle

    I was on the phone this morning with a level 1 Apple Care tech, who basically told me that my sudden lack of all internet connectivity is caused by problems with my router/firewalls, and has nothing to do with the ios 4.2 upgrade. This is my first Ma

  • BMP bean with finalizers, performance issue?

    Hi Guys, I am using BMP 1.1, websphere 6.1, and have been reading up on profiling my application. Reading through the JProfiler manual, I found the following suggestion. [http://resources.ej-technologies.com/jprofiler/help/doc/indexRedirect.html?http