Blocking or reporting iMessage spam?

I'm getting daily spams in iMessage advertising a game called DragonVale. I've never heard of this game or the sender, so this is totally unsolicited. How do I block the sender, and/or report them to Apple?
For the curious, the messages are from [email protected] and read
"Raise your own dragons in DragonVale! Download it on your iPhone now:" (followed by a URL)
If you do a web search for that first sentence, you'll see a lot of Twitter spams as the top hits.
Most services social these days have a mechanism to report spam; I'm kind of surprised iMessage doesn't.
--Jens

As stated in the Spam FAQ page, you will not get any response when sending the message to [email protected] for review. You attach the message that you are unable to send, and they review it. Depending on the outcome of the investigation, the filter will either be updated to allow the content that was previously blocked, or it will be determined to be a legitimate block and no changes will be made.
Some troubleshooting steps you can try:
If you have a signature, try removing one line at a time from it and attempting to send the message again. Some signatures look like "ads" to the filters, apparently.
If you are using a pop3 client (Outlook, Outlook Express, etc.) try sending your message from the verizon.net website. If this resolves the issue, then it is something that your client is adding to the message that is causing it to be blocked.
If the Subject line of your message has a whole bunch of "Fwd: Fwd: Re: Fwd:" try removing some of them.
Remove any links/URLs from the email one at a time to isolate if one of them is causing the block.
Some people have suggested sending the message to [email protected] for investigation. This may work for you as well.
If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
"All knowledge is worth having."

