Box containing email address appears on screen

A box with an email address from a recent contact appears in the top middle of the screen over all open windows.  It may be a person recently emailed.  Is this a bug or a virus? I cannot remove the box but it goes away if I restart only to return later. This is a 27 inch iMac intel about 5 years old OS 10.10.2

I get the same thing.  If I hover over a To or From field I'll get that sometimes.  I haven't figured out exactly what I do to get it to pop up and remain.  It's intermittent as you've learned.
Report it to Apple via http://www.apple.com/feedback/macosx.html.  The only workaround at this time is to close and reopen Mail.
It won't hurt to reboot occasionally to clear out temp and cache files.

Similar Messages

  • Box beside email address on itunes screen

    What is the box beside my email address on the itunes main page in the upper right hand corner? It looks like it has a dollar amount in it. I haven't noticed it before today.

    What is the box beside my email address on the itunes main page in the upper right hand corner?
    That likely indicates money redeemed from a gift card or credits from the iTunes Store staff. The next purchases you make will count against it instead of being charged to your credit card.
    (40516)

  • TA22652 I purchased a new iPad and my daughter uses my iPad. On my account her email address appears. How can I get my account back?

    I purchased a new iPad and my old iPad went to my daughter. I have a problem though in that my iTunes account has been taken over by her email address. If I want to redeem a voucher on my account her email address appears. How do I correct this?

    Did you take a backup in between taking the photos and deleting them ? If you did then try restoring to that backup (you will need to restore the whole iPad, you can't just do the Photos app) and they should be put back.
    Backups and restores : http://support.apple.com/kb/HT4079
    When you create new albums directly on your iPad and 'copy' photos into them you are effectively just creating pointers to the orginal photos, you aren't creating copies of the photos - so if you then delete the original photo you will also be deleting all pointers to and therefore be removing it from all albums that you've copied it into (you should have got a warning when deleting the photo that that would happen).

  • When I try to update my apps, an old email address appears and I dont know how to get rid of it?  Not to tech savvy!  : (

    When I try to update my apps, and old email address appears,how I get rid of it?  I am not tech savvy at all!

    This is happening because they were purchased with your older Apple ID.  Apps and there updates are permanently tied to the Apple ID used to purchase them, regardless of the ID on your phone in Settings>Store.  The only way to stop the prompt for your older ID would be to delete these apps from your phone.

  • F.27(Statement should be emailed if customer master contains email address)

    Hi All,
    I am working for the tcode f.27. A standard form F140_ACC_STAT_01 is assigned to tcode. Here my requirement is i need to do some changes in the form and output should be in pdf format and statement should be emailed if customer master contains email address.
    Can any body please help me how to send the email if the customer master contains email address.
    Please reply.
    Thanks,
    Nagendra

    Hi Nagendra
    change the customer email address on home and bussiness email field first and then make following changes to function module 'Z_CORR_PROCESS_00002310' or whatever name you  have got , this is working for us, let me know if y ou have any problem, You might have to tweak a code a bit , here we are decide whether to send customer statements to two email or not based on customer group selection
    data: w_output_type(10).  "Output type
       data: w_kunnr like i_kna1-kunnr.
       data: w_ktokd like i_kna1-ktokd.
       data: l_addressdtls type zaddressdtls.
       data: l_atype(1).  " Address type
    DATA: w_mailtxt TYPE finaa-namep VALUE 'ZCITY_STATEMENT_MAIL_BODY'.
    * Variables are imported - set in ZFKORD10_STUD
    * Import variable w_output_type from memory
       clear: w_output_type.
       IMPORT w_output_type FROM MEMORY ID 'ZOUTPUT_TYPE'.
       move 'B' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
          c_finaa-namep = w_mailtxt.
    * Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
       endif.
    if w_ktokd = 'stud'.
        move 'H' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
         c_finaa-namep = w_mailtxt.
      "Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
    endif.
    endif.

  • I cant update my Facebook or BOA app because a random email address appears & then it requires the PW

    I cant update my Facebook or BOA app because a random email address appears & then it requires the PW

    Delete those apps and re-download them using your Apple ID.
    ~Lyssa

  • When I send an email from outlook on my computer, the email address appears in my iphone4 contact list.  How do I stop this?

    When I send an email from outlook on my computer, the email address appears in my iphone4 contact list.  How do I stop this?

    Blair84 wrote:
    Double check your contacts email, and if its incorrect, go to their contact and change it and save it or you can delete the email you put in, and manually type it in.
    Hope this helps.
    How would that help the original poster?

  • Junk email addresses appearing in address book

    For some reason I have tons of junk email addresses appearing in my Mail address -- I have no idea how they got there. Here are just two examples, there are hundreds:
    Alexis Eldridge
    [email protected]
    or
    Gallo Poole
    [email protected]
    Does anyone know why this is happening and how to prevent it? Thanks!

    Well, yes, maybe. I'm a little paranoid -- I download in the regular user account, scan with clamxav, drop the scanned download into the admin dropbox, fast-user-switch to the admin account, move the download to an "installers" folder that I maintain, and install from the admin account. Log out and back in to the standard account. I guess, yeah, if you are doing forty separate software updates and upgrades every day, a process like mine is a little problematic. On the other hand, the Applications folder isn't writeable from a standard user account without authenticating as an administratively privileged user and I just don't do that.
    Actually, that may not quite be true. Although I don't operate that way, you could probably install from the standard user account by authenticating the installer as an admin user from within the standard user account. That kind of defeats the purpose, anyways, if the standard user account has been compromised by a hidden applescript keystroke logger or something, if such thing were to exist.
    Having a separate administrator and standard user account are a trade-off that you have to decide upon: are the added safety and security practices worth a loss of user experience convenience? Once you figure out, if you are able to figure out, how your Address Book started getting loaded up with rogue email addresses, you might be better able to make that determination for your own situation. Page 33 of the snow leopard security guide (http://images.apple.com/support/security/guides/docs/SnowLeopardSecurity_Configv10.6.pdf) recommends having separate administrator and daily use accounts. But, in the end, that's your call. The guide tells you how to lock your computer down so tightly that it's almost worthless.
    With regards to anti-malware, your best bet is to see what respected sites like macworld and others have to say, and just do some google searches. I'm in no position to make a recommendation. With clamxav, which is what I use, the price is right but I can't say how proactive a freeware/donationware anti-malware entity might be when that new occasional Mac malware comes out.
    While I have suggested you performing an anti-MacMalware scan, that may or may not resolve your issue, and offer up some thoughts on future operating practices that really don't help you now, I can only wish you good luck on solving your AddressBook problem. Please post back when you do, I'm sure everyone here would like to be made aware of what and how it happened, and what they can do to do to prevent it.

  • HT4356 Why does my email address appear on my copied documents

    When I print a document from my apple device using air print my email address appears on the copy

    What "documents" and which apps does this happen with? I print Pages documents and web site articles from miy iPad using my AirPrint printer and my email address is never printed with the document.

  • Curious email addresses appearing in mail

    Hi, after sending an email today that was received properly by the recipient, I noticed that in her response, her email address showed up in the cc: field as a mac.com email address, and it is not.  I never sent an email to the person at an incorrect mac.com address.  When searching for the mystery address in my mail files, a handful of other random emails showed up with the incorrect mac.com email address in one of the fields.  Just a little concerned that there is some kind of virus and want to make sure I'm not emailing to someone else.  All of the emails affected also include another co-worker who was copied on the emails, so perhaps it is an issue with his computer?  Help! 

    I just looked in the User/Library/Mail/V2 folder, and tracked down this folder.  Digging down several levels into the files for this account and folder I found two sub-folders called "Messages" which contained a total of 774 (mostly) .emlx files.  In three cases there were a pair of files with the same number, one with an .emlxpart extension and the other with a partial.emlx extension -- if I assume that pair corresponds to the same email, this it appears there are 771 messages on local disk.  And Mail refuses to display 71 of them? 
    I'm doing a backup with MailSteward to see what it makes of these files.

  • Email address in People screen and FND user screen

    In HR when we create a person record ( Employee / Contingent Worker / Contact etc ) we have a field for email address.
    UK HRMS Manager-> People -> Enter and Maintain -> People
    Now when we create a user account for the user, in FND user Screen, the email address is auto populated when we type in the name of the person.
    System Administrator -> Security -> Users
    Now if we change the email address in the People Screen either through PUI or through Employee Self Service, the email address is different in the People screen and in the FND user screen.
    1. Am I correct in assuming that the workflow notifications still uses the email address in FND User screen ?
    2. Is there a way (a concurrent program or something ) that synchronizes the email address in FND User screen with the one in People screen ?
    Thanks,
    -Deb

    Hi,
    If the user record is linked to an employee, then this is the one that Wokflow will use. If the user is not linked to an employee, then the user email address will be used instead.
    There is no way to re-synchronize this - you would have to relink the user and employee again.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Problem with former email addresses appearing as options when addressing emails.

    When I am typing in the name of the person I want to send an email to in Apple Mail version 3.6, all former addresses will appear for me to choose from, and before I know it I am sending emails to someone's old email address all the time.
    How do you get rid of old email addresses so they won't appear as options when you are trying to send an email?
    I'm using  an older MacBook w/ OS X version 10.5.8, which I'm not sure if it makes a difference with my problem.
    Help me, please!!!

    Thx so much, Christopher. I am finding out that there are several ways to deal with this issue, and it seems like there's a few different things I need to do. I am finding some under different related questions, but yours was helpful, too.
    I went to Windows > Previous Recepients
    and sorted and removed old addresses from there
    But I also needed to go to address book and found an incorrect address for the spouse of my recipient, so I needed your solution, too.
    It was also suggested that I
    Right click on the old mail address when it appears when starting a new mail message, then click
         remove from previous recipents list
    I'll be doing all of these as it comes up.
    Thanks again! I'm new to this support community, and am impressed!

  • No matter what letter I type in after "To" to Write a message, the same email address appears.

    I have been accustomed to simply typing in a single letter after "To" when starting to Write a message. The letter is related to the name of the person, e.g. for Bill, I type in b, and up comes his email address. However for the last few days any letter of the alphabet will produce only a particular person's email address, usually not the one I want to write to. I can type in any letter of the alphabet and the same email address comes up after the "To". How do I restore the program to the previous state where a letter will produce the email address I want?

    Welcome to the new and not improved address suggestion scheme. Instead of looking for '''Starts With''' it now works on''' It Contains'''.
    This is a big source of complaints with all versions starting with v31.
    You either have to keep typing until it finds who you are looking for or go back to a version before they broke it like v24.6.
    Maybe one day the developers will come to their senses and go back to what worked for most users and abandon this new process. All they would need to do is read the forum posts since they released this broken software.

  • When clicking on name in address book -the email address appears different in the email address bar and can't be sent -why?

    I have been using thunderbird for some years - in last month when I have been trying to send some emails I have a problem with some of them in that part of the email address has changed when I insert it ino the address bar and has inverted commas around the first part of the address before the @. I have tried deleting the addresses and re-inserting them but the same thing happens. If I go into the address bar and delete the commas the email is sent - can I overcome this problem without having to go into each email? I send out emails to many people and changing each one that has the problem takes a long time. Not every email address has this problem. Many thanks -Tim

    ok, I've spent some time doing various scenarios.
    I have managed to replicate one scenario which does as you say.
    If my contact in the address book:
    With name details as Peter Foo
    email address: [email protected]
    where there is an inserted space before the name peter, of course this is not instantly noticeable, but it is as if you hit the space bar just before typing the email address.
    Then when I use the Contacts Sidebar in a Write message, it will add the email address like this:
    Peter Foo <" peter"@somewhere.com>
    which of course in invalid.
    but in the address book, if highlight the contact, in the section below the email address in blue -if I click this to send an email the email address is printed exacly with the space and it will send as if nothing is wrong.
    So i'm asking you to check those email addresses which insert incorrectly via the Contacts sidebar. They only do this for me if there is a hidden inserted space at the start of the email address.

  • Email address appears as asterix

    hi experts,
    I want to display an email address in a window in SAPSCRIPT. When the form is printed or displayed it is showing asterix instead of the email address.
    Why is it?  I thought about maybe the field is too long for displaying.

    Hi Koroshegy,
    It seems if I'm adding a new variable to the print program, it does not take over by the sapscript??
    every field defined in the global data or as TABLES in the print program is available in SAPscript form. If the field in program is GV_ADDRESS then it is printed in script using &GV_ADDRESS&. Window and/or paragraph should be wide enough to show it in the font defined.
    Regards
    Clemens
    BTW: asterix is a french comic hero, asterisk is a star *.

Maybe you are looking for

  • I can't rebuild my loop index!

    Whilst using Garageband v4.1.2, I clicked on a loop to use it and and got a message saying that the loop couldn't be located and would I like to reindex the loop library. I clicked on Ok to reindex it, and then there were no loops at all in the libra

  • Poor quality noise reduction for Canon G10

    I recently bought a Canon G10, and I am disappointed at the quality of RAW conversions done by ACR/LR at anything approaching a high ISO. The out-of-camera JPEGs show much superior noise reduction to what I can get from RAW files, no matter how I twe

  • Does TX2z has a bios lock on its WIFI card?

     Does TX2z has a bios lock on its WIFI card? i'm planning to change may wifi card.. it would be waste if its locked.. tnx..

  • I don't have access to a 5g, yet.

    But I am seriously considering buying one to go with my 4gen iPod. Inside iTunes there is a right click context menu that is supposed to transform .mov into iPod compatible & it always seem to do just that...but is it really compatible with an iPod o

  • Audio detection issue

    i installed the 4.54 betas and i got this (first time ive used anything other than msi update thing) neway: