Block chinese characters in mail

I am getting considerable amounts of spam written with Chinese characters. Is there a way to make a rule to send all to junk or spam folders?
Thanks.

I get a lot of spam in Russian Cyrillic. I have simply set some spam rules using a few common characters. If any email arrives in my inbox with those cyrillic characters present, they are immediately forwarded to my spam folder.
I don't know if Chinese is the same way. But look at a few of the emails, looking for common characters. Then create a filter rule that treats that email as spam.

Similar Messages

  • Problem with chinese characters while sending mail with .CSV attachment

    Hi,
    i am sendin .CSV file as an attachment with mail using "SO_DOCUMENT_SEND_API1" FM,
    whle opening the mail attachment the chinese characters are not displaying properly.
    currently i am using ECC 5.0
    can any body help in this regard.
    Thanks,
    Rahim

    Hi Kang Ring,
    please convert the content of the attachement into the binary format and then add it as a mail attachment.
    LOOP AT i_data ASSIGNING <wa_data>.
    if s_output is INITIAL.
    CONCATENATE <wa_data> cl_abap_char_utilities=>cr_lf into s_output.
    else.
    CONCATENATE s_output <wa_data> INTO s_output SEPARATED BY cl_abap_char_utilities=>cr_lf.
    endif.
    ENDLOOP.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    EXPORTING
    text = s_output
    IMPORTING
    buffer = x_output.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = x_output
    TABLES
    binary_tab = imail_att.
         OR
    please use ABAP-Object classes like CL_BCS , CL_document_BCS.....
    please findthe below sample code.
      cl_bcs_convert=>string_to_solix(
              EXPORTING
                iv_string   = s_output
                iv_codepage = '4103'          "suitable for MS Excel, leave empty
                iv_add_bom  = 'X'               "for other doc types
              IMPORTING
                et_solix  = s_output_binary  "(of type solix_tab)
                ev_size   = size ).
    attachment->add_attachment(                       "attachment of type ref to cl_document_bcs
              i_attachment_type    = 'xls'                     
              i_attachment_subject = l_subject    
              i_attachment_size    = size
              i_att_content_hex    = s_output_binary ).
    you need to write the code for adding the receipents, subject and adding this "attachment " as an attachment to the mail.
    Hope this will helps to you....,
    thanks,
    Rahim.

  • Command line e-mail with Chinese Characters

    We are writing a script that tells users that their password will expire
    in 2 weeks and how to change it in various places like network,
    GroupWise, PDA, conferencing system...
    Problem is that we have Many Chinese so we want the e-mail to be in both
    Chinese and English. We are using nail to format the e-mail but it is
    always coming through with boxes for the Chinese characters. Any idea
    one where the problem is occurring?
    Thanks,
    John

    John,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Chinese characters are displaying as squares in mail subject & content

    Hi when I am sending or receiving mail which is having Chinese characters in either mail subject or contents then some Chinese characters are appearing as squares.
    This issue is only coming on single system (Window XP, outlook 2007)

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • Block japanese and chinese characters in a string

    Hi,
       I need to check a string whether it contains only Alphabets, Numbers and special characters. Requirement is to block Japanese and chinese characters . If possible let the know the logic through which this can be achieved.
    Your assitance will be appreciated.
    Thks in advance

    Hi.
    If sy-langu NE 'JA' or sy-langu  NE 'ZH'.
    Write your logic here as per your requirement.
    Endif.
    Regards.
    Jay
    Edited by: Jay on Jan 6, 2009 5:47 AM

  • How can Mail of OS X Mountain Lion read Chinese Characters?

    Mail cannot read Chinese characters. Message looks like a series of "??????". However, Safari can read Chinese characters. What setting can make Mail read Chinese Characters?

    Pippi10 wrote:
    Mail cannot read Chinese characters. Message looks like a series of "??????".
    Normally that indicates an encoding glitch, where the email headers are not telling Mail the right encoding to use.  The first thing to try is Message > Text Encoding and see if UTF-8 or one of the various Chinese encodings give the right display.
    Also go to View > Message > Raw Source and tell us what you see in the headers that say "charset=  ".

  • Chinese characters merging in Mail PDF attachment

    Hi,  I am coverting the ouput of transaction S_ALR_87012976 for a change number into PDF and sending through mail. This is OK for all languages but for Chinese I can see the characters properly but lower row characters are merging with upper row characters. Means I can see the chinese caracters but the missing the format or very few times I am gettin # as chinese characters. I am doing the below things to do this job, suggest me if I am wrong any where.
    Creating the spool with the report output using SUBMIT program   
    SUBMIT rcc00130 WITH SELECTION-TABLE zscreen TO SAP-SPOOL
                            SPOOL PARAMETERS g_print_parameters
                            WITHOUT SPOOL DYNPRO
                            VIA JOB g_name NUMBER g_number
                            AND RETURN.
    I am converting the spool to PDF using FM 'CONVERT_ABAPSPOOLJOB_2_PDF' then for 255 character allignment I am using below FM
        CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
          EXPORTING
            line_width_src              = '134'
            line_width_dst              = '255'
          TABLES
            content_in                  = i_pdf[]
            content_out                 = it_mess_att[]
    Then using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' I am sending the mail.
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = s_doc_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          TABLES
            packing_list               = i_objpack
            contents_txt               = i_objtxt
            contents_bin               = it_mess_att
            receivers                  = i_reclist

    Hi Avinash,
    Thanks for the reply. In my system (ECC 6.0) I am not seeing the devicetype as you mentioned but I passed one of chinese device type ZHANWIN in print parameters of SUBMIT for creating spool but issue not resolved. Is there any other way??

  • Chinese characters in PDF download

    Hi all,
    I have a problem while downloading PO into PDF file for e-mail send with chinese characters. In print preview, i can able to view the chinese characters. While downloading, these characters are replaced by square boxes. I am using the standard function module OPEN_FORM with nacha = 5.
    Please share if you have any solutions. I already implemented the OSS Note '1002451' & 1095211, but still the same.
    Regards,
    Sumathi.

    Hi,
    I have also faced the same problem, I was creating the PDF from SF, at the time of preview and print itu2019s absolutely fine,
    But When I was converting to Chinese the characters gets changed to some boxes. Can anyone know the solution please suggest.
    Regards,
    KD

  • Chinese Characters in User Variables

    I'm using FrameMaker 7.2.
    On an XP machine localized for CH, I'm trying to convert
    and translate a manual into Simplified Chinese. I'm doing
    fine with entering or pasting characters directly into the
    document, but am having no success with variables.
    In the edit variable window I can get a character in and
    displaying correctly, but as soon as I space over to do the
    next character, the previous one changes to a question mark.
    I hope there is just a simple setting or step I'm missing.
    Any suggestions? Thanks!
    Nate Stelton

    Arnis,
    Thanks. I tried your suggestion, but could not get FM to see it as a 4-digit
    hex--it always broke it into separate bytes.
    In the meantime, I got a working answer from the Framers mailing list. Here
    is my followup, which includes the answer:
    Phil Heron said:
    > You don't specify which version of FrameMaker you're using,
    > but, at least for versions 7.2 and earlier, you need to set
    > the operating system's language for non-Unicode programs to
    > an appropriate value to successfully use Far Eastern
    > languages in dialog boxes.
    >
    > 1. In Windows Control Panel, open the "Regional and Language
    > Options" applet.
    > 2. In the "Regional and Language Options" dialog, display the
    > "Advanced" tab.
    > 3. Select the language you want to work with, for example
    > Chinese (PRC).
    > 4. Restart the computer.
    Woo hoo! This worked. I do use FM 7.2. This particular machine's
    Regional and Language Options did not have the third Advanced tab,
    so in the Regional Options tab, I just changed the first box to
    Chinese (PRC) and rebooted.
    I noticed that in my Variable edit space, the Chinese characters
    do not display properly, but in the document you need to ensure
    that the variable is in the correct font (in my case, SimSun),
    and it will then work.
    Many thanks, Phil!

  • Chinese characters in SquirrelMail

    I have a customer who has problems using Chinese characters mixed with western european languages on his mailserver.
    It can now show chinese characters correctly, but you can't write mixed. The received mail (even if I mail to my self), its just showed as 下整 etc
    Do I need any special settings in the server/browser/reading computer?

    Hm, I rewrite the codes I got with spaces in between so you can see what I ment;
    & # 1 9 9 7 9 ; & # 2 59 7 2 ;
    I don't know if this will help, but those are the ascii escape codes that could be used for html web pages that don't support any other encoding. I don't think you should ever see them in email.

  • Chinese characters in Lightroom book module

    I'm pasting translations of Chinese characters into text blocks in Lr 4.3 and I am getting a high percentage of them showing incorrectly as a square block with an "X" through it. They paste just fine into Notepad. Any thoughts? Also, is the upload to Blurb of Chinese characters fixed in Lr 4.3?

    The \ key will hide and show the header bar in the book module and the Create Saved Book button is at the right of that header bar.
    The outlined area is what shows and hides when the \ key is pressed.  Maybe you have a keyboard that has a different key for \?  On my keyboard the \ key is just above the Enter key.
    You can also use the View / Show Header Bar in the LR menus across the top:
    If this doesn't work, then can you provide a screenshot of your LR book module?

  • Chinese characters in GroupWise message on smart phone

    GroupWise 2014. GMS Version: 2.0.1 Build: 53
    Just ran into an odd one. User received an email from outside our
    company. It shows up fine in his GroupWise client, but when he views
    it on his smart phone (synced via GMS) the message body is all Chinese
    characters. He forwarded the email to me from his GW client and from
    his phone. The one from his client looks fine, but the one from his
    smart phone has the Chinese characters in the email. This isn't
    happening with all his email. He thinks it has only happened twice
    and from the same sender. But he has received many emails from that
    same sender without any problems. Any thoughts?
    Ken

    On Mon, 26 Jan 2015 19:10:38 GMT, Anders Gustafsson
    <[email protected]> wrote:
    >KeN Etter,
    >> Thanks...so I did a little reading... Am I correct that US-ASCII is a
    >> 7-bit character set? The email came from a company that we frequently
    >> work for. If they have mis-configured their email server, I need to
    >> handle it properly. Is there a preferred character set they should be
    >> using? It looks like GroupWise 2014 (at least at my company) is
    >> defaulting to UTF-8.
    >
    >I keep forgetting... You US people There are about three languages
    >that can be expressed with the 7-bit characters set: English, Swahili
    >and one that is spoken by about 100 people on an island in the south
    >pacific...
    :-) Hey, my GroupWise is set to UTF-8. It is this other company we
    work for that has theirs set to US-ASCII.
    >All other languages use accented characters. To overcome this people
    >(IBM) got creative and used the rest of the 128 positions, but there was
    >a need for more than 128 so various encodings were created, one
    >extremely popular was ISO-8859-xx where xx were varieties for various
    >regions.
    >
    >So, use UTF-8 and be happy Most mailservers should handle that just
    >fine, although some users of Eudora 3.0 might complain
    I will let them know that they need to change their mail server to
    UTF-8.
    Thanks!
    Ken

  • Chinese Characters in Body of the Email when sending attachments.

    I have google and exchange accounts connected to mac mail. Whenever I send an attachments through the exchange account via mac mail, the recipient receives the attachment however is filled with Chinese characters in the body of the email that look like this (⁥敧敮慲整⁤祢䔠捸慬浩牥吠浥汰瑡⁥摅瑩牯漠㘰ㄺ㨶㈳䘠楲慤ⱹ㤠䨠湡慵祲㈠㄰‵ⴭാ㰊呓䱙⁅祴数琽硥⽴獣㹳⹐慥捥㌱㙥〭㉢ⵤ㐴㜳㠭㐸ⴴ散㜸挴㌳㌳㑢笠਍䴉剁䥇㩎〠浣〠浣 〠瑰਍ൽ䰊⹉慥捥㌱㙥〭㉢ⵤ㐴㜳㠭㐸ⴴ散㜸) and goes on for 10-15 lines even when there is no content in the email.
    The OSX that I am running is Yosemite Version 10.10. Does anyone have a resolution to this problem? Thanks

    It looks like bogus chinese created when a message encoded as utf-8 is read as if it were encoded as utf-16.
    See if the people who run the exchange server can help, if that is the only account where this happens.  Such systems often botch encodings.  I don't know of anything you could do at your end beyond playing with the Windows Friendly attachment setting in Mail.

  • Chinese Characters in PDF

    Hi all,
    I am sending some data by creating spool and then mailing it as a PDF attachment. However, when i get the PDF file through mail, I cannot see the Chinese characters. The document contains the information in English as well as Chinese. However only Chinese is not visible.  The Font Familty CNSONG is present in SAP system. Let me know if any one has idea about this.
    Thanks.
    Warm regards,
    Harshad. M

    Hi,
    Please check these links
    Chinese characters dont show up on the PDF file
    PDF can not display Chinese
    Pdf conversion--unknown characters
    There are many more conversations on SDN on the same. Please go through them too, if the above doesn't resolve.
    Thanks,
    Kiran

  • Export to flat file with unicode (chinese) characters??

    I have an SSIS (2013) package that needs to send an email notification with query results (via attachment). I have a data flow task with a source sql query that gathers 2 columns - ID and NAME. ID is varchar, NAME is nvarchar (some records have Chinese symbols).
    The destination is a .txt file. When I copy/paste a field w/ Chinese symbols to a .txt file, it shows up fine, so i know Notepad can handle the characters. I also have the .txt file set to Unicode encoding (I also tried ANSI originally). When I run the package,
    it says that it successfully moves 50 fields to the flat file. However, when I open the flat file, I see that it shows 10 records. It stops when it gets to the record with a Chinese symbol in it...but doesn't produce an error. My plan was to then take the
    attachment and use it in a Send Mail task. (i have the smtp/mail notification working fine...just need to figure out how to get the data to all export to the flat file correctly)
    Does anyone know how I can get the ID and NAME fields from a query into an email notification (either as an attachment, or even formatted nicely (with tabs) in an email would work).

    Hi,
    Based on my test, I can reproduce the similar issue in my environment. When we create the Flat File Connection Manager with the default settings, the data in flat file stops when goes to the Chinese characters.
    To fix the issue that makes the Chinese characters to actually get written into the flat file, we should check the Unicode checkbox on the right hand side of Locale property in Flat File Connection Manager. In this way, the flat file can display Chinese
    characters.
    The following screenshot is for your reference:
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • How to make use of gui components in eclipse 3.2

    i mean, when u r writing some application, we can do it by graphical representationi.e Design view, the tool/editor will generate code for the the application what we have done in design view. how can i make use of that design view in eclipse 3.2/ecl

  • Posting FI Document via bapi_acc_dosument_post but it does not clears the open items.

    Hi, I am trying to post the FI document using bapi_acc_document_post.Posting is happening successfully but clearing is not happening. I do not want to try bdc processing. Please suggest any alternate for this. Thanks, Aashi.

  • Errors when running the test_fwktutorial.jsp

    I am trying to run the test_fwktutorial.jsp according to the instructions in the OA Documentation. I am getting the following message. I tried all the things given in this forum but its still giving the same problem. Please help oracle.apps.fnd.frame

  • Sync Mana

    I have just upgarded to version 5 of Mediasource. Unfortunately the sync manager appears to crash with a message from microsoft that the program has called a problem and please report to microsoft. I am running windows xp2 and have a zen touch player

  • Bdc on vk11 using control break events

    hi have any one done bdc for vk11 using control break events.my flat file is ZTAX     X     IN     1000     1200     2000     A0 ZTAX     X     IN     1000     1210     3000     A1 ZTAX     X     US     7676     01     4000     L3 ZTAX     X     US