Block or Bounce Email? Help please

Hello
I wondered if someone could help me as this is pretty serious for me as I need to a certain email address from even getting to my inbox as I am being pestered by a individual and need it to stop asap. There used to be a bounce feature in 10.7 I am sure but is there any way of blocking, bouncing etc so this mail does not even get as far as my inbox?
I cannot go into details of the email or sender but this needs to stop.
Help would be much appreciated from a pro user,
MBa

Hello Barry
I have activated the junk mail feature within mail for this sender/address so I suppose thats all I can do but thanks for responding and helping out. shame about the bounce feature not available anymore.
all the best
mba

Similar Messages

  • Elements 10 did not install properly but blocked my computer - need help, please!

    I've purchased an Elements 10 software, the requirements are met with my computer (My computer has 4G RAM), yet, after I had installed it and clicked on the icon for the first time, it blocked my computer (it became VERY slow for everything, like half an hour to turn it off...), and the program did not work at all, just the initial page loaded. I uninstalled it now, and my computer works OK again. What do you think I could do to resolve the issue? Is the serial number registration still valid now? I would really appreciate if someone could help.

    Hi,
    The serial number should work for installation.
    Please create a new user account with administrative privileges and reinstall the application into that account. We will then be able to know if there is anything on your system that could be causing a conflict.
    Request you to also provide the following information:
    1. Processor Type
    2. Free Hard Disk space.
    3. Video card make and model. (if you have one installed).
    This document has information on optimizing performance for your elements product : Optimize Performance. I suggest you review the same.

  • HT1443 Email help please???

    I can get on the internet but cannot send or receive emails, please help?

    Maybe some help here, do some readiing, sometimes it may help to contact your provider.
    http://support.apple.com/kb/index?page=search&src=support_site.home.search&local e=en_US&q=troubleshoting%20email

  • BadPaddingException: Given final block not propertly padded -- Help Please

    I keep getting --Exception in thread "main" javax.crypto.BadPaddingException: Given final block not properly padded.       
    I know the problem lies with me writing to the encrypted text file or at some point when I'm actually reading it. Here's the code of these points......
    ciph.init(Cipher.ENCRYPT_MODE, skeySpec);
    /* The encryption begins */
    byte[] textBytesEncrypted = ciph.doFinal(textBytes);
    String bText = Base64.encodeBytes(textBytesEncrypted);
    // pw is a PrintWriter, I've also tried to use a FileOutputStream object
    // and write the entire byte array to a data file (without converting to
    // a String -- but that also resulted with the same exception being
    // thrown
    pw.write(bText);
    pw.close();
    public void decryptFile()
    throws IOException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException,
    IllegalBlockSizeException, BadPaddingException
    /* These lines will be writing and reading to the files */
    FileInputStream in = new FileInputStream(new File("C://outfile.txt"));
    PrintWriter pw = new PrintWriter(new File("C://outfile3.txt"));
    boolean done = false;
    int i = 0;
    ArrayList<Byte> bytearr = new ArrayList<Byte>();
    /* This loop places each of the bytes into an Array List, I'm using this because of the
    automatic resizing */
    while(!done)
    int next = in.read();
    if(next == -1) done = true;
    else{
    bytearr.add(i, (byte)next);
    i++;
    /* This variable retrieves the size of the array list in which the array will be set to */
    int length = bytearr.size();
    byte[] textBytes = new byte[length];
    /* This loop will move the Array List of bytes into the above array of bytes for future use */
    for(int j=0; j<length; j++)
    textBytes[j] = bytearr.get(j);
    ciph.init(Cipher.DECRYPT_MODE, skeySpec);
    /* The encryption begins */
    byte[] textBytesEncrypted = ciph.doFinal(textBytes);
    String text= new String(textBytesEncrypted);
    pw.write(text);
    in.close();
    pw.close();
    Any help would be greatly appreciated.

    You have not really supplied enough code to say exactly what is wrong BUT I would bet it is because you are treating files as containing chars and lines instead of just bytes.
    My suggestion - read the input files as bytes and encrypt/decrypt using CipherInputStream.

  • E90 - outlook email: HELP please

    Hello everyone,
    I am seriously considering buying the E90. It seems a good option as I need excel, powerpoint, good browser and email.
    I am not very techy, so my question may sound simple/stupid, but if anyone can help me with it I'd really appreciate it, as it is absolutely key to my decision:
    - I have a windows XP laptop, and my professional emails are on outlook. Will I be able to download my outlook inbox (emails) onto the E90? My purpose is to answer emails from the E90, while travelling, eg on the phone.
    Thanks for the help!

    I bought E90 without checking this, expecting it would be syncing emails since it is the new version of communicator. Was living fine with old 9500 , but small and GPS powered E90 was attractive.Although it is a small disappoinment , have a "better than nothing" solution.
    Add a small piece of code to your outlook in order to create a task for each arriving mail , including subject and body, and if you wish to "sync" sent mails do it for the sent mails as well.
    Then you have to just sync your tasks , and you will have all your mails there.
    You dont want to mess with your real tasks , create a new folder in outlook and do the same for this new folder, but you have to manually change folder info in PcSuite and sync twice.
    Since I am not using tasks, it  is working fine for me.
    As I said , it is better than nothing.
    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    Dim myitem As Outlook.TaskItem
    Set myitem = Outlook.CreateItem(olTaskItem)
    myitem.Subject = "[Sent]" & Item.Subject
    myitem.StartDate = Now
    myitem.DueDate = DateAdd("d", 2, Now)
    myitem.Body = "You have sent this mail on : " + Str(Now) + vbCrLf
    myitem.Body = myitem.Body + "You have sent this mail to : " + Item.To + vbCrLf
    myitem.Body = myitem.Body + String(50, "-") + vbCrLf
    myitem.Body = myitem.Body + Item.Body
    myitem.ReminderTime = Format(DateAdd("d", 2, Now), "DD/MM/YYYY 14:00:00")
    myitem.Importance = Item.Importance
    myitem.Save
    myitem.Close (olSave)
    Set myitem = Nothing
    End Sub
    Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
    Dim Item As Outlook.MailItem
    Set Item = Application.Session.GetItemFromID(EntryIDCollection)
    Dim myitem As Outlook.TaskItem
    Set myitem = Outlook.CreateItem(olTaskItem)
    myitem.Subject = Item.SenderEmailAddress & "," & Item.Subject
    myitem.StartDate = Now
    myitem.DueDate = DateAdd("d", 2, Now)
    myitem.Body = Item.Body
    myitem.ReminderTime = Format(DateAdd("d", 2, Now), "DD/MM/YYYY 14:00:00")
    myitem.Importance = Item.Importance
    myitem.Save
    myitem.Close (olSave)
    Set myitem = Nothing
    End Sub

  • HT3228 Email help please

    I have set my Outlook 2007 email program to only remove emails from server when deleted from "deleted items" on all my devices.....yet this box seems to uncheck itself on a daily basis.  Any advice?
    In addition.....
    What is the best method to "sync" all my email activity for one particular email address?  For example, if I delete an email on one device it would be nice if it was automatically deleted from the other devices too.
    TIA for any help you can give.  It's pretty obvious that I'm no IT whiz.

    What you are asking for is not possible with a POP3 account. This is a very old protocol designed when no one could envision ever having more than one email client on an email account. I'm not an expert on Outlook, but its likely that Outlook "knows" this limitation of the POP3 protocol and unchecks the box because there is no way to implement it.
    You need to change the account type to IMAP if your ISP supports it, or use some workaround using iCloud or gmail (both of which support what you want to do).

  • Email Help Please: Enable Send Only?

    Is there a way on iOS5 to enable an email account but NOT have it download messages? I want to be able to send messages from a phone, but NOT have it retrieve them from the server. It's much easier to sort, delete and manage email on a computer's email system than it is on a small screen.

    Yes of course I've contacted the Premium Mail help number. I've called them many, many times without any success at all and since I've been calling from abroad it's cost me a fortune to get nowhere.
    These forums are for the BT Community. I'm part of the community since I still have BT services. This isn't a Broadband forum. As I've indicated though, I've been with BT for over 35 years so I think that entitles me to some sort of service - even from here if possible.
    There is no issue with my account according to the BT staff. This has been checked and all is fine. The issue is that they are refusing to acknowledge that there is a problem although there clearly is one.
    However.... your statement: 
    It also possible that you are being stopped from using BTs SMTP server, because you are not actually connected to  BT Broadband. You would therfore be restriced to using webmail only.
    ... is new to me. No-one has told me that.
    One has to then beg the question: "If you can only use so-called Premium Mail via the web then why are BT not telling people that?"  No-one seems to know - even you Keith, say that "it is also possible...."
    If this actually IS the reason then I could have been told that from the beginning.
    Unfortunately, error 421 is one of the more "unspecific" codes generated by mail servers. This error can mean many things. It can show misconfiguration but it doesn't show up as a security lockdown - even though it could be. What I can't understand is why no-one actually knows. No-one can explain absolutely and that's what is really annoying here.
    No-one will take responsibility and no-one is willing to even try to help me out here - that's what is really bad.
    Keith, you've come up with something which makes sense that may well explain the issue - but the question is really: "What can I do about it?". 
    Nothing?  I just have to put up with it?  Great customer care....

  • Can't send emails help please!

    I have an IMac G5 running 10.5.8.  I was having a problem with some emails not deleting.  I would click delete and they would gray out but would not go to trash, if I would go to another address and come back, they would be in the black again!  I did some research and the "Rebuild" was suggested, so I tried it and WHALA the emails were finally gone.  Now I can receive emails without a problem, but I can't send any!  I have 4 email accounts and all of them will not send out anything!  I have a gmail account, 3 road runner accounts and an account from my website and none of them will send out anything!  I have checked my settings and nothing has changed, the only thing that I have done is the rebuild!  I hope I have given you enough information!   
    Hopefully someone can help! 

    Did you check the outgoing mail server setting? Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • AOL EMAIL HELP PLEASE

    I know all the reasons to get rid of AOL but I have had it for so long, it is impossible for me to leave it. I have a Palm Pre for years and my son bought me an Ipad2 for my birthday and I was hooked on Apple. Now I bought myself the Iphone 4 and put my AOL account on it but it will not give me instant emails like the Pre does. I called Apple and AOL and neither can help me. Is there any solution to allow me to get instant emails from AOL on the iphone 4? I get AOL emails (which does not support Push) instantly on the Pre without any delay, but the Iphone 4 sends them about 20 minutes after they are sent. The Pre has no waiting whatsoever, giving me the emails within seconds of them being sent, which is most important to me for my business. Thank you for any help!!

    Thank you for the fast reply. I tried it and it did not change the timing of the email. I even mimicked the exact setting in the Pre and no change.

  • Preordering problems - haven't recieved the email - help please!

    I preordered Panic at the Disco's new album 'Pretty. Odd.' over a week ago, and when I did it said that the album was due out today.
    Users have already bought and reviewed the album on iTunes yet I still haven't been able to download my pre order. I haven't recieved any emails about it and I have checked multiple times through the 'Store > Check for Purchases' menu. It seems that the album was released this Saturday (21st) instead.
    When I go to 'View Account > Manage Preorders' the order is there, but the 'expected release date' is in red...does this have any significance? When I click on the title of the CD it says that it is 'not currently available in the UK Store' - but I preordered it in the UK store!
    As I have not been billed for it yet (as far as I know) I can purchase it, but I would prefer not to as there are specific pre order only privelages.
    Any help or suggestions are greatly appreciated, thanks in advance!

    What you see in your settings seems normal to me. I haven't received an email either.
    And I have the problem here with R.E.M. 'Accelerate', due today, and already on regular sale, but preorder customers haven't been served yet. At another occasion this has annoyed me so much that I cacelled the order in account settings and bought the album in question right after that.
    I think Apple should change that if possible, so that preorder customers (usually the diehards anyway) get their purchase at least at the same time as regular shoppers.

  • Japanese characters in a html Email - help please

    Hi
    My web app sends confirmation emails to customers in multiple
    languages, all
    work fine apart from Japanese which display all as ? on the
    email.
    Part of of my email code is formatted as this (ie sending as
    utf-8)
    HTML = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0
    Strict//EN'
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>"
    & vbCrLf
    HTML = HTML & "<html>"
    HTML = HTML & "<head>"
    HTML = HTML & "<title>Vinylnet.co.uk</title>"
    HTML = HTML & "<meta http-equiv=""Content-Type""
    content=""text/html;
    charset=UTF-8"">"
    Dont know whats wrong.
    Thanks
    James

    Hi David, yes 'Content-type: text/html; charset=utf-8' is in
    the header...
    Thanks for the note on the poor Japanese translations,
    someone else is
    proofing it now.
    J
    "David Powers" <[email protected]> wrote in message
    news:epvh06$dq6$[email protected]..
    > James Noon wrote:
    > > My web app sends confirmation emails to customers
    in multiple languages,
    all
    > > work fine apart from Japanese which display all as
    ? on the email.
    > >
    > > Part of of my email code is formatted as this (ie
    sending as utf-8)
    >
    > What is the Content-type header of the email?
    >
    > It needs to be 'Content-type: text/html; charset=utf-8'.
    >
    > This needs to be sent as an email header, not just in
    the body of the
    HTML.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "Foundation PHP for Dreamweaver 8" (friends of
    ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • Cannot run pdf on hotmail email help please

    what is win 32 application?  I cannop open these email atttachments

    You need to have Adobe Reader (free) or Acrobat (commercial) for you to view pdf files.

  • Email help please

    How can I stop emails downloading onto my iPhone when I have already recieved and read them on my Mac?

    With a POP account, there is a setting to remove messages from the server after being downloaded by the email client being used. Change the account settings with the email client used on your Mac for accessing the account to remove messages from the server after being downloaded.

  • Need email help please??? email header analysis is saying this email is a fake and email is only being delivered "internally"?

    Return-path:
    <[email protected]>
    Received:
    from nk11p00mm-smtpin123.mac.com ([17.158.160.105]) by ms10524.mac.com (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Jan 3 2012)) with ESMTP id <[email protected]> for [email protected]; Wed, 27 Jun 2012 18:42:13 +0000 (GMT)
    Original-recipient:
    rfc822;[email protected]
    Received:
    from bz.apple.com ([17.151.62.54]) by nk11p00mm-smtpin123.mac.com (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTP id <[email protected]> for [email protected] (ORCPT [email protected]); Wed, 27 Jun 2012 18:42:10 +0000 (GMT)
    X-Proofpoint-Virus-Version:
    vendor=fsecure engine=2.50.10432:5.7.7855,1.0.260,0.0.0000 definitions=2012-06-27_05:2012-06-27,2012-06-27,1970-01-01 signatures=0
    X-Proofpoint-Spam-Details:
    rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=11 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1203120001 definitions=main-1206270193
    MIME-version:
    1.0
    Content-transfer-encoding:
    7BIT
    Content-type:
    text/plain; CHARSET=US-ASCII
    Received:
    from lasham.corp.apple.com ([17.34.184.161]) by bz.apple.com (Oracle Communications Messaging Server 7u4-23.01(7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTP id <[email protected]> for [email protected]; Wed, 27 Jun 2012 11:41:21 -0700 (PDT)
    Date-warning:
    Date header was inserted by bz.apple.com
    Date:
    Wed, 27 Jun 2012 11:41:21 -0700 (PDT)
    Message-id:
    <[email protected]>
    From:
    [email protected]
    To:
    [email protected]
    Subject:
    ReThe iTunes Store support team has received your message - Follow-Up213356706; Follow-up213356706
    Your message cannot be delivered to the following recipients:
    Recipient address: [email protected]
    Reason: Remote SMTP server has rejected address
    Diagnostic code: smtp;550 Requested action not taken: mailbox unavailable
    Remote system: dns;mx2.hotmail.com (TCP|17.158.185.185|52326|65.55.37.88|25)

    Hello,
    maybe you can first check if you can "simply" send an email with users SYS, SYSTEM (, SCOTT, ...)...
    Users must be allowed to send emails via "ACS", managed by dbms_network_acl_admin. It might be (I've no idea) that even SYS cannot send an email if ACL has not been explicitly configured
    Best regards,
    Bruno Vroman.

  • Item name in detail block changed!?  Help please!

    Hi, All
    I have a master-detail relationship. The join condition is Mast.ref_id = Detail.id. There was no returning records when I run datablock. When I came backe to the form, I found that the item name for Detail.Id was changed to FMNITE. I tried a few times, the name changed to different wierd charactors.
    Did anybody have this problem?
    Thanks,
    Deborah

    Hi Deborah,
    I've had two times the same problem. Delete the relation, delete the Item and recreate them both. That was in my cases enough workaround. Before I did it, I have restartet the Forms Builder.
    Have luck
    Gerd

Maybe you are looking for

  • Opening and fetching cursor.. what accually happens?

    So, if we have an explicit cursor... we open it with open c_cursor_name... and fetches it into some variable... my question is - what really happens when we open cursor? does oracle make only instance of cursor object in memory? or... does it reads s

  • External drive not working on iMac, but works on Macbook Pro

    I have read a few different threads relating to this question, with no real luck of a permanent solution. I have an external drive that works perfectly on my Macbook Pro. My new iMac will not show the drive though (both with the current software). Th

  • How do I convert an IMAQ image buffer into an IMAQ Vision 'Image'?

    Using NI IMAQ and IMAQ Vision with LabWindows/CVI 6.0... I have some acquisition code that uses IMAQ img functions to set up a triggered image acquisition and stores the image into an 1D unsigned char array buffer. I would now like to add code that u

  • How to display a .exe file in java applets by avoiding the file downloadbox

    Hi sir, I know that in order to display a any file(or)program in java applets you need to use showDocument().Where you cannot use exec() in java applets. My problem is that when i use showDocument() to display .exe file.It is showing a file download

  • Hyperlink Formatting Follies...

    Howdy iWebbers, My text-based hyperlinks aren't working correctly. Here are some of the perplexing behaviors... • The primary nav links are all set to appear in color, with one exception. The link designating the page you are on appears in white. Non