Problem setting up new mail account

I think when I got my macbook about 3 years ago I must have tried to set up an account for the 'mail' application. I no-longer remember wither my user-name or my password. When I open the app it comes up with a window explaining that I will be given guide-lines on how to create a new account, however, no guidelines are given and it just wants me to enter my use name and password, which it then does not recognise (it seems to therefore assume that I already have an account rather than helps me to set one up). The ending of the user-name is already written in (and is unalterable, as it's outide the bit I type in) and is "@mac.com" even though my Apple ID ends in "@mac.co.uk" (as I am from the UK) - should any of the details for my mail account be the same as my Apple ID?
Would be grateful for some help!

Hi amiaba, and a warm welcome to the forums!
I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
If you have no mail in there try this with Mail quit.
Drag this file to the Desktop...
/Users/YourUserName/Library/Preferences/com.apple.mail.plist
Start Mail & see if it steps you through it.
Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

Similar Messages

  • STRANGE PROBLEM with "Create New Mail Account.scpt" when creating POP acct.

    I am using "Create New Mail Account.scpt" to create a POP account. It creates the account successfully. It fetches the mails successfully. Now the problem begins. After fetching all the mails once if u click "Get Mail" in mac mail, it fetches all the emails again and has now 1 original and 1 copy of the email set which is on the server. I just need 1 copy of the mail set not multiple. Please give me a solution or direct me to a help.
    Thanks
    SCRIPT
    global theUsername
    global thePassword
    set success to 1
    set theResult to true
    if theResult is not equal to false
    #set theAccountName to getAccountName()
    #set theUsername to getUsername()
    #set thePassword to getPassword()
    #set theEmailAddresses to getEmailAddress()
    #set theFullName to getFullName()
    -- POP Account
    if accountTypeString is equal to "POP" or accountTypeString is equal to "IMAP" then
    set theHostname to "THE HOST NAME"
    -- POP specific options
    if accountTypeString is equal to "POP" then
    set deletionPolicy to my getDeletionPolicy()
    if deletionPolicy is not equal to false then
    set deletionPolicy to item 1 of deletionPolicy
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    setDeletionPolicy(theNewAccount, deletionPolicy)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    -- IMAP specific options
    else if accountTypeString is equal to "IMAP" then
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    getAndSetCachingSettings(theNewAccount)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    end if
    if success is equal to 1 then
    display dialog "Account created!"
    else
    display dialog "Account creation failed!"
    end if
    end if
    -- Convenience handler for creating accounts
    on createAccount(theAccountType, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    tell application "Mail"
    try
    if theAccountType is equal to ".Mac" then
    set theNewAccount to make new Mac account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "IMAP" then
    set theNewAccount to make new imap account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "POP" then
    set theNewAccount to make new pop account with properties {name:theAccountName, user name:theUsername, server name:theHostname, include when getting new mail:true, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    end if
    on error
    set theNewAccount to false
    end try
    end tell
    return theNewAccount
    end createAccount
    -- Ask the user what they would like to name the account
    on getAccountName()
    repeat
    set theResult to display dialog "What would you like this account to be named?" default answer "Example: My Home Account"
    set theAccountName to text returned of theResult
    if theAccountName does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theAccountName
    end getAccountName
    -- Ask the user for the user name for their email account
    on getUsername()
    repeat
    set theResult to display dialog "What is your email user name?" default answer "Example: janedoe"
    set theUsername to text returned of the theResult
    if theUsername does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theUsername
    end getUsername
    -- Ask the user for the password for their email account
    on getPassword()
    set theResult to display dialog "What is the password for this account?" default answer ""
    set thePassword to text returned of theResult
    return thePassword
    end getPassword
    -- Ask the user for the email addresses for their email account
    on getEmailAddress()
    repeat
    set theResult to display dialog "What email address would you like to use for this account?" default answer "Example: [email protected]"
    set theEmailAddress to text returned of theResult
    if theEmailAddress does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theEmailAddress
    end getEmailAddress
    -- Ask the user for the full name for their email account
    on getFullName()
    repeat
    set theResult to display dialog "What is the full name for this account?" default answer "Example: Steve Smith"
    set theFullName to text returned of theResult
    if (theFullName does not start with "Example:") then
    exit repeat
    end if
    end repeat
    return theFullName
    end getFullName
    -- Convenience handler for asking the user what settings they would
    -- like to have for their special mailboxes. This handler also sets these
    -- values in Mail.
    on getAndSetSpecialMailboxes(theAccount)
    -- Sent messages default to storing locally
    set theResult to display dialog "Would you like to store Sent Messages on the IMAP server?" buttons {"Yes", "No"} default button 2
    log theAccount
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store sent messages on server to true
    else if button returned of theResult is equal to "No" then
    set store sent messages on server to false
    end if
    end tell
    end tell
    -- Drafts default to storing locally
    set theResult to display dialog "Would you like to store Drafts on the IMAP server?" buttons {"Yes", "No"} default button 2
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store drafts on server to true
    else if button returned of theResult is equal to "No" then
    set store drafts on server to false
    end if
    end tell
    end tell
    -- Trash defaults to storing on the IMAP server
    set theResult to display dialog "Would you like to store Deleted Messages on the IMAP server?" buttons {"Yes", "No"} default button 1
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store deleted messages on server to true
    else if button returned of theResult is equal to "No" then
    set store deleted messages on server to false
    end if
    end tell
    end tell
    end getAndSetSpecialMailboxes
    -- Convenience handler for asking the user what IMAP
    -- caching setting they would like to use and configuring
    -- it in Mail.
    on getAndSetCachingSettings(theAccount)
    set theResult to choose from list {"Cache everything", "Cache everything but attachments", "Cache when read", "Don't cache"} ¬
    with prompt "Choose a message caching setting for this account:" default items {"Cache everything"} without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    tell theAccount
    if (item 1 of theResult is equal to "Cache everything") then
    set message caching to all messages and their attachments
    else if (item 1 of theResult is equal to "Cache everything but attachments") then
    set message caching to all messages but omit attachments
    else if (item 1 of theResult is equal to "Cache when read") then
    set message caching to only messages I have read
    else if (item 1 of theResult is equal to "Don't cache") then
    set message caching to do not keep copies of any messages
    end if
    end tell
    end tell
    end if
    end getAndSetCachingSettings
    -- Convenience handler for asking the user whether they want to use
    -- an already defined SMTP server (if any) or whether they want to
    -- define a new one.
    on getAndSetSMTPServer(theAccount)
    tell application "Mail" to set everySMTPServer to every smtp server
    if ((count of everySMTPServer) > 0) then
    set listOfSMTPServers to {}
    repeat with eachServer in everySMTPServer
    try
    set listOfSMTPServers to listOfSMTPServers & name of eachServer
    end try
    end repeat
    createNewSMTPServer(theAccount)
    else
    createNewSMTPServer(theAccount)
    end if
    end getAndSetSMTPServer
    -- Handler for creating a new SMTP server, if the user has none set up
    -- already or if they choose not to use one of their existing servers.
    on createNewSMTPServer(theAccount)
    set theServerName to "THE SERVER NAME"
    tell application "Mail"
    set theSMTPServer to make new smtp server with properties {server name:theServerName, port:25, uses ssl:true}
    set smtp server of theAccount to theSMTPServer
    end tell
    getAndSetAuthenticationScheme("SMTP", theSMTPServer)
    end createNewSMTPServer
    -- Handler for asking the user what authentication scheme their server supports.
    -- The options are different for POP, IMAP, and SMTP. Unless you are told otherwise,
    -- it's best to leave these at their default settings.
    on getAndSetAuthenticationScheme(accountType, theAccount)
    if accountType is equal to "POP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "KPOP", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "IMAP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "SMTP" then
    set theChoices to {"None", "Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    end if
    set theResult to choose from list theChoices ¬
    with prompt ¬
    "Choose an authentication scheme for this " & accountType & " server. Most servers support 'Password' authentication." default items theDefault without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    set theScheme to item 1 of theResult
    tell theAccount
    if theScheme is equal to "Password" then
    set authentication to password
    else if theScheme is equal to "Kerberos 4" then
    set authentication to «constant exutaxk4»
    else if theScheme is equal to "Kerberos 5" then
    set authentication to kerberos 5
    else if theScheme is equal to "MD5" then
    set authentication to md5
    else if theScheme is equal to "None" then
    set authentication to none
    else if theScheme is equal to "KPOP" then
    set authentication to «constant exutakpo»
    end if
    end tell
    end tell
    if accountType is equal to "SMTP" then
    set theSMTPLogin to theUsername
    set theSMTPPassword to thePassword
    tell application "Mail"
    tell theAccount
    set user name to theSMTPLogin
    set password to theSMTPPassword
    set uses ssl to true
    set port to 25
    end tell
    end tell
    end if
    end if
    end getAndSetAuthenticationScheme
    -- Handler for asking the user what POP deletion policy
    -- they would like to use for their account.
    on getDeletionPolicy()
    set theResult to choose from list {"Immediately after being downloaded", "After a specified number of days", ¬
    "When I remove them from the inbox", "Always leave them on the server"} ¬
    with prompt ¬
    "Choose a POP message deletion option:" default items {"Always leave them on the server"} without multiple selections allowed
    return theResult
    end getDeletionPolicy
    -- Handler for setting the deletion policy established in getDeletionPolicy()
    on setDeletionPolicy(theAccount, thePolicy)
    tell application "Mail"
    tell theAccount
    if thePolicy is equal to "Immediately after being downloaded" then
    set delete mail on server to true
    set delayed message deletion interval to 0
    else if thePolicy is equal to "After a specified number of days" then
    set numberOfDays to my getDeletionInterval()
    set delete mail on server to true
    set delayed message deletion interval to numberOfDays
    else if thePolicy is equal to "When I remove them from the inbox" then
    set delete mail on server to true
    set delete messages when moved from inbox to true
    else if thePolicy is equal to "Always leave them on the server" then
    set delete mail on server to false
    end if
    end tell
    end tell
    end setDeletionPolicy
    -- Handler for asking the user what deletion interval they
    -- would like to use, if they are setting up a POP account
    on getDeletionInterval()
    set theResult to display dialog "After how many days would you like POP messages to be deleted from the server?" default answer "30"
    set numberOfDays to text returned of theResult as integer
    return numberOfDays
    end getDeletionInterval

    Hi amiaba, and a warm welcome to the forums!
    I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
    If you have no mail in there try this with Mail quit.
    Drag this file to the Desktop...
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Start Mail & see if it steps you through it.
    Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

  • Can't set up new Mail accounts on N8

    I want to add another email account to my N8 (and set it up as IMAP rather than POP3 if possible?)  however, I have to set it up through the Wizard, there doesn't seem to be a way of manually setting one up since PR1.1 update (correct?)
    However, whenever I try, my phone attempts to contact Nokia's mail server or something and says 'Preparing for setup' for ages then times out. It then asks me for a username and password, and the only options I get for setting up a mail account is a Microsoft Exchange Server option, which I don't think Yahoo mail offer!
    Can anyone help?

    Just a thought network access point is defined as Priority 1 in internet destinations rather than WLAN?
    Happy to have helped forum with a Support Ratio = 42.5

  • Problems setting up POP mail accounts on E71

    i am having problems to set up my POP email accounts on my E71. the first account works, but only retrieves email- it won't send any.
    the secong POP account is a gmail account and i have set iit up but it won't even connect. if anyone knows, what are the correct setting for security (Ports) and port number? i used the same setting as in my laptop but it just won't connect on the E71.
    Please help! 

    Have a look at these two links:
    http://www.e71fanatics.com/2008/07/e71-gmail-how-to-set-up-imap-with-built.html
    http://www.realgeek.com/setting-up-gmail-on-nokia-e71/
    Either one of these should solve your problem.
    By clicking the "Kudos!" or the "Solution?" button on the right you can say "Thank You" and you´ll show the author and others that the post is useful.
    The day we stop improving is the day we stop being good.

  • Windows 8.1, Surface Pro, 2 Outlook 2013 32bit - when attempting to set up new mail account with exchange 365 - "An encrypted connection to your mail server is unavailable"

    It then tells me to "Click Next to attempt using an unencrypted connection".
    I then follow the prompts but to no avail.
    Please help me!? Everything works fine on my personal windows 7 laptop - but not on my new work owned Surface Pro 2!

    Hi,
    According to your description, your office 365 account cannot be configured on your Surface Pro while it can work on your Windows 7 client.
    Maybe we can try to manually configure it. and you can also use network monitor to find the root cause.
    However, since the issue is related to Exchange online(Office 365), I recommend you ask for more professional help on our Exchange online forum:
    http://social.technet.microsoft.com/Forums/msonline/en-US/home?forum=onlineservicesexchange
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Hi please help! After setting up a new mail account my wifi button has greyed out. I've tried rebooting it ie turning off and on but no joy. I'm a complete technophobe and have no idea what to do next. I can receive emails but am unable to reply. HELP PLS

    Please can someone help a total technophobe?!!! I have recently set up a new mail account and since I've done that my wifi button has greyed out. Not sure what happened as I had help from my daughter. She doesn't think that she did anything wrong as has been an iPhone user since day one!! She's at work now so I'm totally lost. Please help. Many thanks.

    it's' an issue on 4S..... here same problem, even after restore the firmware.... wifi and bt are lost....

  • Is something wrong with the new software update. My battery dies within 4 hours. There are also problems with my e-mail accounts. Can someone help me?

    Is something wrong with the new software update. My battery dies within 4 hours. There are also problems with my e-mail accounts. Can someone help me?

    Have you attempted an iTunes restore and setting up as a new device? Sometimes battery life issues can be caused by corrupted iOS software.
    - Greg

  • How do I set up a new mail account on my iMac?

    Hello everyone,
    I think I used to have a Mail account however I could not remember the password when I tried to turn it on. I decided to delete the account completely and to start again. How do I set up a new mail account with a new email address and a new password??
    I can see how you create a new mail account but it then asks for an email and password so that doesn't help. I really didn't think it would be a hassle!
    Thanks,
    W

    You first need to set up a new User Name and Password with your Internet Service Provider (ISP); that is, whoever provides you with Internet access, such as Comcast, AT&T, etc in the US.  Alternately you can go on the Internet and set up a new email Account with a new User Name and Password with a public company such as Google's "Gmail" or Microsoft's "Hotmail".  Once you have set up your new Account with them, THEN you enter that information into Apple's "Mail" for it to send and receive emails for your new outside Account.
    Hope this helps

  • Setting Up A New Mail Account User

    I am presently the only person using my new Mac and now I need to set up a mail account for my husband. I have him as an additional account user, but could not succeed @ setting up his mail account. Each time we tried to assign a name and password, it wouldn't take it. What do I have to do? I am presently the only Administrator to the account. I also wanted to add the Microsoft Office for Mac to his Dock Station, how do I do this also? Right now it's only in my account. I would really, really and trully appreciate help with this.
    Sincerely,
    Deborah

    Deborah,
    You need to clarify some things for me. I need to you separate the use of the terminology of "Apple Mail program" from the use of "a .mac account." They are not the same thing. The Mail application can be used with all sorts of email accounts, and does not require the use of a .mac email account subscription.
    If you are speaking of a .mac account, and if the address for your husband is an alias address belonging the one true .mac account, then you have to be signed on to the the real account before the alias can be used, and it is not set up as a separate account, but appears in the drop down menu of available From addresses.
    On the other hand, if you have purchased a second, email only, .mac address, then I think that can be set up without the other one being setup in that User Account. But only your main account could access the iDisk for other uses.
    If you talking about email accounts, other than .mac, then more info is needed.
    As you can see, I need a fuller understanding of your situation to really give a proper answer.
    Ernie

  • Is there a way to sync notes from my iPod Touch to the new Mountain Lion Notes app on my Mac without setting up a Mail account?

    I want to get notes off of my iPod, but I don't want to make set up a Mail account because I just check my mail online, and I don't want to hassle with using the app.

    You could probably use something like PhoneView
    http://www.ecamm.com/mac/phoneview/
    but, frankly, I thnk that's more of hassle than just setting up an iCloud or other IMAP account on the iPad.
    Even if Notes syncing is the only feature you use, it's going to be a far more seemless experience.
    Matt

  • I am trying to set up a mail account but I get a warning that my password cannot be sent securely to the server.  how do I correct the problem?

    I am trying to set up a mail account but I get a warning that my password cannot be sent securely to the server.  How do I correct this so that I can set up my email account?

    1. If you haven't tried this already, just delete the user account entirely, and then try setting it up again.
    2. To find the permissions file:
         a. hold down the option key
         b. go to the Go menu in the finder
         c. scroll down to Library and open it
         d. in Library, go to Containers/com.apple.mail/Data/Library/Preferences
         e. drag it to the trash and restart.
    3. if that doesn't work, go to Applications/Utilities/Keychain Access. In the Keychain Access menu, do Keychain First Aid, and repair.
    This should keep you busy for a while.

  • All new mail accounts fail

    We are putting new mail accounts on an existing server, some users have accounts and we are adding new mail accounts for them in addition to their old accounts in the info section of the user account tab. Other new users are getting new mail accounts.
    Problem...
    All new mail accounts are not setting up correctly you cannot connect and also any mail delivered to the accounts comes back as user not found.
    I have checked the Admin > Server > Access > Allow all users and groups
    The logs look like this...
    Oct 6 09:46:36 mail postfix/smtpd[1208]: NOQUEUE: reject: RCPT from mail.*******.org.uk[**.**.**.**]: 550 <pete@******.co.uk>: Recipient address rejected: User unknown in local recipient table; from=<support@*******.co.uk> to=<pete@******.co.uk> proto=ESMTP helo=<mail.******.org.uk>
    Oct 6 09:46:36 mail postfix/smtpd[1208]: disconnect from mail.*******.org.uk[**.**.**.**]

    Any Idea's anyone ?

  • How do I stop Thunderbird from creating additional folders when I add a new mail account?

    I've been using Thunderbird for about 8 years now, migrating the configuration from version to version. Currently I have two accounts it picks up email from. I want to add a third account but everytime I do this, it creates a bunch of new folders with the name of the account in my folder tree. This is undesirable, mainly because it looks terrible and it's also dodging the default filtering I have set up globally for received messages.
    How do I create a new mail account without it making new folders and just using the local folders like the other accounts already do?
    I do not use Thunderbird's internal spam filtering, I use popfile and use message filters to sort the emails by headers Popfile adds to my messages. I do not understand why it won't let me make a new account like the other accounts without making a special folder for the new account. Please help?

    Item 1. Global inbox only works with POP mail accounts.
    Tools menu > account settings >server Settings > advanced and select use global inbox to turn it on. Note the folder will disappear, so move the mail you want from them before you change the settings.
    Item 2. IMAP accounts must have their own folders. The View menu > folder > unified view was designed to overcome that as much as possible,

  • How to set a new email account for iCloud?

    How set a new email account for iCloud?

    There are two separate things you can do.
    You can add up to three 'email aliases' - these are additional addresses (not accounts) which deliver into the same inbox as the main account. (In fact it's a good idea to give out alias addresses, rather than the main address, because if they attract spam you can easily change them.) (New aliases can only be @icloud.com ones; @me.com addresses cannot now be created.)
    You should be aware before you start that once you've created an alias you cannot turn that address into a full iCloud account or move it to another account, and if it has @mac.com or @me.com versions these cannot be reinstated once deleted.
    More information on aliases here: http://help.apple.com/icloud/#mm6b1a490a
    Or if you want a completely separate account you will have to create a new iCloud account and sign into it in System Preferences>Mail, Contacts and Calendars. Note that any one device can create only three iCloud accounts.

  • Problem setting up smtp mail out .

    Hi all you good people .
    I am having a problem setting up the mail program . I'm using mail two under os-x leopard 10.5.7 . I have the pop mail working fine , but for some reason or another it wont send the mail out . I remember I got it working before , but it was a pain in the butt to do . So I ma forced to use Microsoft Entourage for my mail receiving and sending . I think Microsoft Takes more skill to use than the apple mail program .
    I would love for someone to help me solve this . My mail server is from time warner . I use there High speed internet for my mail access .
    P.S Roadrunner .

    Hi,
    I assume you are using Mail 3.6, and not "mail two"?
    What Authentication are you using on this SMTP? If not already, try using None, and removing Password and Username from SMTP setup for at least one test. Most Roadrunner SMTP are authenticated by reference to the IP address of your Modem, and using a separate authentication of the SMTP results in failure.
    Mail Preferences/Accounts/Account Information, then click on the arrows beside the name of the SMTP in the section on Outgoing Server. After you click on the arrows, choose Edit Server List. Then if the SMTP is set up with the correct name, etc, click on the Advance Tab, use Custom Port with Port 25, None as authentication, and do not enter any Username and Password. Under authentication of None, the name of the SMTP will not have your Username appended. This is the equivalent, after having previously done the set up, to those email clients with a setting to use the info of the Incoming for authentication.
    Let us know, but Roadrunner can vary from area to area on this, but this is the way it seems to always work.
    Ernie

Maybe you are looking for

  • SAP MDM-XI-R/3 Scenario

    Hi, I'm working on MDM-XI-R/3 integration. The integration between R/3 and MDM has been done. First XI posts Idoc ADRMAS and then posts Idoc DEBMAS. We tried sending the data thrice. the first two times ADRMAS was getting posted to the application su

  • HT4641 how to install Krutidev hindi font in pages?

    I have downloaded the pages for opening of the hindi text MS document which came to me by email as attachment, but still I am not able to read/edit file which are having Hindi krutidev font from MS word format. Kindly suggest me with the any addtiona

  • Problems deploying sounds with jar/game

    I've almost finished my game, for as far as software can ever be finished. Now I've troubles creating a jar file that contains all of the game's resources. Within my IDE (Eclipse) the game finds & plays .wav files correctly using: for(int i = 0; i< n

  • HT201441 What if I can't find or contact my previous owner?

    I have bought a iPhone from a second hand store when I tried to set up the iPhone it says that the iPhone is linked with a apple account, but the probelm is that I don't know the previous user of that phone so what do I do?

  • Widget won't updatae.

    For example the weather widget. I flip it over put in my zip code or city, click search and click done. But whenever I open the weather widget it always fails to give me the weather for San Francisco rather than the East Coast city that I live in.