Having Issues with More than 1 Gmail account in Mail

I successfully added my 2 Gmail accounts to Mail in OS X and only one account required an "application-specific password", which was actually extremely easy to figure out. The other Gmail account that I added, it accepted the regular password I would use if accessing this Gmail account from any web browser. The problem lies in the fact that for the account that required the "application-specific password" allows me to select all options to Sync (ie. Mail, Contacts, Calendars, Messages, and Notes). However, the account that only required my regular password will only allow me to select "Calendars" and " Messages". If I click "Mail" or any of the other unchecked options, they immediately uncheck themselves. Any I totally overlooking something or can anyone possibly help me out?

mea culpa!
I forgot to change the description for the second (new) IMAP account.
Regards Dave

Similar Messages

  • Can my tunes library me associated with more than one iCloud account?

    Can my iTunes library be associated with more than one iCloud account?

    No, but as mentioned in my answer to your other post, you can share the same iTunes ID with your family and maintain separate iCloud accounts with separate IDs.

  • PI Message Map - useOneAsMany issue with more than 10 lines.

    I am having an issue using 'useOnAsMany' .  I am using this to map lines of text from an idoc, specifically the SHPMNT04 idoc.  When there are more than 10 lines of text (i.g. 10 occurances of E1TXTP8) the sytem drops everything after the 10th line.  When I check the context of the fields it appears all occurances are being mapped however when I execute the map it drops the text after the 10 line.  Is this a bug?  Has anyone seen this and know of an answer?
    I am using 'useOneAsMany' with E1TXTH8-TDID as the first argument and E1TXTP8-TDLINE as the second and third arguments.  I am simply moving all the text when TDID = Z001.

    Hi Busse,
    Can you check the occurence of the target field to which you are mapping? If it is 0..10 then you will only 10 lines in outupt, else it should get populated.
    Regards,
    ---Satish

  • K9n2 Diamond having trouble with more than one stick of ram

    Hi there. Thanks for reading. My setup is as follows
    WIN-500xspx 500W PSU
    Geforce 9600 GSO
    7750 BE Kuma
    XP 64bit
    k9n2 diamond w/ BIOS 2.3
    2GB Mushkin HP2-6400 (2x1GB)
    I just got the board two days ago and got everything set up, but I've been having some trouble with my ram. Whenever I have more than one stick of ram, it fails to post, unless I clear the cmos before I power on. Then, it will give me the option to load the bios or run on default settings. If I run on default, it will boot up fine and work well for about 5 minutes. Then it will shut off and not post until I've cleared the cmos again. So, I figured I had an incompatibility issue with the ram. So I tried another set, the Crucial Ballistix BL1286AA1065.8FEF with the same results. Next I went with the Rendition RM12864AA800 with the same results. I tested each stick individually and they're all good. Each slot works fine as well. I switched the old mobo back and all was well. The only thing left is the PSU but I don't think thats the problem. Any suggestions would be greatly appreciated.

    Quote
    . If I run on default, it will boot up fine and work well for about 5 minutes. Then it will shut off and not post until I've cleared the cmos again.
    Its the PSU, go for better one with strong single rail like Corsair VX,TX Series.

  • Can't add a goods-issue with more than one item and one is serial managed.

    Hi,
    We are trying to issue more than one item to a production order using the DI API.  If none of the items is serial managed, they all are accepted and the goods-issue Add is successful.  If one the items is batch-managed, the goods-issue Add is also successful.  I am able to add the goods-receipt if I it contains only one item and it is serial-number managed.  However, if I’m issuing more than one item and one or more of the items is serial number managed, then the DI API will not add the goods-issue.  The error message that appears refers to an item that is not among the items being issued.  The message is:
    -10: (IGE1.WhsCode)(line: 3), ‘Item ‘A00006        ‘ with system serial 1 is not in stock.’
    Again item A00006 is not even in the group of items being issued.
    The code I am using for the serial number part is:
    With oGoodsIssue.Lines.SerialNumbers
              .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
              .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
              .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
              .SetCurrentLine(n)
              .Add()
              rs.MoveNext()
              n += 1
    End With
    The rs is a recordset that the code is looping through as the serial numbers are being added.
    The error message does not occur during this code.  It occurs when it tries to add the full goods-receipt.  Does anyone have any idea how I can fix this?
    Thanks,
    Mike
    Edited by: Mike Angelastro on Mar 31, 2008 8:43 AM

    Hi Mike,
    Try to do the ".Add" only if you need it. Doing a ".add" without assignation may cause the error you have.
    I guess your n variable start at 1 or 0, so you could put code like this :
    With oGoodsIssue.Lines.SerialNumbers
    if n = 0 then (or 1, also I don't the correct syntax of your programming language)
    .Add()
    end if
    .SystemSerialNumber = rs.Fields.Item("SysSerial").Value
    .ManufacturerSerialNumber = rs.Fields.Item("MfrSN").Value
    .InternalSerialNumber = rs.Fields.Item("IntrSerial").Value
    .SetCurrentLine(n)
    rs.MoveNext()
    n += 1
    End With
    HTH
    Jodérick

  • Netbeans creating wsdl file having message with more than one part...

    Hi,
    I am using netbeans 6.0.1. I made an xml schema, then I wanted to make an wsdl that uses that schema.
    I wanted to put in a message more parts(3), and it would not let me. Then, i made the message with just one part, and added the other parts afterwards.
    But now, when I try to make a web service from that wsdl, it says that there is no service in the specified wsdl file.
    And if i let that message with just one part, it will make the Web Service.
    here is the xml schema and the wsdl file:
    XML Schema:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://xml.netbeans.org/schema/Abruf38"
    xmlns:tns="http://xml.netbeans.org/schema/Abruf38"
    elementFormDefault="qualified">
    <xsd:complexType name="FormRequest">
    <xsd:sequence>
    <xsd:element name="newRequest" type="xsd:boolean"/>
    <xsd:element name="requestNumber" type="xsd:int"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehiclesNumber" type="xsd:int"/>
    <xsd:element name="prefferedType" type="xsd:string"/>
    <xsd:element name="kombi" type="xsd:boolean"/>
    <xsd:element name="usageMission" type="xsd:boolean"/>
    <xsd:element name="usageEducation" type="xsd:boolean"/>
    <xsd:element name="usageGeneral" type="xsd:boolean"/>
    <xsd:element name="usageOthers" type="xsd:string"/>
    <xsd:element name="eqVehicle" type="xsd:boolean"/>
    <xsd:element name="eqDangerous" type="xsd:boolean"/>
    <xsd:element name="eqPlaneSpriegel" type="xsd:boolean"/>
    <xsd:element name="eqBegrstll" type="xsd:boolean"/>
    <xsd:element name="eqMSitzBTruck" type="xsd:boolean"/>
    <xsd:element name="eqVerzurrAusst" type="xsd:boolean"/>
    <xsd:element name="eqOthers" type="xsd:string"/>
    <xsd:element name="bringService" type="xsd:boolean"/>
    <xsd:element name="holService" type="xsd:boolean"/>
    <xsd:element name="chauffService" type="xsd:boolean"/>
    <xsd:element name="otherService1" type="xsd:string"/>
    <xsd:element name="otherService1Chk" type="xsd:boolean"/>
    <xsd:element name="otherService2" type="xsd:string"/>
    <xsd:element name="otherService2Chk" type="xsd:boolean"/>
    <xsd:element name="otherService3" type="xsd:string"/>
    <xsd:element name="otherService3Chk" type="xsd:boolean"/>
    <xsd:element name="activity" type="xsd:string"/>
    <xsd:element name="costPayer" type="xsd:string"/>
    <xsd:element name="costCenter" type="xsd:string"/>
    <xsd:element name="vehicleCost" type="xsd:float"/>
    <xsd:element name="chauffServiceCost" type="xsd:float"/>
    <xsd:element name="holBringServiceCost" type="xsd:float"/>
    <xsd:element name="totalCost" type="xsd:float"/>
    <xsd:element name="tripPurpose" type="xsd:string"/>
    <xsd:element name="fixTermin" type="xsd:boolean"/>
    <xsd:element name="justificationFix" type="xsd:string"/>
    <xsd:element name="requestID" type="xsd:string"/>
    <xsd:element name="rentalPeriod" type="tns:RentalPeriod"/>
    <xsd:element name="carPool" type="tns:CarPool"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="CarPool">
    <xsd:sequence>
    <xsd:element name="poolID" type="xsd:string"/>
    <xsd:element name="poolName" type="xsd:string"/>
    <xsd:element name="orgNumber" type="xsd:string"/>
    <xsd:element name="vehicle" maxOccurs="unbounded" type="tns:Vehicle"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="RentalPeriod">
    <xsd:sequence>
    <xsd:element name="rentalPeriodID" type="xsd:string"/>
    <xsd:element name="startDate" type="xsd:date"/>
    <xsd:element name="endDate" type="xsd:date"/>
    <xsd:element name="startTime" type="xsd:time"/>
    <xsd:element name="endTime" type="xsd:time"/>
    <xsd:element name="startLocation" type="xsd:string"/>
    <xsd:element name="endLocation" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Vehicle">
    <xsd:sequence>
    <xsd:element name="vehicleID" type="xsd:string"/>
    <xsd:element name="vehicleClass" type="xsd:string"/>
    <xsd:element name="vehicleRegisterNo" type="xsd:int"/>
    <xsd:element name="vehicleType" type="xsd:string"/>
    <xsd:element name="seatsNumber" type="xsd:int"/>
    <xsd:element name="cost" type="xsd:float"/>
    <xsd:element name="available" type="xsd:boolean"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Contact">
    <xsd:sequence>
    <xsd:element name="contactID" type="xsd:string"/>
    <xsd:element name="contactName" type="xsd:string"/>
    <xsd:element name="telNumber" type="xsd:int"/>
    <xsd:element name="faxNumber" type="xsd:int"/>
    <xsd:element name="loNo" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Person">
    <xsd:sequence>
    <xsd:element name="personID"/>
    <xsd:element name="department" type="xsd:string"/>
    <xsd:element name="serviceNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Department">
    <xsd:sequence>
    <xsd:element name="departmentID" type="xsd:string"/>
    <xsd:element name="fundsDepartment" type="xsd:string"/>
    <xsd:element name="mvwdst" type="xsd:int"/>
    <xsd:element name="distributionNumber" type="xsd:int"/>
    <xsd:element name="contact" type="tns:Contact"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="formRequestElement" type="tns:FormRequest"/>
    <xsd:element name="personElement" type="tns:Person"/>
    <xsd:element name="departmentElement" type="tns:Department"/>
    <xsd:element name="vehicle" type="tns:Vehicle"/>
    <xsd:element name="loadFormReturn" type="xsd:boolean"/>
    <xsd:element name="editFormReturn" type="xsd:boolean"/>
    </xsd:schema>
    Wsdl File:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="userWS" targetNamespace="http://j2ee.netbeans.org/wsdl/userWS"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns="http://xml.netbeans.org/schema/Abruf38" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:tns="http://j2ee.netbeans.org/wsdl/userWS" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/userWS">
    <xsd:import namespace="http://xml.netbeans.org/schema/Abruf38" schemaLocation="Abruf38.xsd"/>
    </xsd:schema>
    </types>
    <message name="loadFormRequest">
    <part name="formRequest" element="ns:formRequestElement"/>
    <part name="person" element="ns:personElement"/>
    <part name="department" element="ns:departmentElement"/>
    </message>
    <message name="loadFormReply">
    <part name="retVal" element="ns:loadFormReturn"/>
    </message>
    <portType name="userWSPortType">
    <operation name="loadForm">
    <input name="input1" message="tns:loadFormRequest"></input>
    <output name="output1" message="tns:loadFormReply"/>
    </operation>
    </portType>
    <binding name="userWSBinding" type="tns:userWSPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loadForm">
    <soap:operation/>
    <input name="input1">
    <soap:body use="literal"/>
    </input>
    <output name="output1">
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="userWSService">
    <port name="userWSPort" binding="tns:userWSBinding">
    <soap:address location="http://localhost:18181/userWSService/userWSPort"/>
    </port>
    </service>
    <plnk:partnerLinkType name="userWS1">
    <!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes.
    In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type.
    A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.-->
    <plnk:role name="userWSPortTypeRole" portType="tns:userWSPortType"/>
    </plnk:partnerLinkType>
    </definitions>
    The message that Netbeans says when trying to put more parts to the message is:
    WS-I Basic Profile Rule R2210: If a document-literal binding in a DESCRIPTION does not specify the parts attribute on a soapbind:body element, the corresponding abstract wsdl:message MUST define zero or one wsdl:parts.
    Please...I am desperate, cause I am pressed by time!
    Can anyone tell me how can I make it work. Cause it is very common to use a Web service operation that has more than ONE parameter.
    I am waiting for your replys!

    Hi,
    Change the <soap:binding style="document"... to <soap:binding style="rpc"... and see if that works.
    I'm not sure how to get <soap:binding style="document"... working yet - I'm not that experienced in web services yet.
    Hope this helps and is not too late.
    Regards,
    Greg Nye

  • Sharing photos using more than one GMail account

    I have iPhoto set up to use GMail for both my email account and my wife's. My contacts show up for auto typing just fine but when my wife tries to use her GMail account her auto typing will only access contacts from my account and not hers.
    Any ideas?

    correct, hide one and both hide.
    Move one to a folder and cant move the other one.
    I never tried until just now, it may be a limitation of the app
    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

  • More than 1 IMAP account in "Mail"? - ...e.g. 2 "gmail" accounts in "Mail"

    Hi folks,
    I have currently a "mobile.me" subscription which I don't really use (e.g. I don't need the internet functions like the homepage designer nor the 200gb, etc.). Nevertheless, I would still like to use "Mail" as my primary email application.
    Therefore I created two new "gmail" email addresses (one for my wife and one for myself). Although it was quite an easy task to set-up the first gmail address in "Mail" (IMAP) it was not possible to install a second IMAP account.
    Please help me! How can i set-up a second IMAP account in "Mail"?
    or the other way around. how can I use "Mail" with two different email addresses? ...without a "mobile.me" subscription?
    Thanks in advance
    Dave

    mea culpa!
    I forgot to change the description for the second (new) IMAP account.
    Regards Dave

  • I have Snow Leopard 10.6 and I am having issues with M/S Word 2004 and G-mail. I can only open docs sent to me in g-mail on google doc?

    Is there a compatability issue with Microsoft Word 2004 and Snow Leopard or is it G-Mail? I am using Safari with a G-mail account.

    Will upgrading to 2011 correct my issue that I can not open a pdf or word doc in G-mail or could it be a g-mail setting? I can open these docs outside of G-mail, but I am also having issues sending them without the docs becoming slightly modified enroute.

  • Syncing issues - "not more than 5 iTunes accounts"

    I just received, activated and synched my new iPhone4. Activation was a breeze, but when I tried copying music and a couple of movies from my iTunes library, I got the message:
    "Some of the iTunes Store files in the iTunes library were not copied to the iPhone because the iPhone may only contain content from five iTunes Store accounts."
    I ran the Track Down Purchases script (from Doug's Scripts) on my entire library, which revealed one song from a sixth account that I then deleted. I re-synched but got the same message as above. Quitting out of iTunes and then re-launching made no difference. Short of looking at each song individually, is there another approach for showing account ownership of purchased iTunes music that might reveal additional problem songs?
    Also, does anyone know a way to show which account purchased which songs in my iPhone library? The Track Down Purchases script works only my computer's iTunes library, not the iPhone's (or iPod's).

    I did that with my 3GS before ever starting the activation process for the 4, having gotten the not-all-your-iPhone-purchases-are-in-your-library message when I did one last backup of the 3GS. I then activated the 4, synched, got the 5 accounts message, ran Doug's script, deleted the song, and re-ran the script with no additional accounts showing up (though I can't remember if the second pass-through was before or after re-launching iTunes).
    Weirdly, when I later tried to erase my 3GS, I again got the message that not all the songs purchased on my 3GS were in my iTunes library. I did the file->transfer purchases two more times and kept getting the not-transferred message and finally just erased the thing.

  • Error message when trying to log with more than a mobile account

    Hi guys,
    I face a very strange and worrying problem : when I log with a mobile account against my Snow Leopard Server, it works. But when I try to log with a second mobile using fast user switching, I have a strange error message saying that I can't connect with this user "at the moment". Once I log off from the first mobile account, I can log with the second one...
    It is as if it is not possible to have two or more mobile/network accounts logged simultaneously on the same client. Is this a known problem ?
    Thanks for your help,
    Eric.

    By design or not, this is a flaw, and a huge one ! I wanted to set up my home network so that each member of my family has a portable account. But this stupid design decision makes it impossible, since it makes impossible to have two or more users logged at the same time on a computer. So each time a member of my family wants to log on the family iMac, they have first to ask the previous logged member to log out !
    How is that not a flawed design ? I don't even see what are the pros of that design decision ?

  • Share Screen Issues With More Than One Viewer and ...

    Tried to do it multiple times and Skype doens't offer the normal screen choice window and then is locked i.e. you can't hang up the call nor do anything. You ask the viewer/callers to hang up for you and then redieal. HUGE bug.

    Hi,
    You can create a shared workbook and place it on a network location where several people can edit the contents simultaneously
    Just go to the Review tab, in the Changes group, click
    Share Workbook.
    However, not all features and functionalities are supported in a shared workbook. Please review this article for more details:
    http://office.microsoft.com/en-us/excel-help/use-a-shared-workbook-to-collaborate-HP010096833.aspx
    Hope this helps.
    Thanks,
    Ethan Hua CHN
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can I associate a device with more than 1 iCloud account, and still track on find my iPad?

    After one of my offices' iPads was stolen, I was made responsible for tracking them. I'd like to add them all to my iCloud account. If they were added to another iCloud account, could I still track them on mine? They are all retina iPads.

    You have to be signed into the iCloud account you are trying to track in order to track it, either on icloud.com or on the Find My iPhone App.  If you added them all to your iCloud account, they would all have full access to all your synced data: contacts, calendars, notes, photo stream photos, your iCloud email account, etc.  They would also all be backing up to your iCloud account, which would no doubt require a large storage upgrade to hold them all.  Also any data they sync with the account would be merged with yours so you would all end up with each other's contacts, calendars, etc. on your devices.
    So it's really not a good idea to try to put them all on your account.  Instead, you'll just need to get everyone's iCloud login credentials if they expect you to be able to log in and track all of these devices.

  • 90 day wait with more than 1 itunes account

    My family has 3 different itunes accounts and since my sister's account is connected for 90 days i can't put the songs i purchased on my iphone onto my ipod nano. What can I do to get the songs onto my ipod?

    An answer would be nice or at least a question if you don't understand or if it's not specific enough.

  • TS3899 issues sending email using my gmail account on my new iphone4s.

    so i was having issues sending email using my gmail account on my new iphone4s.  i called my provider, att - to fix the issue, mine anyway, under settings - general - reset - reset network connections.  fixes the send issue.  releases all of the other junk that was left on your old phone. 

    Hi Jari,
    Thanks to reply me.
    There is an workspace details where user solve that problem but now i have troed to access that workspace but its not working .i have cofusion how can i do this where i put
    apex_mail.send(
    p_to => v_recipient_list
    , p_from => v_from_list
    , p_subj => 'Hello world'
    , p_body => v_body
    , p_replyto => null);
    this package
    and how to and where set SMTP of Gmail and i don't know about gmail SMTP Server Specification
    i ahve jus create a form with
    P1_TO Text Field
    P1_SUBJECT Text Field
    P1_FILE_BRE File Browse...
    P1_COMMENT Textarea
    Please guid me...how can i do that step by step
    Thanks

Maybe you are looking for