Can I set up a Content Filter that is Time/Date stamp dependent?

My company would like to add an additional disclaimer text during Holidays where the company is closed.  It will say something like: "In observance of the 'XYZ' holiday, our offices will be closing at 3:00 PM on Friday, December........ and will reopen at 8:30 AM Monday.......".
I was wondering if there is a way to set up conditions in an Outgoing content filter to only include that text if the email is sent between certain dates.
This would allow me to set up the filters prior to the holidays and not have to manage them manually.
I tried to do it via Exchange Transport rule, but I can't find a time/date dependent condition for the rules in Exchange.
Thanks,
Rachel    

Hi Rachel,
there is no way to archive this directly in content filters, an indirect way would be to use a message filter that adds an additional header (i.e. X-mas: true) during a specific period. For that, message filters provide the 'date' rule, i.e
HolidayHeader:
if ((date > '12/20/2012 13:00:00') and
     (date < '12/28/2012 12:00:00'))
insert-header('X-mas', 'TRUE');
You'd then create an outbound content filter matching on this header and inserting the specific footer if the header exists. Or, of course, you could have that action in the message filter already, however in that case you need additional conditions to make sure the rule applies on outbound messages only.
Hope that helps,
Andreas

Similar Messages

  • Can I set up a spam filter for my iPad like I have on my Mac?

    Can I set up a spam filter for my iPad like I have on my Mac?

    The Mac OS X Mail application has a "Junk" function that works locally, on the Mac, and just puts emails from previously designated "junk" addresses into a separete folder, so you don't have to wade thru all that spam in your Inbox. It's a very elegant and simple, local solution, that I dearly miss on iOS.
    I did submit a request for it at Apple Feedback page.
    http://www.apple.com/feedback/

  • I 'm using ipad 2 and am using iwork pages.  how can i set up iwork pages so that a page scroll left to right or right to left instead of just scrolling up?

    I am using ipad 2 and am using iwork paged.  how can i set up iwork pages so that a page will scroll left to right or right to left instead of just up?

    Here you are in a forum dedicated to Pages for OSX.
    Most of us don't use Pages for iOS.
    Better ask in the iWork for iOS forum :
    https://discussions.apple.com/community/app_store/iwork_for_ios
    Yvan KOENIG (VALLAURIS, France) lundi 18 juillet 2011 22:38:20
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How can I set up my imac so that I have access to other family members documents?

    How can I set my my imac so that I have access to other family members documents when I am logged on my side?

    Hello,
    I find Dropbox a great way of having access to my files on all Mac accounts, any PC on the web and my iOS device. 
    regards
    mrtotes

  • How can I set up my contacts so that I do not see all of them on ipad from iCloud?

    How can I set up my contacts so that I do not see all of them on ipad from iCloud? I don't need/want to view contact info for casual contacts on the ipad. (I.e. contacts entered so that I can identify a caller for ID/screening purposes)
    Also would like to limit email contacts from yahoo- no need to view emails for every "safe list" address.
    Thanks!

    Keyboard shortcut for FullScreen is   command + control + F
    For more on this:
    http://support.apple.com/kb/PH11941

  • How can i set up my macbook pro that the sent emails show up in the sent folder?

    How can i set up my macbook pro that the sent emails show up in the sent folder?

    look at the Preferences and open the "Mailbox Behavior"  maybe the sent mail is being stored on the server?
    I going to have this post moved to the "Mail" forum

  • HT4113 Can you set a passcode to activate at certain times of the day, say at 930pm, and  turn off again the next morning?

    Can you set a passcode to activate at certain times of the day, say at 930pm, and  turn off again the next morning?

    No, sorry, you can't. The screen lock passcode is either on at all times or it's off.
    Regards.

  • How can I set my bluetooth. the devices shows the timer going continually

    how can I set my bluetooth. the devices shows the timer going continually

    You can set the home page to about:newtab.
    *Tools > Options > General > Startup: Home page
    *https://support.mozilla.org/kb/How+to+set+the+home+page
    See also this article about the New Tab page (about:newtab):
    *https://support.mozilla.org/kb/new-tab-page-show-hide-and-customize-top-sites

  • How can I set up a guest WiFi network using Time Capsule and Airport Express extension?

    How can I set up a guest WiFi network using Time Capsule and Airport Express extension?

    Sorry, but it is not possible to "extend" the Guest Network using either wireless or an Ethernet connection.

  • How can i put a time/date stamp in Apple contacts, "Note"

    how can i automatically put a time/date stamp in Apple contacts, "Note"
    ei , when i enter a new note to a contact. I want the time and date to automatically show at each note.

    This is not a feature in Contacts. I suggest you send Apple feedback to let them know you would like to see this option.
    http://www.apple.com/feedback/macosx.html
    You can easily add the date stamp using an app like TextExpander.
    Read this article about using snippet keepers. http://www.macworld.com/article/151286/2010/05/clipboardmanagers word

  • Reader prints pdf file in mirror image, can't set off as a default that holds.

    reader prin
    ts pdf file in mirror image, can't set
    off in advanced printer preferences as the default,
    has to be turned off each time4 manually.

    Same here using Adobe 9.3.2 this appears to be an adobe latest version programming issue.  Can workaround by manually resetting before printing but that is not the point.  Many others on here with same prob.  Is there a fix?

  • How can i set the number of results that can be displayed on the page

    hello im just wondering how i can set the numebr of results that can be dispaleyd on the jsp, when the there are more than 5 results i want the suer to press more
    how is this odne could anyone send me a example code?
    and also how can i get results from the query displayed as select list options, so that when they press one of teh results it goes to correspnding page
    Thank you

    Hi,
    I assume that you have the connection to the DB.
    You can try this code.
    Statement stmt = con.createStatement();
    String sql = "<some sql code for selecting>";
    ResultSet rs = stmt.executeQuery(sql);
    rs.last();
    int count = rs.getRow(); // this is the number that shows how many numbers you have after select query
    rs.first(); //we moved cursor again to the begining of the results.
    if (count > 5) {
    for (int i=0;i<5;i++) {
      //as an example
      rs.getString(0);
      rs.getString(1);
      rs.getString(2);
    out.print("<a href='morePage.jsp'>More</a>");
    else {
    for (int i=0;i<count;i++){
      //as an example
      rs.getString(0);
      rs.getString(1);
      rs.getString(2);
    rs.close();
    stmt.close();I hope this would help you.
    If you have problems let me know..
    Ismail TURK

  • Can I set my MiFi up so that I can "see" who's using it?

    I have given several people the password to use my MiFi.  Can I configure the MiFi somehow so that I (from mycomputer) can view who's using it at any given time?  (Like you can view the "map" on networks in a Windows 7 system).  Anybody know--or even know what I'm talking about?

    If you are connected to the MiFi then you can view who is currently connected to it through the Admin website.  See the following steps.
    To view who is connected to the MiFi:
    1. Navigate to http://mifi.admin
    2. Sign into the MiFi with your admin password
      a. The default password is "admin"
      b. The signin box is in the upper right hand corner
    3. Click the LAN tab
    4. Review the Connected Devices list
    The Connected Devices list will show you the IP Address, Hostname (computer name), MAC address and date/time of when that device connected.  You may have to memorize and cross reference with these devices to know which one is which. 
    Note: The Connected Devices list only shows the devices directly connected to the MiFi.  If you are rebroadcasting your MiFi through a router/network extender/repeater then those connections will be bundled and display as one connection to the MiFi.

  • Basic question .... How can I set up a page for visitors to enter data?

    Is it possible in iWeb 08 to set up a page that visitors enter data in specific fields and allow me to retrieve that information? Like filling out a form, then emailing the form to my .mac mail.
    Thanks.

    Yes Douglas you can set up a form that collects information. Use an html snippet and get the form code from such places as
    Wufoo.com
    Formlogix.com
    Createforms.com
    bravenet.com
    and others you may find by googling it.
    Mireille

  • How can i set a series of measurement's by time?

    im trying to run a series of temp measurments which should be done every 5 cm , how can i set this kind of test?
    Solved!
    Go to Solution.

    If you ask a better question, you might get a better answer.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

Maybe you are looking for

  • Ora-01031: Insufficient Privileges during 10g install on Suse 9.1

    I have tried installing Oracle 10g on Suse 9.1 Professional several times. Although I have tried to carefully follow the instructions in the installation guide, I get the following error. When the Database Configuration Assistant start during the ini

  • Can anyone help me find a suitable iPad case?

    Can anyone recommend an iPad case that will protect my iPad when carrying it around in a rucsack -- or a site that will give me some reviews of cases? I can find lots of cases in the shops, but nowhere giving me advice about what type I need. I'd lik

  • Collapse the directory tree in xcopy

    Forgive the elementary question on xcopy.  It's been rather a long time since I played with it.  Last century, in fact. How do I select a particular file type (*.pst) from the entire folder tree of the source, and copy all of them to a single folder

  • Vista to Epson Printer on a MacBook via Bonjour

    I am trying to connect a Windows Vista computer, via Bonjour to allow it to connect to my Macbook to share its Epson Printer. The bonjour configuration goes through, detects the printer on the mac and connects as if all is fine, yet nothing happens w

  • Storage for working and storage for backup

    Hello friends and neighbours, here I am again with a I am considering to give thunderbolt storage to my coming Mac Pro, which I tended to use mainly for checking very large images, editing some of them slightly, printing and storing some of them. Sec