Similar Messages

  • Accidental Block and report as spam

    I accidentally blocked and reported as spam a request from a friend that used an unfamiliar alias. Since then I went back and accepted them as a contact. 
    My question is this - is there any consequence from my having reported it as spam? Was that nullified by my subsequently accepting them? Just wondering if I need to report this to Skype or something as I would hate to have caused a problem for my friend's account.
    Thanks for any help or advice.
    Solved!
    Go to Solution.

    Hi, Jeromel, and welcome to the Community,
    Marking a contact request as Abuse or Spam is not reversable, however the errant mouse click should cause no undue consequences.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How to block an incoming iMessage?

    Does anyone know how to block an incoming iMessage? Verizon can't block because iMessage uses data, it's not a regular text message. Thx

    You can Turn Off iMessages..Turn Of Notifications & Sounds..that way only You kno its there..
    Trace the Number & Report it to the Police if it's that bad...

  • Sorting in Blocked ALV Report

    Hi Experts,
    Can i achieve sorting in Blocked ALV report as we can do in ALV Grid Display.???
    If so, how can this be achieved????
    For example, if there are 3 records with the same value for a field.....say thfreee rows with name 'Gaurav'.
    I want to show 'Gaurav' only in the first row and the other two rows must be empty.
    Gaurav 1 2 3
    Gaurav 4 5 6
    Gaurav 7 8 9
    Should be seen as
    Gaurav 1 2 3
               4 5 6
               7 8 9
    Thanks and regards
    Gaurav raghav

    Here is the code.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = sy-repid
          i_structure_name       = 'ZCRM_ACTIVITY_REPORT'
        CHANGING
          ct_fieldcat            = gt_fieldcatalog[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc EQ 0.
          CLEAR gs_sort.
          gs_sort-fieldname = 'ORG'.
          gs_sort-tabname = 'GT_ITAB'.
          gs_sort-spos = '1'.
          gs_sort-up = 'X'.
          APPEND gs_sort TO gt_sort.
        CLEAR gs_sort.
        gs_sort-fieldname = 'EMPLOYEE'.
        gs_sort-tabname = 'GT_ITAB'.
        gs_sort-spos = '2'.
        gs_sort-up = 'X'.
        APPEND gs_sort TO gt_sort.
      ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
          EXPORTING
            is_layout                  = gt_layout
            it_fieldcat                = gt_fieldcatalog
            i_tabname                  = 'GT_ITAB'
            it_events                  = gt_events
            it_sort                    = gt_sort
            i_text                     = 'Report 1 '
          TABLES
            t_outtab                   = gt_itab
          EXCEPTIONS
            program_error              = 1
            maximum_of_appends_reached = 2
            OTHERS                     = 3.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.

  • How to handle Events in Blocked ALV report

    Hi All,
    I have a Blocked ALV report, I have a requirement where if I double click a row in blocked ALV report, it should branch off to MM01 transaction code and the material number and change number should get populated with the material number and change number  in my program.
    Is there any idea how to do this.
    Thanks,
    Vishal.

    hi anil,
    I have used user_command1 as the function module however the field details are not getting captured.
    How can we use set get parameters in this aspect.
    Please elaborate your answer.
    Thanks,
    Vishal.

  • How to calculate totals in Blocked ALV Report

    Hi All,
    Can any body tell how to calculate totals & sub totals in
    Blocked ALV Report[Blocked List].
    Thanks in advance
    Thanks & Regards,
    Rayeezuddin.

    read this it might help
    Sums                                                       
    15. No_sumchoice(1) TYPE c : This parameter allows the choice for summing up
    Only by fieldcatalog.
    Value set: SPACE, 'X'
    'X' = fields which are to be summed, passed by the calling program (FIELDCAT-DO_SUM = 'X'). The user should not be able to change this value interactively.
    16. No_totalline(1) TYPE c : Removes the option of having totals after sub-totals.
    Value set: SPACE, 'X'
    'X' = no total record is to be output. Subtotals can still be calculated and output. The fields in the subtotals are flagged DO_SUM = 'X' in the field list.
    17. No_subchoice(1) TYPE c : Does not allow the user to interactively change the field chosen for subtotals.
    Value set: SPACE, 'X'
    'X' = value whose change triggers subtotals, provided by the calling program. The user should not be able to change this value interactively.
    18. No_subtotals(1) TYPE c : No subtotals possible          
    Value set: SPACE, 'X'
    'X' = no subtotals.
    19. Numc_sum(1)  TYPE c : Totals only possible for NUMC-Fields.
    20. No_unit_splitting TYPE c: No separate total lines by inh.units   
    21.totals_before_items TYPE c: Display totals before the items   
    22. Totals_only(1) TYPE c :  Show only totals      
    Value set: SPACE, 'X'
    'X' = only total records are output.
    23. Totals_text(60) TYPE c : Text for 1st col. in totals   
    Value set: SPACE, string (max.60)
    ' ' = The first column in the total record contains an appropriate number of '*'s to indicate the total by default. If the first column is wide enough, the string 'Total' is output after the asterisks.
    'String’ = The string passed is output after the total indicated by '*', if the column is wide enough.
    24. Subtotals_text(60) TYPE c : Texts for subtotals
    Value set: SPACE, string (max.60)
    ' ' = In the first column of subtotal records, the subtotal is indicated by an appropriate number of '*' by default. If the first column is not a subtotal criterion, the string 'Total' is output after the asterisks, if the column is wide enough.
    'String’ = the string passed is output after the subtotal indicated by '*', if the column is wide enough and the first column is not a subtotal criterion. If it is a subtotal criterion, its value is repeated after the total, if the column is wide enough.
    ELSE TELL ME I WILL PASTE COMPLETE HELP
    regards

  • Report as SPAM App

    Hello, does anyone know if the report as spam application that can plug into lotus notes still exist? I am running notes 8.5, thanks.       

    My apologies I just saw it at the top of the page

  • ALV Block list report FILTERING

    Hello All,
    I am Working on ALV Block List Report. In that report i am having two Blocks.
    if i set a filter for one block it is filtering that block.
    My requirment is like this if iam setting a filter for one block, in the second block also have the same field, then filter should be setted to the second block aslo.
    Is this possible, Can any one Help me out form this issue.
    Thanks,
    Feroz.

    Hello All,
    I am Working on ALV Block List Report. In that report i am having two Blocks.
    if i set a filter for one block it is filtering that block.
    My requirment is like this if iam setting a filter for one block, in the second block also have the same field, then filter should be setted to the second block aslo.
    Is this possible, Can any one Help me out form this issue.
    Thanks,
    Feroz.

  • Clarification on Blocked Process Report behavior

    We have team members who are at odds over how this event is handled and it's coverage.
    After enabling this is sp_configure, and for the sake of argument keeping the threshold = 5 (default), and no other trace filters are applied - which of the following is true, false, or misunderstood:
    1. All-inclusive. The report will be generated for ANY transaction that is blocked for more than 5 seconds, meaning all transactions are contrasted against this threshold and no such transactions would be missed.
    2. "ad-hoc query-like" ; point-in-time only. The threshold is only contrasted against at a point-in-time only, in that at a set interval active transactions are reported against. This would mean blocked transactions that occur between this interval
    would not be reported against.
    Reading the MSDN/BOL articles, the language used is terse and somewhat left open to interpretation.
    The general discussion that started this is around whether or not running an external query (such as in SSMS) to report on blocking (which only reports on transactions at that point in time) is basically the same thing as running the blocked process report
    trace event, except in the trace event the "query" is run at "some interval" automatically.
    I am pretty sure I will win a beer if I am right on my answer to this - but I need expert arbitration. Please help me, I'm thirsty!
    Thanks very much for the assist!

    It's number 2: every 5 seconds the "LOCK MONITOR" checks for blocked processes and depending on the threshold will accumulate the sessions which are "still standing" after the threshold time, let's say 30 seconds.
    There is no Event involved until that point of the threshold being exceeded - that then is the event (which one can trace via SQL Trace or Extended Events), not before that.
    Andreas Wolter (Blog |
    Twitter)
    MCSM: Microsoft Certified Solutions Master Data Platform, MCM, MVP
    www.SarpedonQualityLab.com |
    www.SQL-Server-Master-Class.com

  • SQL 2008 Blocked process report question

    Can you somehow resolve blocked process report stmt to the actual sql text / plan cache?
    Example:
    <blocked-process-report>
    <blocked-process>
    <process id="process2713c9048" taskpriority="0" logused="0" waitresource="RID: 9:3:195169:57" waittime="29735" ownerId="1750917834" transactionname="SELECT" lasttranstarted="2014-01-10T13:47:06.493" XDES="0x259c278e0" lockMode="S" schedulerid="4" kpid="4148" status="suspended" spid="307" sbid="0" ecid="0" priority="0" trancount="0" lastbatchstarted="2014-01-10T13:47:06.493" lastbatchcompleted="2014-01-10T13:47:06.493" lastattention="2014-01-10T13:46:55.703" clientapp="Index" hostname="IMAGIOZFPWEB1" hostpid="12000" loginname="imagiouser" isolationlevel="read committed (2)" xactid="1750917834" currentdb="9" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
    <executionStack>
    <frame line="18" stmtstart="640" sqlhandle="0x03000900280270067c9946015aa200000100000000000000"/>
    </executionStack>
    <inputbuf>
    Proc [Database Id = 9 Object Id = 108003880] </inputbuf>
    </process>
    </blocked-process>
    <blocking-process>
    <process status="suspended" waittime="151008" spid="451" sbid="0" ecid="0" priority="0" trancount="1" lastbatchstarted="2014-01-10T13:45:05.217" lastbatchcompleted="2014-01-10T13:45:05.217" clientapp="Index" hostname="IMAGIOZFPWEB2" hostpid="4472" loginname="imagiouser" isolationlevel="read committed (2)" xactid="1750871840" currentdb="9" lockTimeout="4294967295" clientoption1="671088672" clientoption2="128056">
    <executionStack>
    <frame line="57" stmtstart="4426" stmtend="4586" sqlhandle="0x03000900f28e8b0183d457018a9d00000100000000000000"/>
    <frame line="32" stmtstart="1824" stmtend="2042" sqlhandle="0x030009001b21cf3f56fe3c01dca100000100000000000000"/>
    </executionStack>
    <inputbuf>
    Proc [Database Id = 9 Object Id = 1070539035] </inputbuf>
    </process>
    </blocking-process>
    </blocked-process-report>

    Here is an example to get you going:
    DECLARE @x xml = '
    <blocked-process-report>
     <blocked-process>
      <process id="process2713c9048" taskpriority="0" logused="0" waitresource="RID: 9:3:195169:57" waittime="29735" ownerId="1750917834" transactionname="SELECT" lasttranstarted="2014-01-10T13:47:06.493"
    XDES="0x259c278e0" lockMode="S" schedulerid="4" kpid="4148" status="suspended" spid="307" sbid="0" ecid="0" priority="0" trancount="0" lastbatchstarted="2014-01-10T13:47:06.493"
    lastbatchcompleted="2014-01-10T13:47:06.493" lastattention="2014-01-10T13:46:55.703" clientapp="Index" hostname="IMAGIOZFPWEB1" hostpid="12000" loginname="imagiouser" isolationlevel="read committed
    (2)" xactid="1750917834" currentdb="9" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
       <executionStack>
        <frame line="18" stmtstart="640" sqlhandle="0x03000900280270067c9946015aa200000100000000000000"/>
       </executionStack>
       <inputbuf>
    Proc [Database Id = 9 Object Id = 108003880]   </inputbuf>
      </process>
     </blocked-process>
     <blocking-process>
      <process status="suspended" waittime="151008" spid="451" sbid="0" ecid="0" priority="0" trancount="1" lastbatchstarted="2014-01-10T13:45:05.217" lastbatchcompleted="2014-01-10T13:45:05.217"
    clientapp="Index" hostname="IMAGIOZFPWEB2" hostpid="4472" loginname="imagiouser" isolationlevel="read committed (2)" xactid="1750871840" currentdb="9" lockTimeout="4294967295"
    clientoption1="671088672" clientoption2="128056">
       <executionStack>
        <frame line="57" stmtstart="4426" stmtend="4586" sqlhandle="0x03000900f28e8b0183d457018a9d00000100000000000000"/>
        <frame line="32" stmtstart="1824" stmtend="2042" sqlhandle="0x030009001b21cf3f56fe3c01dca100000100000000000000"/>
       </executionStack>
       <inputbuf>
    Proc [Database Id = 9 Object Id = 1070539035]   </inputbuf>
      </process>
     </blocking-process>
    </blocked-process-report>'
    ; WITH CTE AS (
      SELECT sqlhandle = convert(varbinary(64), T.c.value('@sqlhandle', 'varchar(128)'), 1),
             stmtstart = T.c.value('@stmtstart', 'int'),
             stmtend   = T.c.value('@stmtend', 'int')
      FROM   @x.nodes('/blocked-process-report/blocked-process/process/executionStack/frame') AS T(c)
    SELECT substring(est.text, CTE.stmtstart / 2,
                     CASE WHEN CTE.stmtend IS NOT NULL
                          THEN (CTE.stmtend - CTE.stmtstart) / 2
                          ELSE len(text)
                     END)
    FROM CTE
    CROSS APPLY sys.dm_exec_sql_text(CTE.sqlhandle) AS est
    That is, you need to use XQuery to extract the sqlhandle and the offsets and then pass the sqlhandle to sys.dm_exec_sql_text. The text is for the full batch, so you need to use substring to get the statement. stmtstart and stmtend are offsets in bytes and
    since the text is nvarchar, you need to divide by two. I did the above from memory and there by one-off errors with regards to the offsets.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • ALV horizantal blocks in report

    I have a requirement for display of the 3 different blocks in report HORIZANTALLY ( NOT VERTICAL).. is it possible for me to display data in 3 blocks by using ALV some way!??   
       Please give/ refer some code/programs

    hi,
    you can achieve it through blocked alv's.
    check below example.
    *& Report  ZSR_ALV_BLOCKED
    REPORT  ZSR_ALV_BLOCKED.
    TABLES: KNA1,LFA1.
    SELECT-OPTIONS : CUST FOR KNA1-KUNNR,
                     VENDOR FOR LFA1-LIFNR.
    DATA : BEGIN OF ITAB OCCURS 0,
           LIFNR LIKE LFA1-LIFNR,
           LAND1 LIKE LFA1-LAND1,
           NAME1 LIKE LFA1-NAME1,
           END OF ITAB.
    DATA : BEGIN OF JTAB OCCURS 0,
           KUNNR LIKE KNA1-KUNNR,
           LAND1 LIKE KNA1-LAND1,
           NAME1 LIKE KNA1-NAME1,
           END OF JTAB.
    TYPE-POOLS : SLIS.
    DATA : KNA1_B TYPE SLIS_T_FIELDCAT_ALV,
           LAYOUT TYPE SLIS_LAYOUT_ALV,
           EVENTS_B TYPE SLIS_T_EVENT.
    DATA : REPID LIKE SY-REPID.
    REPID = SY-REPID.
    SELECT KUNNR
           LAND1
           NAME1
           FROM KNA1
           INTO TABLE ITAB
           WHERE KUNNR IN CUST.
    SELECT LIFNR
           LAND1
           NAME1 FROM LFA1
           INTO
           TABLE JTAB
           WHERE LIFNR IN VENDOR.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        I_CALLBACK_PROGRAM             = REPID.
    PERFORM APPENDBLOCK TABLES ITAB USING 'ITAB'.
    PERFORM APPENDBLOCK TABLES JTAB USING 'JTAB'.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    FORM APPENDBLOCK TABLES JTAB USING ITAB.
    REFRESH KNA1_B.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = SY-REPID
      I_INTERNAL_TABNAME           = ITAB
      I_INCLNAME                   = REPID
      CHANGING
        CT_FIELDCAT                  = KNA1_B.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        = LAYOUT
        IT_FIELDCAT                      = KNA1_B
        I_TABNAME                        = ITAB
        IT_EVENTS                        = EVENTS_B
      TABLES
        T_OUTTAB                         = JTAB.
    ENDFORM.

  • Blocked ALV report

    Hi
    I have a requirement to create a invoice report, I am planning to go with ALV, but the challenge is when it is printed the information related to each invoice should be printed separately.
    How do i go about doing this..
    your help is appreciated, Is blocked ALV report a solution for this?
    Thankyou
    Krishna Kiran

    You should read each line of the ALV and send them to the printer....I do it one and worked fine -;)
    Greetings,
    Blag.

  • Block number in imessage by changing phone number?

    Obviously I cannot block someone through imessage.  I blocked them from calling or texting me through Verizon.  BUT, if I change my mobile number, will that work?  Currently, in my settings, the only way I can be reached through imessage is my phone number.  So if I change that, will it work?  I know my phone number is still associated with my Apple ID so I am a little confused.  Any help is greatly appreciated!

    Depends on whether you are using the same iCloud account on the device, or if you are syncing Contacts via iTunes, if you are syncing both devices to the same computer.
    When you block someone, no matter which application you "launch" the block from (Messages, Phone, FaceTime) you are blocking the Contact. So, any app that uses that contact will see it as a blocked contact and will block any incoming activity to that app from that contact.
    Here is a Support Article with more info:
    http://support.apple.com/en-us/HT201229
    Cheers,
    GB

  • Blocking People from iMessage active on all Devices?

    If I block someone via iMessage on my iPad, could they still text me on my iPhone connected to the same number/iCloud account?

    Yes, because iMessages are routed to the Apple ID being used for iMessage.  (FYI, the ID may or may not be the same as the ID you are using for iCloud.  iMessage doesn't use or require an iCloud account, just an Apple ID.)  If you're getting someone else's text messages, make sure you aren't both using the same ID for iMessage.  If you are, one of you should go to Settings>Messages>Send & Receive, tap the ID, sign out, then sign back in with a different ID.  Note: the ID you use for iMessage does not need to be the same as the ID you use for other services such as iCloud or the iTunes store.

  • HT5821 Does anyone find iMessage SPAM reporting extremely clumsy?

    Shouldn't there be a button to tap in the UI to do this all for me. It's a PITA what you need to go through to report it. I'm guessing maybe it's just a "first step", but it seems like something should be in the UI on all their devices to support doing all this stuff (since the UI will have all this info available....and more). It could even take care of carrier SPAM reporting as well.
    I'd also like to see an option to block messages from everyone except contacts. I don't get/want text messages from people I don't know.

    We are all just users like you and can't do anything about your requests for features. You can provide feedback to Apple at this link: http://www.apple.com/feedback

Maybe you are looking for

  • Purchased items not showing up in purchased playist

    iTunes recently crashed and I had to reupload by entire library, after this ordeal - none of my purchased material shows up in the purchased list. It's all in my library, but how do I get it to show up on the list?

  • Desktop display help needed

    my son was playing with the computer and accidentally did something to change the display of the desktop screen and now everything is re-sized.  The dock on the bottom of the screen and the bar on top no longer fit on the page together and all the ic

  • Problems with safari after installing Windows 8

    After installing Windows 8 , i can't access some websites in Safari For example i can't login on Binck bank or a webshop After fill the login details the program file runs , but the login screen remain and the login details diappaers and gone white.

  • Ive had this shuffle since October..why isnt it responding to my computer

    I got this ipod shuffle on october 4, 2005 (from wal-mart). I installed everything.. and it worked great... So why isnt it working now? Usually when you connect your shuffle to the computer, the little light comes on, and then iTunes automatically ap

  • Lost control over my leoServer

    Hi after password issues with my macbook i experienced the same problems with my MacMini OS X Server (Leopard, recently updated). I wondered if it is technicly possible that someone had hacked my system - or both of my systems? I am only using the se