Is there a way to purge messages (already placed in subfolders by message filter on arrival) by age?

I have email filters that I run on receipt that partition my messages to sub-folders. Is there a way to process those sub-folders, to highlight or purge messages when they reach a certain age?

The 'Retention Policy' can be set to use the account settings or use a specified for that folder.
To set for specific folder:
Right click on the folder and select 'Properties'.
click on the 'Retention policy' tab
By default it will be set as 'Use my account settings'.
Uncheck that setting and the other previously greyed out settings become available.
Make a choice on prefered delete option.
Make sure the option: 'always keep starred messages' is selected.
Then, if there are any emails in that folder which you do not want to auto delete, you can set a star for those messages in the list to exclude them from the auto delete.
Note if you delete messages using this method it will also delete off the server.
When all selection are made, click on OK.

Similar Messages

  • Is there a way to disable previously viewed iMessages from appearing as Messages notifications when waking my MacBook Pro from sleep?

    Is there a way to disable previously viewed iMessages from appearing as Messages notifications when waking my MacBook Pro from sleep?  Regardless of whether I am using iMessage from  my iPhone or iPad, when I open my MBP, I get attacked by Messages notifications for iMessages I've obviously already seen or responded to.  Is there a way to change this?  Are others having this issue?
    Additionally,  previous iMessages sent or received from those  devices sometimes don't populate into the Messages window on the MBP.  I haven't been able to identify when or what causes this; sometimes it just doesn't seem to work (and I verified that the messages sent/received were, in fact, iMessages and not SMS).
    Thanks - any help or insight would be appreciated!

    First you need to determine what laptop model you have; then we can help you. A Mac Book Pro cannot run OS 9.1.
    With your Mac booted up, click on the  at the far left of the menu. Then click on About This Mac. It will show what version of OS  you are running. What is the version?
    A MBP will be running something like version 10.x.
    If you are running version OS 9.x, you don't have a Mac Book Pro.
     Cheers, Tom

  • Is there a way to purge a runtime repository?

    Is there a way to purge a Runtime Repository in OWB 9.2.0.2.8, in order to get rid of objects that no longer exists in the design repository?
    We are getting into a situation where there seems to be quite a bit of inconsistency between the design repository and the runtime repositories. This seems to be caused by developers deleting objects from the design repository without first dropping them from the runtime repository.
    The direct consequence of this is that we are getting "ora-01422: exact fetch returns more than requested number of rows" when trying to execute some process flows using the exec_template. There are no duplicate names in the design repository, but the same names have been used previously in packages that have now been deleted.
    In my opinion there are two improvements that should be made to OWB:
    1) You should not be able to delete objects that have been deployed without also dropping them from the runtime repositories
    2) You should not be able to deploy process flows with the same name as a process flow used in another package, as this causes both flows to be unable to run from the exec_template.
    I realize these changes won't be implemented over night. in the mean time I need a way to get rid of the duplicate process names from the runtime repository.

    Roald,
    I understand your problem and we are working to solve it by our next major release. In the meantime, you can purge the the run-time repository through the Runtime Audit Browser if you log in as a QA engineer, but this will leave the already deployed objects in place.
    To drop the deployed objects you could use the public views in the design repository and compare the objects present in these views with the objects present in your target schema. IT will be a manual process though...
    I will not even suggest to create a new RT repository and schema because if you have a lot of data and users using it this might get pretty complex (and unelegant too).
    Regards:
    Igor

  • Is there any way to change the default font for outgoing text-messages, in "Messages"? (OSX 10.10)

    Is there any way to change the default font for outgoing text-messages, in "Messages"?
    I can change it for one conversation, but then it resets to the default, tiny font.
    The preferences menu only lets me change the conversation font.
    (OSX 10.10)

    Hi,
    As you may remember there used to be a Messages pane to the Preferences where the Font and colour of the Balloons or background and the Font text colour could be changed.
    And there was a Format Menu for character, word and Sentence changes in the current IM or iMessage.
    Those have gone in Yosemite's version of Messages (Despite it retaining the designation of Messages 8 the same as Mavericks' version).
    All that can be done now is set the size of the font and this has been moved to the General Section of the Preferences.
    The Yosemite version has also been fixed to using the Balloons style of send and receiving any type of messages as well.
    Changing the Font would involved editing the Balloon.transcript file.
    10:34 pm      Saturday; December 13, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Is there any way to turn off the persistence of a Asynchronous message

    Hi All,
    We are in design of an interface, this interface reads the huge files everyday(cumilative size of all the files is more than 200MB) and moves to SRM proxy. Since the file adapter is involved, this interface is going to be a Asynchronous Interface, which means the message will be persisted in the Database and this database tablespace will be filled soon after go live or will be getting "out of tablespace".
    Now I am wondering is there any way we can turn off persistence of this huge message payload?? (if required I am ok using MOD or any enahcement on ABAP/JAVA)
    Thanks In advance for your help,
    Laxman

    Laxman,
    One option,
    http://help.sap.com/saphelp_nw04/helpdata/en/d6/49543b1e49bc1fe10000000a114084/content.htm
    +Set logging in the message header. This means that this message is logged even if logging is deactivated explicitly in the configuration. The logging information is part of the message header:
    ¡        <SAP:Logging>1</SAP:Logging>
    Activates logging explicitly.
    ¡        <SAP:Logging>0</SAP:Logging>
    Deactivates logging explicitly.+
    Check this thread on how this can be achieved,
    Regards
    Bhavesh

  • Is there any way to get a already created instance of a object?

    Is there any way to get a already created instance of a object not a new intance?
    Is there any way to get the last time that a object instance state has been changed?
    Is there any way to get a clue that a instance is being used?

    Is there any way to get a already created instance of
    a object not a new intance? It sounds like you want a "singleton". Here is a simple example
    public class SingletonObject
        private static SingletonObject ref;
        private SingletonObject()
            // no code req'd, put what is needed
        public static SingletonObject getSingletonObject()
          if (ref == null)
              // it's ok, we can call this constructor
              ref = new SingletonObject();
          return ref;
    }SingletonObject.getSingletonObject() will return you the single instance of SingletonObject. You can only get an instance throught this factory method. new SingletonObject() won't work since the constructor is private.
    Is there any way to get the last time that a object
    instance state has been changed?
    Is there any way to get a clue that a instance is
    being used?Stick methods in SingletonObject and getSingletonObject to keep trace of what you want to.
    For a full explanation see
    http://www.javacoffeebreak.com/articles/designpatterns/

  • Is there a way to change the *Error: invalid report object* error message?

    Well as you know if there is no data in a report, you get the above message. I was wondering if there is a way to replace this with another message, such as "there is no data for the criteria requested"?
    Thanks a lot.
    WC

    Hi Cashmoneydonuts,
    You can create an animation for this using Edge Animate, and add it to Muse.
    The following link might be helpful:
    Liven up Adobe Muse CC sites with animated effects | Adobe Inspire Magazine
    Regards
    Sonam

  • When composing a new message in mail on OS X 10.9.2, is there a way to change the "sending" account on a per-message basis?

    I just got a new MacBook Pro and when composing a new message, I can no longer choose which e-mail account I want to use for the new message.  It also does not show which account I'm using in the e-mail composition panel.  Is there a way to fix this?

    Click on the pull down window next to From: and you should be able to select the individual account you want to send from.  The account that you want to send from must be an Enabled account in the Account Preferences of Mail.

  • Is there any way to edit phone number hyperlinks received in SMS messages prior to calling them?

    Just got a new iPhone 4s for work.  I receive text messages from an answering service containing phone numbers to return calls.  On my Windows smartphone, when I clicked the hyperlink for the phone number, it gave me the option to edit the number (for example, to add an area code prefix or *67 to block my number) prior to dialing.  Is there any way to do this on the iPhone 4s

    If not part of your iPhone backup, they are gone.

  • Is there a way to make the keyboard "go down" (like in messages) while working in Mail?

    It's challenging when I want to review an email that I've typed but the keyboard talked up 40-50% of the screen. It's nice in messages how you can drag the keyboard down. Is there a way to do this in mail?

    Just I tried it on my phone and looks like you can't.

  • Is there a way my BB 8220 will notify me of unread messages?

    I know most phones don't do this, but maybe there's some way I can get a similar function (an app or something ) on my BB Perl 8220.
    Every time I miss a call, or I have my phone in vibration mode (no sound), or basically I don't read a message as soon as it arrives, the only way the phone notifies me of that is a blinking light. It's not pretty useful, since I have to actually look at the phone (which I keep in a protective case) to see the light, so I still wouldn't know of unread messages or missed calls.
    Is there a way to make it play a sound or vibrate when there are unread messages or missed calls?
    Thanks!

    many applications allow you to do that. I am happy with the free application "BeBuzz".
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Is there a way to "purge" muliple copies of the same song?

    Hi, I lost my iTunes library after connecting my iPhone (don't know how or why or even if that was the cause). The library had around 20 songs total in it after disconnecting the iPhone - down from several thousand. I did have a few older copies of the Library in different places which were not identical so I imported each of them which resulted in many duplicates or triplicates. I thought I could easily purge - i.e. delete all but the most recent copy but I have not been able to find a way to do this. It would take forever to delete them one at a time. Can anyone please tell me how to accomplish this? Thanks - Dave

    Apple's official advice is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background, this post for detailed instructions, and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and copes sensibly when the same file has been added via multiple paths.
    tt2

  • HT3529 Is there any way to sync iMessages from an iPhone into the Messages on a Mac Book Pro?

    Basically, for me to upgrade to an iPhone 5s, I'll have to trade in my iPhone 4s. The thing is, I'm pretty sentimental when it comes to certain text messages and I would really like to be able to save them all somewhere, somehow. Everything else is backed up to my laptop, so I'm not concerned about anything else on the phone; it's just not wanting to part with the text messages... It would be nice if there is a way to sync the rest of one's messages into the Messages app on the MacBook Pro. Is that possible?

    If the photos were on the iphone when the last sync was performed, then you should be able to restore from backup.

  • Is there a way to delete app already on Ipod

    I am wondering if there is a way to get rid of apps that are already installed on ipod? I don't need the stocks one and the weather one that is installed on here? I can't figure out how to delete them, if it's at all possible. Thanks.

    vmoore3236 wrote:
    I can't figure out how to delete them, if it's at all possible.
    It's not possible to delete the original apps that came with your iPod Touch. All you can do is move the to an another screen or place them in a folder (with OS 4).

  • (Bold 9900 - BBOS 7.1) Is there a way to automatically add reminder alert when flagging a message for follow-up?

    I love the feature in Outlook that lets me flag a message for follow-up and automatically adds a default reminder at the end of the day. Is this something I can configure my Blackberry 9900 to do (running 7.1)?
    As far as I can tell, when I flag something for follow-up, it adds a flag but does NOT add any reminder alerts. If I want to do that, I then need to manually add the reminder and set it (which is a little cumbersome).

    I guess timed message is on the wish list
    However in all my forms I use following scenario to validate all data entry at one time and then submit...
    I use regular button and add code in Click event
    JS example.....
    var errorFlag = 0;
    var errorMsg = "";
    if (validation expression 1) {
         //true/pass
         //no need to change following values
         errorFlag = errorFlag;
         errorMsg = errorMsg;
    }else {
        //false/fail
       //set the flag and message accordingly
        errorFlag = errorFlag + 1;
        errorMsg = errorMsg + "validation message1" + "\n"; //\n for new line with in the message
    if (validation expression 2) {
         //true/pass
         //no need to change following values
         errorFlag = errorFlag;
         errorMsg = errorMsg;
    }else {
        //false/fail
       //set the flag and message accordingly
        errorFlag = errorFlag + 1;
        errorMsg = errorMsg + "validation message2" + "\n"; //\n for new line with in the message
    //finally
    if (errorFlag > 0) {
        //>0 indicates there are one or more errors
        xfa.host.message(""+errorMsg);//display all messages at one time
        exit; //now since there are validation errors you can stop processing further and exit the event
    //add submit code......here....

Maybe you are looking for

  • Photoshop 12.0.1 crashes on startup / error for object 0x10734d208

    Hello. Photoshop 12.0.1 / Mac OS X 10.6.4 crashes on startup having run flawlessly hitherto. No new fonts installed, no problem in any other application, CS5 or no. Preferences and cache deleted, no change. Disk Permissions etc. checked / repaired. R

  • PDF attachments in gmail

    Unable to open PDF file in Adobe application.  PDPs open in gmail but image size is fixed. Ipad2 iOS5 does not display open icon shown in Adobe reader app.

  • Checks not getting created VIA FPY1

    Hello All, I am trying to create checks using FPY1. Even though the entries to Customer contract accounts are being posted correctly there are no checks being created (I am not concerned about printing the checks). When I look at the posted document

  • Video and audio do not sync after importing media into Premiere Pro

    After I import my video which is in the .MOV format, I notice that the video is slow and out of sync with the audio.  This makes it incredibly difficult to edit.  Any and all solutions will be helpful.  Sincerely, SheIsInquisitive

  • Data source not delta capable

    Hi ,    i have an issue here my copa datasource is not delta capable, how will I make it delta capable.I dont want to use an ODS here.please this is an urgent issue regards rak