How do I keep iCloud mail from being my outgoing message default address?

When I send outgoing messages on Mail, it defaults to iCloud rather than my Mail POP account.  I have the POP account selected in preferences.

Do you have it selected here in preferences?

Similar Messages

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • How to remove my icloud mail from icloud server ?

    how to remove my icloud mail from icloud server ?

    If you don't want to keep it, select it, on the iCloud website Mail page click the Trash icon in the toolbar to move it to the Trash, then click the cogwheel icon at top right and choose 'Empty Trash'. Or in the Mail application drag the messages to the Trash and from the Mailbox menu choose 'Erase deleted items' then 'iCloud'.
    If you want to keep it, in the Mail application drag the messages to another mailbox under 'On My Mac'.

  • How do I keep my Imessages from being viewed on other devices under my apple ID?

    How do I keep my Imessages from being viewed on other devices under my apple ID?

    No, you can authorize any number of email addresses on your Apple Id and then select one of those to use as an alternate Send and Recieve for Messages. It isn't necessary to use seperate AppleIDs. I use my phone number on my iPhone and an email address on the iPad.

  • How do I keep my iPod from getting my text messages from my phone??

    How do I keep my iPod from getting my text messages from my phone??

    Yes, yuo can do this by manually managing your iPod's content in iTunes.
    See this article for details:
    Managing content manually on iPod
    -Kylene

  • How do i keep certain songs from being uploaded from my library to my ipod

    how do i keep certain songs form being uploaded from itunes to my ipod the check button does nothing
    30gig ipod   Windows 98  

    Set your iPod so you can manually manage your songs, see here for details:http://www.apple.com/support/ipod/tutorial/ipgettingstartedt3.html

  • How do I get iCloud mail from another computer?

    I would like to access my iCloud mail from a friend's computer. How do I do that?

    I apologize for making an incorrect assumption.  After searching now for about 30 minutes I cannot find one conclusive article from Apple that states in plain terms that you cannot access your iCloud email from another computer. I cannot find anything in the ASC when i do a search either. That really seems absurd to me, and probably another reason why I refuse most of the iCloud services myself.
    Anyway, that is of not help to you and I apologize for that. This is the most conclusive evidence that I can find that states that you can't read iCloud email on another computer unless that computer is set up with iCloud.
    http://support.apple.com/kb/PH2638?viewlocale=en_US
    I hope for your sake, that I am missing something and it is possible to access mail from another computer, otherwise it is really pointless to rely on iCloud email. I/we have to be missing something somewhere ... I hope.

  • How do I keep older emails from being in the cloud, taking up my space?

    How do I keep older e-mails out of the cloud, taking up my space?

    Patti23 wrote:
    How do I move purchased movies from itunes to the icloud? 
    Delete them from the local computer.  Nothing gets moved.  If the content was purchased from iTunes it should be available for download again in the future.
    Patti23 wrote:
    I want to keep them on the ipad they have been moved to.
    If the device is synced with iTunes on the computer and the content is deleted from iTunes it will also be removed from the device.
    Realistically, if you want to keep the content, keep it stored locally.  Purchase an external drive to store the content on.  Keep in mind that iOS devices are NOT backup devices, they merely mirror the content in the iTunes library on the computer.

  • I would like to know how to prevent an iCloud track from being selected to play in one of the SmartPlaylists that I have made.

    How do I stop an ICloud tracks from playing in a SmartPlaylist?
    Thank You
    John

    mende1....I still have the problem.
    I have been trying out the "Show/Hide Music in the Cloud" in the View menu and it works fine as long as I am in the "Show/Albums/Artists/Genres" fields of ITunes.
    My problem still is that in my SmartPlaylist the iCloud tracks are still showing up and trying to download and play if I don't stop them time.  The Hide/Show Cloud doesn't even show up in the View menu if you are listening to a playlist smart or regular either one.
    My problem is that I'm on a Satelite connection (Hughes.net) and I'm only allowed 250 mb's download per week unless I download between 2 and 6 am New York time and then the download is free of charge other wise I have to pay extra.
    A real pain for sure..
    Any Ideas?
    thanks
    John

  • How do I keep my text from being distorted when I do a lower arc?

    When I create an upper arc in my text it looks normal, but when I do a lower arc, it expands all the letters in the middle instead of just curving them, so that it has a sort of "fish eye" look. How do I keep it from doing this?

    No, gratitude for your help. Since I've never done the text the way you suggested, I found a video on youtube to show me how. However, I have not been able to get satisfactory results. Why will PS allow me to make a perfect upper arc with my type, and it won't do the same on the lower arc?

  • How do you keep junk mail from appearing even after I have hit the "junk" button when it appeared the first time?

    I have several email accounts that come to my mac.   When junk appears I hit the junk button.   Does it take awhile to train the junk or is there a way to set up mail so that it automatically goes to junk and does not appear at all in my inbox?
    It's so time consuming to get rid of this stuff.
    Thanks for any suggestions.
    Grammynancy

    Hello, it does take time to train it.
    You can setup rules if there's any constancy, like I find that 99.999% of mail from yahoo is junk, so I have a Rule setup to just get rid of it permanently, I never see them at all...
    But you could have it be If Subject contains Ciagra, Perform the following functions, Mark as Junk... or whatever.

  • How do I keep iPhone Contacts from being visible in iMessage on MacBook?

    I've disabled iMessage, but if you open it and try to type a message, you can easily see all the Contacts from my iPhone. How do I prevent that?

    HI,
    When I have turned Off the Contacts app part of my iCloud account it asks me whethr I want to keep them on my Mac (and not whether I want to delete them from all devices).
    They always stay on my iPhone.
    7:36 pm      Sunday; June 1, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How do I unassociate icloud mail from outlook

    In the icloud control panel I accidentally checked the Mail box and hit Apply.
    Now I don't know how to Unassociate Outlook from my icloud address.

    MackKnife wrote:
    In the icloud control panel I accidentally checked the Mail box and hit Apply.
    Now I don't know how to Unassociate Outlook from my icloud address.
    Uncheck the Mail box.

  • App or podcast downloaded to iphone is deleted from iphone and transferred to iTunes 11.  How can I keep the file from being deleted from the iPhone?

    I recently updated iTunes from version 10.x to 11.  In version 10, I could download a podcast or an app to my iPhone from the app store, then the app or podcast would co COPIED to iTunes during a sync.  Now with version 11, when I sync, the app or podcast is deleted from my iPhone and MOVED to iTunes.  How can I get back the old feature of making a copy?  This is a very dumb thing that happens in iTunes and I can not believe that I am the only one to complain abou this.  Please help me.  What do I need to change in iTunes to keep my copy on the iPhone.
    Thanks to all you geniouses out there!
    Doug

    Not 100% sure of your question.  If you are wanting to delete apps from itunes just right click then delete then empty recycle bin.

  • How can I keep my emails from being deleted from the Telus server so I can view them on my home computer as well?

    How can I set my IPad email account to leave the messages on the server?  I want them left on the Telus server until I choose to delete them.

    I have POP mail accounts on my iPad.
    Settings > Mail, Contacts, Calendar leads me to the correct place.
    At the top will be a list of my Mail accounts.
    Tapping on an Account brings up all the info in the account.
    The Advanced choice is at the bottom of the window and usually requires scrolling down to see it.
    Tapping Advanced brings up another widow with the Delete from Server choice. Tap that and you can then tap Never.
    I'm using an iPad 2 and an iphone5 running iOS 6.0.1

Maybe you are looking for

  • A bunch of ArrayLists

    Overview My program needs to store 11 different types of data (numbered 1 through 12, skipping 5, although I may find a way to fill this gap soon). Each type of data needs to have a bunch of entries of undeterminate size (ArrayList), but I know there

  • Lenovo U450p Fan control Can someone modify?

    Hello! i found a thread where a guy modified the Idepad 350 Bios so that the fan noise is fixed. Can someone also do this for the 450? This would be great! Many thanks!

  • DTW Update LineNum

    when updating a Purchase Order using DTW, the linenum field in the lines is not linked to the linenum generated from SQL. for example : SAP puchase Order 123 LINE NUM                  Item 4                               ABC 5                        

  • Adobe PE6 and making web pages

    Is there a faster way to make the downloading of the graphics for the webpages you create in 6? I am using the one where it slides down to the left and a Photo comes to the screen and you use the left and right arrows to navigate.

  • IPhone -36 error after updating to 2.0

    After updating and activating to iPhone 2.0, when it tries to restore I get an error saying:= "An error occurred while restoring this iPhone (-36)" And then as it continues to try to work it says: "The iPhone "iPhone" cannot be synced. The required f