Junk Mail with text as images

I'm having a few problems with the Junk Mail Filter that I have set up in Mail. The Junk Mail that always seems to get through is that that contains images. Obviously the scumbags that send these emails probably know this is a floor in Junk Mail filters which is why they send the text as an image rather than plain text or even an html email.
I always click "Junk" whenever I receive these but the Apple filter just never seems to remember this and so I always get bombarded by the same kind of email but from different email addresses.
Does anybody have any ideas as to what I can do. Thanks in advance for any help on this very frustrating matter.

You're welcome.
In my case, it takes a few days for each variation of the junk messages. It may miss some junk from time to time, but it becomes apparent immediately that the filter is learning.
There are two things you may try. One is cleaning up your Window > Previous Recipients list. The other is resetting the junk filter (Preferences > Junk Mail > Reset). Although this may initially increase the number of junk messages that Mail fails to identify as such (false negatives), and may also slightly increase the number of legit messages that are incorrectly treated as junk (false positives), it will probably also improve the learning process of the filter.
Note that every time you mistakenly mark as not junk a message that Mail had previously marked as junk (because you click the wrong button when you wanted to do something else, for example), you're storing wrong information in the data files used by the junk filter.

Similar Messages

  • When I send an e-mail with text it comes out gobble de gook the other end

    when I send an e-mail with text it comes out the other end gobble de gook and the recipient cannot under stand what I am saying it does not happen with anyone else only Mozilla Firefox
    == This happened ==
    Every time Firefox opened
    == past two years since I got vista

    Hi aandjmibert; 
    Hope you are doing well and sorry to hear that you are having this issue.
    Let’s make sure that we collect the most possible information may be relevant to your issue. Please bear in mind the more information that you provide to us the better picture we will have about the factor or factor that are contributing to your situation.
    Please provide to us as most of the following information as possible to you.
    ~ OS Operating system i.e. Apple, Win, Linux. Let’s us know if the operating system is updating automatically or not. If you are able please let us know the build.
    ~ Complete printer model i.e HP Photostat c310a.
    ~ Please include any other information that you feel may be relevant.
    I reintegrate the fact that the more information you include, the better the chances of all members of the community to gather a complete picture of your situation and this will increase the probabilities being able to help you in a promptly and more effective matter.
    Thanks
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • How can i copy line with text and image to ms word

    When I insert an image in textflow using InlineGraphicElement it works, but when I copy the line with the image to MS Word it copies only the text (not the image).
    How can i copy the image to MS Word?

    If you want copy formatted text and image to MS Word, you need to give MS Word rtf markup, because Word can recognize rtf markup but not TLF markup.
    So you need to create a custom clipboard to paste a rtf markup. It's a large feature for you, because you need a tlf-rtf converter in your custom clipboard.
    TLF Custom Clipboard Example:
    package
        import flash.display.Sprite;
        import flash.desktop.ClipboardFormats;
        import flashx.textLayout.container.ContainerController;
        import flashx.textLayout.conversion.ITextImporter;
        import flashx.textLayout.conversion.TextConverter;
        import flashx.textLayout.edit.EditManager;
        import flashx.textLayout.elements.*;
        import flashx.undo.UndoManager;
        // Example code to install a custom clipboard format. This one installs at the front of the list (overriding all later formats)
        // and adds a handler for plain text that strips out all consonants (everything except aeiou).
        public class CustomClipboardFormat extends Sprite
            public function CustomClipboardFormat()
                var textFlow:TextFlow = setup();
                TextConverter.addFormatAt(0, "vowelsOnly_extraList", VowelsOnlyImporter, AdditionalListExporter, "air:text" /* it's a converter for cliboard */);
            private const markup:String = '<TextFlow whiteSpaceCollapse="preserve" version="2.0.0" xmlns="http://ns.adobe.com/textLayout/2008"><p><span color=\"0x00ff00\">Anything you paste will have all consonants removed.</span></p></TextFlow>';
            private function setup():TextFlow
                var importer:ITextImporter = TextConverter.getImporter(TextConverter.TEXT_LAYOUT_FORMAT);
                var textFlow:TextFlow = importer.importToFlow(markup);
                textFlow.flowComposer.addController(new ContainerController(this,500,200));
                textFlow.interactionManager = new EditManager(new UndoManager());
                textFlow.flowComposer.updateAllControllers();
                return textFlow;
    import flashx.textLayout.conversion.ITextExporter;
    import flashx.textLayout.conversion.ConverterBase;
    import flashx.textLayout.conversion.ITextImporter;
    import flashx.textLayout.conversion.TextConverter;
    import flashx.textLayout.elements.IConfiguration;
    import flashx.textLayout.elements.TextFlow;
    class VowelsOnlyImporter extends ConverterBase implements ITextImporter
        protected var _config:IConfiguration = null;
        /** Constructor */
        public function VowelsOnlyImporter()
            super();
        public function importToFlow(source:Object):TextFlow
            if (source is String)
                var firstChar:String = (source as String).charAt(0);
                firstChar = firstChar.toLowerCase();
                // This filter only applies if the first character is a vowel
                if (firstChar == 'a' || firstChar == 'i' || firstChar == 'e' || firstChar == 'o' || firstChar == 'u')
                    var pattern:RegExp = /([b-df-hj-np-tv-z])*/g;
                    source = source.replace(pattern, "");
                    var importer:ITextImporter = TextConverter.getImporter(TextConverter.PLAIN_TEXT_FORMAT);
                    importer.useClipboardAnnotations = this.useClipboardAnnotations;
                    importer.configuration = _config;
                    return importer.importToFlow(source);
            return null;
        public function get configuration():IConfiguration
            return _config;
        public function set configuration(value:IConfiguration):void
            _config = value;
    import flashx.textLayout.elements.ParagraphElement;
    import flashx.textLayout.elements.SpanElement;
    import flashx.textLayout.elements.ListElement;
    import flashx.textLayout.elements.ListItemElement;
    class AdditionalListExporter extends ConverterBase implements ITextExporter
        /** Constructor */
        public function AdditionalListExporter()   
            super();
        public function export(source:TextFlow, conversionType:String):Object
            if (source is TextFlow)
                source.getChildAt(source.numChildren - 1).setStyle(MERGE_TO_NEXT_ON_PASTE, false);
                var list:ListElement = new ListElement();
                var item1:ListItemElement = new ListItemElement();
                var item2:ListItemElement = new ListItemElement();
                var para1:ParagraphElement = new ParagraphElement();
                var para2:ParagraphElement = new ParagraphElement();
                var span1:SpanElement = new SpanElement();
                span1.text = "ab";
                var span2:SpanElement = new SpanElement();
                span2.text = "cd";
                list.addChild(item1);
                list.addChild(item2);
                item1.addChild(para1);
                para1.addChild(span1);
                item2.addChild(para2);
                para2.addChild(span2);
                source.addChild(list);
                var exporter:ITextExporter = TextConverter.getExporter(TextConverter.TEXT_LAYOUT_FORMAT);
                exporter.useClipboardAnnotations = this.useClipboardAnnotations;
                return exporter.export(source, conversionType);   
            return null;

  • Possible to scan a document into Acrobat XPro,then replace part of that PDF with text or image file?

    Hi everyone,
    Is it possible first to  scan a paper document into Acrobat X Pro, and then to replace a "pane" or box within that PDF with a text or image file?
    Would it require  SDK and Javascript?
    Thanks,
    Rick Weinhaus

    CtDave and others:
    Here's the problem in more detail.
    I am a physician and I already have the ability to incorporate paper-based
    documents into an electronic health record (EHR) by scanning them and
    saving them as PDFs.  The documents are paper patient encounter forms with
    a different box or 'pane' for each category of data.   Each box has a fixed
    location on the paper form.
    There are three situations, however, where I want to have the option to
    overwrite certain boxes of the PDF with data generated by methods other
    than scanning.
    1) Insert text macros with variable fields using the electronic health
    record's software.
    2) Insert a drawing available as a pre-existing JPG or generated by using a
    tablet.
    3) Insert text generated using Dragon Naturally Speaking.
    For efficient office workflow, in all three cases the text or image to be
    inserted into the box or 'pane' in the PDF needs to be generated while I am
    still seeing the patient -- that is -- before the paper form has been
    scanned and converted to a PDF.
    The sticky note tool is one option, but I would want to be able to modify
    the default size of the sticky note so that it corresponded exactly to the
    size of the box it was 'overwriting.'  I can't figure out how to do this?
    Could it be done using scripting?
    Furthermore, I would want the sticky notes to automatically display when
    the PDF was opened, so that a hover would close rather than open them.  This
    sticky note method would have the advantage of allowing the user to toggle
    back and forth between inserted data and any original handwritten text.
    Any thoughts?
    Rick

  • Will Adobe ExportPDF convert a pdf with text and images to docx ?

    I have tried to convert an adobe pdf, which includes text and images, to a docx file.  The Adobe ExportPDF has not been able to do it - comes back with many errors.

    Mostly it can do it, though you can't expect a precise match on the layout. What errors do you get?

  • Sending an e-mail with text

    Hi.
    Can you tell me if it's possible having two types of sending messages from SD orders, by e-mail: sending a PDF sometimes and other times sending an e-mail just with texts (no attaches)?

    Hi,
          It depends on how you configure your output confirmations. LIke email output for document confirmation would go automatically but if you also want PDF need to make use of medium " special function   8  ". 
    Hope it clears.
    Thanks & Regards
    Sadhu Kishore

  • Anyway to create an iPhoto book with text & no image on cover?

    Would like to create a book with text only on the cover and no image. The only options with text require an image as well and as a result the pdf preview shows the square designated for an image (when no image provided). Any help/suggestions appreciated.

    Hi Richard,
    In this community, "It cannot be done" means "It cannot be done with Pages '09."
    The document in question was, obviously, produced using an application oter than Pages.
    Regards,
    Barry

  • PDF created with text as image instead of text

    Acro Pro 9.3.2 on Win 7 Pro 64-bit using OpenOffice.org 3.2.0, Impress.
    When I create a PDF from a presentation document using the referenced, the text is rendered as an image (which I don't want). I've gone through the settings several times and can't find something which is probably painfully obvious. Oddly enough, if I use OpenOffice.org's Export as PDF feature, the PDF comes through exactly as I'd expect it to, with the text generated as text.
    Would anyone know what setting(s) I've overlooked so I can change the behavior in Acro Pro? Thanks.

    Bill, thank you for putting so much time into this. As you can see from my other responses, the problem may well be limited just to the one doc in question so it's not worth any more of anyone's time. If nothing else, I feel less embarrassed knowing I (apparently) didn't overlook something obvious. I probably shouldn't write that, should I?
    In case it's of interest, I tried unchecking the "rely on sys fonts only" option and that didn't change anything.
    OO 3.2 is a significantly better product than 2.4 btw. I realize you didn't say anything negative about it. I just wanted to drop that in.
    Again, thank you for working on this.

  • I ... Acrobat.... (sometimes, when I need to print PDF with text and image)

    First of all, I want to let Adobe know that you are a immens castle that is almost impossible to communicate with!
    I just want a simple question to be answered: I want to print a document which beholds text AND an image.
    If I print it, the image is NOT on the print (MacBook and iMac Yosemite)
    If I print it form my iPhone (6), the image is on the print.
    How can I fix it?

    You report your problem as using Acrobat on a Mac. You've posted in the Reader forum for iOS.
    I've moved your question to the Creating, Editing and Exporting PDF forum which seems more appropriate.
    You'll need to provide more information for us to be able to help you.

  • MLGR - external Mail with text in the body

    Hi,
    I have a little problem. I setup the MLGR-Message as defined in the wiki.
    It works fine with SBWP. There is the message text in the body. When I send it
    to an external email-address, then the text is a pdf in the attachment. I'd like to have the text
    also in the body of the external mail, so that the user don't have to open the attachment.
    What do I have do?
    Regards Ralf

    Hi Ralf,
    the easiest solution will be to switch to Medium 5.
    Transmission Medium 5: Communication Strategy - Message Control (CA-GTF-BS) - SAP Library
    and if necessary develop some lines of coding to find the correct mail-addresses and the content-stuff.
    Class CL_BCS is very good documented and is really easy to use.
    or another solution I found in my documents:
    Transaction SO16 --> Send Mail to homeaddress. But that implements that you just send mails to internal users.
    (And I'm not sure, if you just done exact that to get it to external users)
    The SCN-Search brought me this one, but that is what you already got I think:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0e19d4c-b72d-2d10-72ad-a38a70c2a53f?quicklink=index&…
    ~Florian

  • Div tag with text and image verticaly centered

    I am having a problem with vertically aligning an image with
    a text line in a div tag using an external CSS file.
    Any help would be appreciated

    quote:
    Originally posted by:
    Night_Ripper
    You can simply do this:
    ProdDimensions img {vertical-align:middle;}
    Or you can use an un-ordered list that has your arrow
    embedded as a background image, something like this:
    .ProductList ul {list-style-image:
    url(Arrow.gif);list-style-position:outside;list-style-type:none;text-align:left;}
    .ProductList li {margin:0;}
    wrap your unordered list around a div with the class
    ProductList (or whatever you want to call it) and it will display
    with the arrows in the middle of the text.
    Another way to do it would be to set a background image on
    ProdDimensions class like this:
    background: url(Arrow.gif) left center
    no-repeat;padding-left:21px;
    That will simply put a background image to the left middle of
    your div, the padding will ensure the text is not on top of the
    arrow.
    I used your idea of using the arrow as the div bg and it
    worked like a charm.
    Thank you very much for your help!

  • How to send an SMS with text and image

    I'm trying to add a photo and text to an SMS but can't add anything in the body of the SMS. What do I need to do?

    Hi Joe,
    Yeah, that's been the method I've been testing with. Is there a way for AIR to access the Intent API?
    Android code:
    final Intent i = new Intent(Intent.ACTION_SEND);
    i.putExtra("sms_body", msgText);
    i.putExtra(Intent.EXTRA_STREAM, imageUri);
    i.setType("*/*");
    startActivity(i);
    Thanks

  • Can't read body of e-mail and can't send e-mails with text in body.

    The mail on my IPOD touch suddenly doesn't show up in the body of the text. Only can read "From, To and Subject". I also am unable to send e-mails as I can't get into text body. I have twice deleted the account and installed again but problem still occurs.
    Can somebody please help or direct me to where I can find help.

    Software was just updated and works fine.

  • Creating ScrollView with Text and Image

    What is the best way to create a scrollview that should contain Image and Text?
    The text and the image date are set dynamically.
    Image and Text should be scrollable as one entity (NOT scrollable separately).
    I don't really know how to determine the sizes of each elements ...
    For example I can't make :
    UITextView *tmpTxt = [[UITextView alloc] initWithFrame: CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)];
    ... because I have no height value determined yet as I don't know how long will be the text.
    Could you please help me to move forward ??
    Message was edited by: fatter

    To calculate text size of for example in 15 points, you could use the following type of function.
    - (CGSize)calculateSizeOfString:(NSString *)text {
    CGSize textSize = [text sizeWithFont:[UIFont systemFontOfSize:15.0] constrainedToSize:CGSizeMake(320, 9999) lineBreakMode:UILineBreakModeWordWrap];
    return textSize;
    Then, you can access the width & height, by querying the value of textSize.width and textSize.height.

  • Having problems with text, some images are not displaying properly

    when opening an image( as screenshot) in firefox support forum, the close button is not showing instead a number code is shown in a box

    That is a font problem.<br />
    It looks that the font that is used doesn't have a glyph for this character: &amp;#x2716; - &#x2716;
    *http://www.alanwood.net/unicode/dingbats.html
    You can consider to install the DejaVu font.
    *http://www.alanwood.net/unicode/fonts.html
    *http://dejavu.sourceforge.net/wiki/index.php/Main_Page
    I see more little boxes with a hex code that indicate that the used font is missing those glyphs and Firefox doesn't seem to be looking for them in another font as would normally happen.

Maybe you are looking for

  • Header for all pages

    I am new to CSS, how do I use the same header and navigation bar menu for all my web pages. Here is the CSS code: /* global */ html{height: 100%;} body { font-family: arial, sans-serif; padding: 0px; margin: 0px; font-size: .78em; p { margin: 0px; pa

  • New to MacBooks - which spec do I need?

    Hi all Many thanks in advance for any help. My current Asus laptop has died on me after 2 years (typically all my laptops last me 2 years). I have always had Windows laptops in the past. I have an iphone and an ipad which is why I'm now looking to Ap

  • Movies not available on Irish iTunes Store

    I was going to upgrade my iPod to a video iPod but it's not possible to download movies from Irish iTunes Store and US is blocked. Just checking if it's worth my while upgrading Thanks John

  • Flash Player on Windows Phone 8?

    I guess the question is; when its going to be available?

  • License nbr error message after macos crash and migration to Yosemite (in spanish)

    Buenos días, es un problema relacionado con photoshop CS 5 en macos X Yosemite. he comprado de segunda mano un MacBook Pro, con su photoshop cs5 y su nº de licencia activada. Iba instado sobre maverick, hice una migración de mi antiguo mac en cual te