Is there a way that bulk mail won't pop up in notification center?

So I have a yahoo! email attached to my Mac Mail and all junk mail/spam gets filtered into a "bulk mail" folder that I just delete every few days. I like notification center showing me popups when I receive new mail but it also shows me notifications for these bulk mails so in the top corner of my screen I'll see "FREE PERSCRIPTION MEDICATIONS" and whatnot. These emails don't count towards "new unread mail" as I don't get the little number over the icon that I have unread mail when I get these. So is there a way to change the settings so that these don't have pop-up notifications? Presently i just turned off the notifications for all email so I don't have to hear about enlargement pills, but if there was a way to just remove these that would be fantastic.
Thanks in advance

Yes, this is very awkward.
There is some setting that lets us receive notifications only for messages coming into the Inbox. That may work for you, Monica, try it out:
Mail>Preferences>General>New Message Notifications>Inbox Only.
But this solution won't work for me, because I have rules set to direct incoming messages into multiple folders, so a lot of my important mail ends up in places other than Inbox. I would need an "Except Bulk and Junk" option, and sadly enough, it isn't there.
And this question was not answered / commented since the first week of August?.. Hmm..

Similar Messages

  • Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    SMS is a voice cell service and since the iPad does not have voice cell circuitry, it does not natively support SMS or MMS. There are third-party apps in the iTunes Store that purport to send SMS, but I have no personal experience with any of them.
    If I turn my imessenger off, does this mean these won't go to my ipad?
    If you disable Messages in the Restrictions on the iPad, then it will not be able to send nor receive messages. Or you can change the email address used for Messages on either the iPad or the iPhone. The iPad will then only receive messages sent via that address.
    For more information, see:
    http://support.apple.com/kb/HT3529
    Regards.

  • Is there any way that I can turn my iPhone 5 on without being near it cause my iPhone 5 was stolen and that guy that took it won't turn it on

    Is there any way that I can turn on my iPhone 5 without it being on or connected to the internet because my iPhone been gone for a week now a week and 2 days and I want the phone back I already have find my iPhone app and here won't turn the phone on he only turned it on once I just want my phone back

    No there is no way to remotely turn the iPhone on. If you enabled find my iPhone within settings>icloud before it was stolen then best thing would be to enable Lost Mode.
    You can read up on Lost Mode here:
    iCloud: Lost Mode

  • Is there any way that I can buy an itunes card via online and receive that in my E-mail?

    Is there any way that I can buy an itunes card via online and receive that in my e-mail?

    I imagine that if you travel to the UK and take out an item you may be able
    to reclaim the VAT at exit port
    You might get some pointers here
    Google search
    http://www.dccsupplies.com/shop/export_info.htm

  • Is there any way to make Mail open next message?

    Is there any way to make Mail open the next message on the inbox automatically after deleting, forwarding o saving a message?
    I mean, is there any way to, after reading a message, going to the next or previous message without double clicking the main inbox window?
    I used (on windows) to read mail on outlook, or even on entourage for mac, and after I read a message, even if I deleted it, forward it, replied it, or even saving it on a folder, automatically the program (outlook, entourage, hotmail, etc) opened the next message on the inbox, but I am not able to find any way to make Mail do that.
    Is there a way to it? Or should I provide suggestions to Apple?
    By the way, no meant to prefer microsoft for this, I just think this is a cool feature for reading several messages one after another without going back to the main inbox page and double clicking the message to read...
    Thanks for any help

    Down-arrow, Return. Return opens the selected message. I read through hundreds of messages without ever touching the mouse. Once you get used to the keystrokes, Mail is extremely efficient.

  • Is there a way to BULK COLLECT with FOR UPDATE and not lock ALL the rows?

    Currently, we fetch a cursor on a few million rows using BULK COLLECT.
    In a FORALL loop, we update the rows.
    What is happening now, is that we run this procedure at the same time, and there is another session running a MERGE statement on the same table, and a DEADLOCK is created between them.
    I'd like to add to the cursor the FOR UPDATE clause, but from what i've read,
    it seems that this will cause ALL the rows in the cursor to become locked.
    This is a problem, as the other session is running MERGE statements on the table every few seconds, and I don't want it to fail with ORA-0054 (resource busy).
    What I would like to know is if there is a way, that only the rows in the
    current bulk will be locked, and all the other rows will be free for updates.
    To reproduce this problem:
    1. Create test table:
    create table TEST_TAB
    ID1 VARCHAR2(20),
    ID2 VARCHAR2(30),
    LAST_MODIFIED DATE
    2. Add rows to test table:
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('416208000770698', '336015000385349', to_date('15-11-2009 07:14:56', 'dd-mm-yyyy hh24:mi:ss'));
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('208104922058401', '336015000385349', to_date('15-11-2009 07:11:15', 'dd-mm-yyyy hh24:mi:ss'));
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('208104000385349', '336015000385349', to_date('15-11-2009 07:15:13', 'dd-mm-yyyy hh24:mi:ss'));
    3. Create test procedure:
    CREATE OR REPLACE PROCEDURE TEST_PROC IS
    TYPE id1_typ is table of TEST_TAB.ID1%TYPE;
    TYPE id2_typ is table of TEST_TAB.ID2%TYPE;
    id1_arr id1_typ;
    id2_arr id2_typ;
    CURSOR My_Crs IS
    SELECT ID1, ID2
    FROM TEST_TAB
    WHERE ID2 = '336015000385349'
    FOR UPDATE;
    BEGIN
    OPEN My_Crs;
    LOOP
    FETCH My_Crs bulk collect
    INTO id1_arr, id2_arr LIMIT 1;
    Forall i in 1 .. id1_arr.COUNT
    UPDATE TEST_TAB
    SET LAST_MODIFIED = SYSDATE
    where ID2 = id2_arr(i)
    and ID1 = id1_arr(i);
    dbms_lock.sleep(15);
    EXIT WHEN My_Crs%NOTFOUND;
    END LOOP;
    CLOSE My_Crs;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR(-20000,
    'Test Update ' || SQLCODE || ' ' || SQLERRM);
    END TEST_PROC;
    4. Create another procedure to check if table rows are locked:
    create or replace procedure check_record_locked(p_id in TEST_TAB.ID1%type) is
    cursor c is
    select 'dummy'
    from TEST_TAB
    WHERE ID2 = '336015000385349'
    and ID1 = p_id
    for update nowait;
    e_resource_busy exception;
    pragma exception_init(e_resource_busy, -54);
    begin
    open c;
    close c;
    dbms_output.put_line('Record ' || to_char(p_id) || ' is not locked.');
    rollback;
    exception
    when e_resource_busy then
    dbms_output.put_line('Record ' || to_char(p_id) || ' is locked.');
    end check_record_locked;
    5. in one session, run the procedure TEST_PROC.
    6. While it's running, in another session, run this block:
    begin
    check_record_locked('208104922058401');
    check_record_locked('416208000770698');
    check_record_locked('208104000385349');
    end;
    7. you will see that all records are identified as locked.
    Is there a way that only 1 row will be locked, and the other 2 will be unlocked?
    Thanks,
    Yoni.

    I don't have database access on weekends (look at it as a template)
    suppose you
    create table help_iot
    (bucket number,
    id1    varchar2(20),
    constraint help_iot_pk primary key (bucket,id1)
    organization index;not very sure about the create table syntax above.
    declare
      maximal_bucket number := 10000; -- will update few hundred rows at a time if you must update few million rows
      the_sysdate date := sysdate;
    begin
      truncate table help_iot;
      insert into help_iot
      select ntile(maximal_bucket) over (order by id1) bucket,id1
        from test_tab
       where id2 = '336015000385349';
      for i in 1 .. maximal_bucket
      loop
        select id1,id2,last_modified
          from test_tab
         where id2 = '336015000385349'
           and id1 in (select id1
                         from help_iot
                        where bucket = i
           for update of last_modified;
        update test_tab
           set last_modified = the_sysdate
         where id2 = '336015000385349'
           and id1 in (select id1
                         from help_iot
                        where bucket = i
        commit;
        dbms_lock.sleep(15);
      end loop;
    end;Regards
    Etbin
    introduced the_sysdate if last_modified must be the same for all updated rows
    Edited by: Etbin on 29.11.2009 16:48

  • Is there a way to merge Mail account A on my desktop with Mail account A on a separate hard disk? I lost all my old messages in July, but they are on the hard disk. Thanks!

    Is there a way to merge Mail account A on my desktop with Mail account A from separate hard disks? I lost all my old messages (thousands of them) in July, but most of them are safe elsewhere. I'd really like to put them all in one place, though!
    The desktop (iMac) now has messages from July 2012 onward.
    My separate hard disk backup has old messages up to June 2012.
    Most of the ones between June and July are on a MacBook Pro which I bought about that time.
    Is there a relatively easy and safe way to put these messages back together in Mail account A on my desktop again?
    Many thanks!
    SqVerka

    Well, your profile info says 10.4.11, and you are posting your question in the iMac (PPC) category.  If you are running Snow Leopard, it must be a fairly recent Intel iMac.
    In that case, you should definitely post your question here
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard
    where other Snow Leopard users can see your question.  Restate the problem, what error messages you get, and what you have tried already (for trouble-shooting).

  • I was forced to switch from my original computer to a new one and majority of my iTunes were switched over but my audiobooks did not. Is there any way that I can retrieve them again?

    I was forced to switch from my original computer to a new one and majority of my iTunes were switched over but my audiobooks did not. Is there any way that I can retrieve them again. If I go to attempt to rebuy it, then it says thhat I technically already bought it but it won't download.

    Audiobooks are not available for redownloading, so you need to transfer them from your old computer, or get them from your backup. How did you copy your iTunes contact from your old computer to our new one?
    Regards.

  • Is there any ways to make Mail app show prefix and suffix in the address field?

    I apologize for any inconvenience that my poor English may cause.
    I would like to ask if there is a way to make Maill app show prefix and suffix in the address field.
    This is, in my culture, very important, especially for formal situations. When I call someone such as professors, bosses, I should put prefix after their names to show my respect. In Microsoft Outlook, there is a field called 'Display as'.
    http://www.slipstick.com/outlook/contacts/contact-address-book-options-settings/
    Therefore, I can choose how the name will be shown in my messages. For example, Prof. Kim instead of Kim. However, as far as I know, there isn't such options in Mail app. Is there any way that I can modify the way of displaying names in the address field in Mail app?

    As far as I can determine, that is only how you see the email address, not how it is sent.
    You can set up Prefixes and Suffixes in Contacts using the Add Field submenu of the Card menu:
    If you use the Edit Template... command, you can choose to always have the Prefix and Suffix show on new cards.
    However, I don't think Mail uses anything but First, Last for addressing emails.
    You can override the behavior by manually with:
    Prefix First Last Suffix <[email protected]>

  • Is there a way to bulk delete records

    It seems that I have a a lot of duplicated records in my " central " area so I wanted to either filter by Area then delete the duplicates if there is a way to do that or bulk delete every record that is "Central" in the Area column..
    is that possible?

    Are you able to select more than 100 through the Content and Structure manager?
    OR
    I found a technet article that uses powershell to perform a bulk-delete, it might be your best bet to start here:
    http://social.technet.microsoft.com/wiki/contents/articles/19036.sharepoint-using-powershell-to-perform-a-bulk-delete-operation.aspx
    Edit: is this you?
    http://sharepoint.stackexchange.com/questions/136778/is-there-a-way-to-bulk-delete-records ;)

  • I have blown a speaker is there any way that you can fix my computer?

    I have a blown right speaker is there any way that I can get it fixed in an specific amount of time?

    HollisterApple wrote:
    You can also make a report to Apple I believe.
    The last time someone reported about that, they said that the police communicated with Apple, not the victim. Whether that was, or is still true, I do not know. The police may be able to tell you when you file the report, but if not, it won't hurt to contact Apple and ask. Good luck to you Karina.

  • Is there any way to synch mail on two Macs so it doesn't have to be read twice?

    Is there any way to process mail once instead of having to go through it again on each device? If you read or delete a message is there any way to have this synched on other devices?

    Use ones that do :-)
    Any service that does not provide IMAP, in my opinion, is not a service you want.
    I suppose the alternative is to use webmail.  Yuk.
    Grant

  • I would like to leave my iMac on Snow Leapord to use Power PC software, and run Mountain Lion on my Macbook pro. I am getting an iPhone 5. Is there a way to use mail on all of them?

    I would like to leave my iMac on Snow Leapord to use Power PC software, and run Mountain Lion on my Macbook pro. I am getting an iPhone 5. Is there a way to use mail on all of them with the same accounts?

    Any IMAP e-mail account can be accessed from all devices just fine. You don't need to upgrade from Snow Leopard to be able to access an IMAP e-mail account. However, Snow Leopard won't have built-in support for iCloud. As mende1 points out, you can still read your iCloud e-mail from Snow Leopard, but you have to set it up manually. You won't be able to do things like sync your iCloud calendar or addresses with iCal or Address Book on the iMac, though.

  • Is there some way that emails on the iphone can be automatically be deleted on synching when those emails have been downloaded to my PC?

    Is there some way that emails on the iphone can be automatically be deleted on synching when those emails have been downloaded to my PC?

    Vatlily,
    Try this:
    1. Select Mail>File>New Message.
    2. Select Mail>Window>Address Panel.
    3. Use (command+click) on the desired addressees in the Address Panel to create the list.
    4. Click "To:" on the top left of the Address Panel.
    The group that you selected will be added to the "To" field in your New Message.

  • Is there any way to make Mail forget previous search terms?

    When I search for a mail starting with say, the letters 'and' it finds every email to, from or whatever associated with those three letters. However, it includes, in the cases of to or from, old email addresses that are no longer in 'Contacts' and or have bad memories for me. Is there any way to make 'Mail' forget those email addresses completely?
    This is not or does not seem to be the same as removing an email address from the previous recipient list.
    Thanks.

    Hmm. This removes the recipient only in such a way that when I type the first 3 letters of an address in a new email, that particular recipient does not appear.
    However, if the same first three letters of the addressee's name are typed in the Mail search function, the previous recipient's email address is still offered as an option. So I am afraid this does not help.
    Removing a previous recipient's email address is apparently not the same as making the Mail application forget a particular email address.

Maybe you are looking for