• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Server-side vs. Client-side Rules

Slipstick Systems

› Outlook › Rules, Filters & Views › Server-side vs. Client-side Rules

Last reviewed on August 31, 2018     60 Comments

A new Outlook 365 Exchange Online user is struggling with rules.

I'm trying to figure out the hierarchy actions of the rules. I need to have email messages with exact subject detail sent to a specific folder. I also noticed that some rules are server based and are done first before leaving the 'cloud' and that rules on OWA seem to conflict with those set in Outlook.

If Outlook is open, the rules should be processed in the order listed, but when Outlook is closed, the server rules are applied. When you create rules in OWA, only server rules are supported.

Rules that have actions that require Outlook are client side rules and only run if Outlook is running. This includes moving messages to local pst files, adding a category or a flag. If a server rule moves a message when Outlook is closed, the client side rules that might apply to the message won't fire.

Suppose, for example that there are two rules. The first moves any message with "abc" in the subject to Folder A and the second rule moves messages sent from "microsoft.com" to Folder B. What happens if I receive a message from Microsoft that has "xyz" in the subject?

In this case, it depends if you are using Stop Processing with the first rule. When the message arrives, it's processed by the rules in the order they are listed and the message is checked against all rules unless a rule includes Stop Processing. With the Stop Processing action added, when a message matches the rule, Outlook stops looking at the remaining rules and moves on to test the next message. If you don't want a copy of the message in Folder A and one in Folder B, you need to use Stop Processing in Rule 1.

Client or Server Rules?

You can divide rules into two types - server-side and client-only. Server-side rules are handled entirely by the Exchange Server, independent of the state of the Outlook client. Client-only rules do not execute until the user who created the rule logs in to the Outlook client with the same profile used to create the rule.

Client and Server Rules

Whether a rule is server-based or client-based depends on the exact conditions and actions for that rule.

Certain rules are always client-only - those that involve some element from the Outlook client that does not exist on the Exchange Server. The following table classifies these according to whether they depend on Outlook features, client files or the mail profile. The last group contains something of a surprise: A rule to copy to a public folder fires only when the client is logged in with the profile that created the rule.

TIP: Try forwarding the message to the public folder instead. That rule always fires on the server.

Rule conditions or actionsExamples
Conditions using Outlook client featuresWith specific words in recipient's address
With specific words in sender's address
Flagged for action
Assigned to category
With specific words in the subject or message -- if you specify multiple phrases
Actions using Outlook client featuresNotify me using a specific message
Flag message for action
Clear the Message Flag
Assign it to a category
Play a sound
Actions that use client filesMove it to the specified folder (in a .pst file)
Move a copy to the specified folder (in a .pst file)
Reply using a specific template
Perform a custom action
Mark as Read
Actions dependent on the profile used to create the ruleMove it to the specified folder
(in Public Folders or in a .pst file)
Move a copy to the specified folder
(in Public Folders or in a .pst file)

When you create a rule, the Rules Wizard stores the rule settings (conditions, actions, and exceptions) in a .rwz file with the same name as the user's profile. For rules for incoming messages, it also stores that information in the Inbox folder itself, with an indicator of what profile created the rule. This means that the details of the rule are available to the server.

When a message arrives, the server compares it with the list of rules. If the server can execute the rule, it does so. If not, it places a deferred action message (DAM) in a hidden Deferred Action folder in the mailbox.

When the user runs Outlook, the client checks the Deferred Action folder and examines each DAM. If the rule was created with the current profile, Outlook carries out the actions indicated in the DAM. This helps explain why rules may fire in an order different from that listed in the Rules Wizard: If the user is not logged in, rules that run on the server execute first, while client-only rules don't fire until the next time the user runs Outlook with the appropriate profile.

Note that if a mailbox is over its size limit, it cannot execute any rules that will send replies or forward items.

More Information

How Exchange Assistant Rules Work

Server-side vs. Client-side Rules was last modified: August 31st, 2018 by Diane Poremsky
Post Views: 219

Related Posts:

  • This technical discussion first appeared on the msexchange discussion
    How Exchange Assistant Rules Work
  • Keep Client or Server Side Rules?
  • As POP3 users have discovered, when you use rules to move email to ano
    Why don't the folders expand?
  • If you need to monitor a second Exchange Server mailbox in addition to
    New Mail Notifications from Another Mailbox

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Afsar says

    July 26, 2022 at 3:19 am

    when i create rules in OWA, it works in webail and outlook client, But same rules when created in outlook client it does not work. I am using O365.

    Reply
  2. BobH says

    July 8, 2022 at 3:13 pm

    I tried yesterday to post a question, saw that it was 'awaiting moderation', responded to the email to 'confirm', but post got deleted. Retrying...

    I have a VBA macro that creates a rule to move a message from the selected sender to a designated folder in a locally stored .pst file, but it's become a server-side rule since we converted to Exchange mailboxes. From what I've read, a move target to a .pst file should be treated as a client-only rule, but it's creating it as server-side. We're trying to avoid creating server-side rules due to the absurd 256k limit on the size of all server-side rules.

    I've tried to locate a property or method in any of the rule-related objects to enable the 'on this computer only', but the closest thing I found was the IsLocalRule property of the Rule object, but that's read-only. When creating a rule in Outlook (via UI), you can specify whether the rule is 'on this computer only', but apparently not with VBA (?)

    Reply
    • Diane Poremsky says

      July 8, 2022 at 3:33 pm

      it wasn't deleted - its here waiting for me to approve it (and as long as its not spam, it will be approved).

      Moving to a pst should be a "(client-only)" rule - but all rules are stored on the server when you use exchange.

      Do you need to use VBA to create the rules or could you use VBA to just move the messages? You can watch the inbox using VBA and move the mail or use rules with conditions - preferably words that will match a lot of messages that need moved so you can use one rule - and then use a macro to move.

      Workable scenarios:
      You code the subjects with a client ID, which is also in the folder name. Easy peasy lookup.

      Folders are named using senders display name - outlook looks for a match and moves. Only problem is with senders who use different mail clients and display names. Can also work for domain names, if you want all mail from a company in one folder.

      Difficult scenario:
      Folder names don't match anything and you need to use an array to match names and folders. It's fine if the array is small, but unmanageable as you get higher in the double digits.

      Reply
      • BobH says

        July 8, 2022 at 4:16 pm

        1) So even if a rule is created via Outlook as 'client only' ('on this computer only' checked), it's still stored on the server? I created a test rule with this property set and when I used OWA to check server rules, it wasn't there.
        2) The user needs to dynamically add senders that will have messages moved to a specific target folder in the .pst file, so it seems like having VBA create a new rule for each sender (or with more sophisticated coding, add the sender to the list of emails that will be moved to the target folder) makes sense.
        3) It seems like like VBA coding to replace what rules do (constant monitoring of Inbox) would be difficult

      • Diane Poremsky says

        July 8, 2022 at 5:40 pm

        #1, yes.
        #3. Not really... but it really depends on the specifics.
        https://www.slipstick.com/developer/itemadd-macro/

  3. sunny says

    June 28, 2022 at 1:31 am

    How to change exisitng client rule to server when it depends on stop processing ? some of my Rules need cascade to apply multiple categoreis to eMails but others need stop processing for more simpler Rule design.

    Reply
    • Diane Poremsky says

      June 28, 2022 at 10:31 pm

      You can't change a rule from client to server, except by removing the conditions or actions that make it client side. You can add conditions to server rules to force them to be client side. Maybe set a category or flag.

      Reply
  4. Claudia says

    December 29, 2021 at 3:13 pm

    Is there a benefit to having server-side rules if I always want my rules to run every time I am using y mail, whether it's the web-based version or through the application? It seems super-confusing to have two sets of rules, or two versions of the same rules, for the same account. I set up my rules in the application, but under Server. Do I need to re-create them under client? Most of them are rules to assign a category.

    Reply
    • Diane Poremsky says

      July 8, 2022 at 3:46 pm

      You should only have one set of rules, with a mix of client and server sides.

      If you use an Exchange mailbox (including outlook.com) server-side rules will move mail as it arrives - client-side rules would only work on mail left in inbox. I have a few clients who want to see the mail on their phones and want it left in the inbox until outlook downloads it - they need to add conditions or actions to make them client-side.

      POP and IMAP account only have client-side rules.

      Reply
  5. Tony says

    June 14, 2021 at 1:18 pm

    I'm curious as to why rules that assign categories are client-only. Categories appear to exist on the server. When I used the Outlook 365 web-app I can see and assign categories. I can even create rules in that interface that assign categories. But when I try to create a server-side rule in the Outlook Windows client it won't let me assign categories.

    Reply
    • Diane Poremsky says

      June 14, 2021 at 8:45 pm

      The rules engine in outlook desktop is old - they improved the rules engine in exchange server which is why it works in OWA. The only thing you can't do is edit most rules you make in one, in the other.

      Reply
  6. stuart barkley says

    May 21, 2021 at 5:45 am

    Hi Diane,
    Thank you for this explanation. It explains a lot of stuff that is not easy to find - even on MS sites.
    In the words of that U2 song though, I still haven't found what I'm looking for :-)
    I've created a rule in OWA to redirect to an external email address and then delete the message.
    Unfortunately, it deletes the message first and then... there's no message to redirect.
    No matter which order I put the rule clauses (I assume it is supposed to execute actions from first to last), the delete always shows up first in the panel on the right (the rule explanation). My tests seem to suggest the delete is actually happening before the message is redirected (I've tried forward as well just in case it was that).
    The only way I can make it work is create 2 separate rules with 'stop processing' off on the first one.

    Regards,
    Stuart

    Reply
  7. Brad says

    September 10, 2020 at 10:55 am

    Great article! This may be a stupid question but here it is. I created a rule on my desktop that is client-only. When I use my laptop, the rule appears with (For other computer) after it. Does that mean that rule will only run on my desktop or can I still run it on my laptop? Thanks!

    Reply
    • Diane Poremsky says

      September 10, 2020 at 2:34 pm

      It means it only runs on the desktop - because a condition or action is only available on the desktop.

      You can edit it so it works on the laptop - but it may only show up as 'on other computer' on the desktop. If this happens, copy it and have one copy for each computer.

      Reply
  8. Steve Fredricks says

    July 13, 2020 at 9:30 am

    Is there anything useful a server rule CAN do? You seriously can't delete a message on the server? Those people are morons. They can't even figure out how to give you an error message explaining the problem. Just "LOL your server rule is a client rule now, hur dur".

    Reply
    • Diane Poremsky says

      September 10, 2020 at 2:36 pm

      Server side rules can do a lot - but they can't do things that use resources in outlook or local to the computer.

      Reply
  9. Ashok Shukla says

    May 11, 2020 at 8:49 am

    Hello Diane,

    Hope you are good and keeping healthy in this tough time.

    My whole team works on a shared mailbox on Outlook 2016. Recently, i created a rule to defer delivery of every email sent by the team to 10 mins. I made sure to check "Turn on this rule" while creating it. What i found that whenever i send an email from my PC, it stays in the Outbox for 10 mins, however, my colleagues Outbox does not show that particular email(s). I though Outbox is shared as well and the emails sitting in my Outbox will eventually appear in my colleagues outbox as well. I am not sure if the above ask is appropriate. Any advise on how this thing can be resolved? or is it just impossible?

    Thanks & regards,
    Ashok

    Reply
    • Diane Poremsky says

      September 10, 2020 at 2:38 pm

      The outbox does not sync to the server when you use cached mode, so they won't show in shared mailboxes.

      Reply
  10. Sam Reeve says

    February 13, 2019 at 5:33 am

    Hello! Thanks for the article, it's really helpful. One thing I haven't been able to find out though is about shared mailboxes.

    I'm in a team who uses a shared mailbox and I wanted to create some client-only rules (because I want rules that categorise incoming mail) but because I don't get in until 10am every day (after everyone else) I want those rules to run whenever ANYONE in my team opens their profile (and thus the shared mailbox will be opened within their profile too, as they have it added as an additional mailbox) rather than just whenever I open mine.

    I was thinking that maybe I could create the client rules, export them, and then email them to my team so that they can install the same rules on their profiles. Would that work, or is there an easier way of doing this?

    Thanks,
    Sam

    Reply
    • Diane Poremsky says

      September 21, 2019 at 8:22 am

      That would work... or if the rules will be server side, you can open the shared mailbox as an account (in its own profile) and create the rules. This only works for server side rules though. You may be able to create the rules in Outlook on the web too.
      https://www.slipstick.com/exchange/create-rules-and-oof-shared-mailbox/

      Reply
  11. Joseph G Sukenick says

    September 28, 2017 at 3:52 pm

    Hi Diane, I'm having issues with the custom rules I create in Outlook 2003. I must have reached the limit of rules I have created to send pesky and unwanted emails directly to the JUNK folder. This no longer works. If this is the case, how can I increase either the number of rules or the maximum size of the rules limit? I have read of many ways around this in Exchange Server but have not seen anything related to non Server (standalone) Outlook 2003.

    Do you know how to increase my ability to create more rules as shown below?

    Thank you!

    Joe

    Reply
    • Diane Poremsky says

      September 28, 2017 at 9:22 pm

      You can't change the # of rules - Exchange server mailboxes store rules on the server and there is a limit to the # that can be stored. The administrator can increase, but end-users can't. POP account should have no limit that I am aware of.

      If you have rules that do the same thing for different domains, you can combine them into one rule. This will reduce the size and generally make it easier to review the rules.

      Reply
  12. Tom says

    September 16, 2016 at 7:44 pm

    Hi Diane, I want to use one special contacts list that is shared/synced. The purpose is for my office staff to populate the contact list and have it synced to my users out in the field. I created a gmail IMAP account for this purpose, but is did not install it's own contact file. Can you advise how to do this, Tks, Tom

    Reply
    • Diane Poremsky says

      September 17, 2016 at 12:21 am

      gmail is email only. You'll need to use outlook.com or an exchange mailbox.

      Reply
  13. Tom says

    September 16, 2016 at 7:39 pm

    Hi Diane, is there a way to add more category colors in addition to the ones provided in outlook .

    Reply
    • Diane Poremsky says

      September 16, 2016 at 11:29 pm

      No, sorry, there is not.

      Reply
  14. Tom says

    September 16, 2016 at 7:37 pm

    Hi Diane, I need your advice on the following for 2016 Outlook: I receive emails from a vendor several times a month. I want to set up the following rule: I want to file these emails by year and month and forward the same file result to another user. The last I checked, the only way to achieve this is to make 12 different rules, one for each Month. Since we are limited on the space the rules use it would be better if I could use one rule with 12 different conditions added within this one rule. To be exact, I want to use the "date range" option 12 times in one rule, thus the incoming will be sorted and filed by month and forwarded or synced to another user on my exchange account. Can you make this happen? Is this worth the trouble to save space? ie... what is the approx. space used when creating 12 full rules Vs one rule with 12 conditions?

    Thank you, Tom

    Reply
    • Diane Poremsky says

      September 17, 2016 at 12:20 am

      Can you run macros? You can use a run a script rule to do this. Basically, the macro on this page that files by year.
      https://www.slipstick.com/developer/file-messages-senders-name/

      Reply
  15. Jessica D says

    May 4, 2016 at 9:27 pm

    Hi Diane - can you tell me if I am understanding this correctly? If there are client-side-only rules, and a message is viewed say, from my cell phone before Outlook, will Outlook run those rules when I open it later, or would I need to apply the run rules now action to get them to work? Thanks!

    Reply
    • Diane Poremsky says

      May 4, 2016 at 11:55 pm

      If the rules are server side, the message will be moved before the device gets it. In an Exchange mailbox, client side rules should run on messages even if they are read. It's a little buggy with IMAP accounts and would be hit or miss.

      Reply
  16. Kam says

    January 7, 2016 at 4:44 pm

    I need something like this to work when outlook on the PC is not open
    Public WithEvents WithEventItems As Items
    > Private Sub Application_Startup()
    > Dim oNameSpace As NameSpace
    > Dim oRecip As Recipient
    > Set oNameSpace = GetNamespace("MAPI")
    > Set oRecip = oNameSpace.CreateRecipient("Damien Vryce")
    > oRecip.Resolve
    > Set WithEventItems = oNameSpace.GetSharedDefaultFolder
    > (oRecip, olFolderDrafts).Items
    > End Sub
    > Private Sub WithEventItems_ItemAdd(ByVal Item As Object)
    > 'Your code comes here
    > End Sub

    Reply
    • Diane Poremsky says

      April 15, 2016 at 5:50 pm

      Macros only run when outlook is open. vbscript can be run outside of outlook, but they'd still need to open outlook to do anything.

      Reply
  17. Kam says

    January 7, 2016 at 4:35 pm

    Dear Diane,
    Can we put in the outlook VBA editor a server side rule that makes the server accept all incoming task requests?

    Reply
    • Diane Poremsky says

      April 15, 2016 at 5:49 pm

      No, sorry, VBA is client side only.

      Reply
  18. Tania says

    May 11, 2015 at 8:01 am

    Hi Diane,
    I've written a simple script to copy an email and its attachments to a file share on a network drive. This script is called from a rule in Outlook. The issue is that I need to do the exact same thing on the Exchange server so the script runs even when Outlook is not open. Is this possible? The Exchange account the receives the emails is a shared account.

    Thanks for your help.
    Tania

    Reply
  19. Larry Mackey says

    August 3, 2014 at 8:59 am

    Diane,
    Thanks, I found mail flow rules. What would be most appropriate for what we want is if I could build a rule that for each user made a copy of every incoming and outgoing message (all of them) into their online archive folders as set the folders as read only to the user (so they can't accidentally delete them) I guess an alternative is to extend saving deleted emails to say 1 year or whatever hold period we set as an archive period. RIght now was save copies for 3+ years (the + is until I run out of space)

    I am assuming there is a macro capability in Office 365 that I have not yet explored??

    Reply
    • Diane Poremsky says

      August 3, 2014 at 9:46 pm

      The Outlook 2013 side of Office 365 has macro capability, same as the older versions of Outlook. I don't think you can set the online archive to read only - for starters, you won't be able to add anything to them. In place hold would be a better option - I think users can delete but they can't remove them from deleted recovery. See https://technet.microsoft.com/en-us/library/ff637980(v=exchg.150).aspx for more information. The recovery folder quota is 30 GB - more than enough for a few years of the average user.

      Reply
  20. Larry Mackey says

    August 1, 2014 at 9:11 am

    Is it possible to set a server side rule to make a copy of all mail coming into an office 365 mailbox to an archive folder or is there a better way to archive a copy of all mail as a company policy? For example if someone deletes or moved an email to a .PST we want to able to recover for 1 year.

    Reply
    • Diane Poremsky says

      August 3, 2014 at 12:51 am

      You can use journaling or mail flow > rules. Mail flow rules is better in some ways as you can copy them to a mailbox in the tenant - journaling won't work with a local mail, you need to use a mailbox outside your domain.

      Reply
  21. C says

    May 23, 2014 at 9:46 am

    Is there a setting/way to tell Outlook to run all client-only rules on inbox whenever the application is opened. This way when I come in Monday morning and open Outlook, everything will be filed/classified correctly. Thanks. Diane, you rock!

    Reply
    • Diane Poremsky says

      May 23, 2014 at 10:53 am

      Well, you can use a macro to run all client rules on application startup, as long as you use outlook 2007 and newer, but if the rules are enabled, Outlook will process the messages that arrived over the weekend when you open Outlook and the messages are loaded.

      Reply
    • dporemsky says

      May 23, 2014 at 4:20 pm

      BTW, you can add the Run Rules Now command to the ribbon to save a few steps. But if you want to use a macro, see https://www.slipstick.com/outlook/rules/run-outlook-rules-startup/ (Thanks for the idea :))

      Reply
  22. Ken says

    February 26, 2014 at 7:59 pm

    Hello Diane

    we need a way to track all incoming emails from a big customer to move up to everyone’s email chain.

    If they can be flagged and color coded even better. Orange is the color signifying these urgent emails.

    All incoming emails will have the subject: “Urgent: 123456 quote request”

    We are using Exchange 2003 with office 2007 clients

    i have been able to make a rule with outlook to flag the subject.. but it seems it's only client side. is there a way to flag where the settings stay on the server side?

    What exactly are the rules that can be server based?

    Thanks
    Ken

    Reply
    • Diane Poremsky says

      February 27, 2014 at 9:24 pm

      Unfortunately, not. Rules that set flags and categories in Outlook are client side rules. Log into OWA and try setting rules there - I know in OWA 2013 I can assign categories (but not flags) but I'm not sure if that is possible in 2003.

      Reply
  23. Jackie says

    August 28, 2013 at 7:55 am

    Hi, I have set a rule to reply to all recieved emaials during a specific date range. I will be out of the office and will not have outlook running. When I finished making the rule it says it is a client only rule. How can I make this rule a server rule?

    Reply
    • Diane Poremsky says

      September 21, 2013 at 9:32 pm

      Are you using Exchange server mailbox? If so, use Out of Office assistant, otherwise, you need to use the vacation reply feature of your email account. To set it, log into web mail.

      Reply
  24. Mike says

    August 10, 2013 at 5:56 am

    Hi, I have set up a rule so that any email I send out, with a few exceptions, the emails are cc to my assistant. Outlook says that this rule is client only and Outlook has to be running in order to perform the rule. I close Outlook and log off my computer when not at the office and conduct emails through my mobile device using Touchdown app which does sync with my Outlook through our exchange server. However the cc rule does not perform when sending emails from my mobil device. How is it possible to enable this feature? Thanks, Mike

    Reply
    • Diane Poremsky says

      August 14, 2013 at 4:45 pm

      Rules for sent messages only work from outlook, they won't work when you use other email clients. You'll need to enter the assistants address yourself when you use the mobile device, unless it can be configured to CC the address. Sorry.

      Reply
  25. Mei says

    July 21, 2013 at 4:06 pm

    Hi Diane

    Hope you will be able to help me here a little bit. I'm trying to get our IT team to set up some server-side redirection rules (not forward) for emails received where the mailbox address does not appear in the To/CC fields i.e. BCC emails. However, I was advised that they are unable to setup any server-side redirection rules and can only setup forward rules?

    Are you able to advise if server-side redirection rules are possible? I need to retain the sender's address on the email and would like to be able to not use client-side rules since the rule wouldn't run when my outlook client is not open.

    Hope you can advise?

    Thanks,
    Mei

    Reply
    • Diane Poremsky says

      July 31, 2013 at 11:05 pm

      Sorry for taking so long, I was on vacation when you posted this.

      What version of Exchange? Transport rules can redirect mail, but it might only work if the mail is from someone internal.

      Reply
  26. Rob Lyons says

    February 5, 2013 at 11:09 am

    Hi Diane,

    I am running outlook 2007 and have maybe 10 different email addresses that my outlook checks. All of the email addresses except one are pop3 accounts. The one that is an exchange client I have set up to check through the web mail access.

    I probably have over one hundred rules that sort mail by sender to their individual folders however, since I added the one exchange server, every time I add a rule it attempts to update the server even though I have it tagged as a client only rule. Of course because I have so many rules, the server will not accept the rules and turns them off which means I have to run them manually once or twice per day. This, as you can image, drives me crazy.

    How do I prevent the client based rules from attempting to update the server?

    Also, I do have "Use Cached Exchange Mode" turned on.

    Thanks for your help
    Rob

    Reply
    • Diane Poremsky says

      February 5, 2013 at 11:22 am

      This is a toughie because Exchange takes over as master account. It controls all of the rules for itself and all POP3 accounts. You can't prevent it from updating the server. The only options are to put the exchange account in a separate profile, use imap instead of POP3, use a 3rd party rules engine. (I like Auto-Mate, which is discounted on Feb 7 at bitsdujour.)

      Reply
  27. Daniel says

    February 1, 2013 at 8:04 am

    Note that the action "Mark Items as Read" also seems to be a "client-only" action.

    Reply
  28. Amandeep Singh says

    March 22, 2012 at 9:13 am

    Hi,

    Can I delete server side outlook rules through some other client? Like thunderbird or some other mechanisms?

    Thanks

    Reply
    • Diane Poremsky says

      March 22, 2012 at 9:28 am

      No, you can't use T-bird. You can delete them using OWA though.

      Reply
  29. Gunnar Heikkilä says

    November 16, 2011 at 9:30 pm

    Hi again, forgot to say that if I manually run the client-side rules, the mails are actually moved, not copied. But when the rules trigger by themselves the mails are only coped...

    Reply
  30. Gunnar Heikkilä says

    November 16, 2011 at 9:26 pm

    I subscribe to a lot of mailing lists, and to be able to read my mail from my phone I have a server-based rule that moves all incoming list mails to a separate Exchange folder. This way my Inbox only contains mails adressed to me personally, and is thus usable also from the phone, for instance when I am travelling and my computer is not connected to Exchange.

    However, I have limited space on my Exchange account, so I also have a further cllient-based rule that moves the mails from the Exchange list folder to a similar folder on my PST file. Thus the mail is first moved from Inbox to Exchange/List (even if computer is not connected), and then (when my computer is active) from the Exchange/List to my PST/List folder.

    This has worked brilliantly for years, but now when switching to a new computer it suddenly stopped working. I noted that my client-based rules said "on another machine", so I edited it to be "for this machine only". What happens now is that the rules are sort of triggered, but the final move from Exchange/List to PST/List is now actually done as a copy, so mails are never moved from the Exchange/List folder. This is a pain in the ...!

    Why is this happening? As I said, it worked for years... I use Outlook 2003...

    Reply
  31. Carlos M. says

    October 20, 2011 at 8:38 am

    trés bien l'information... j'ai a problem avec le rules de mon ordenadour aussi, especificament evec le servitour exchange. la solutios peut etré la creation de les rules nouvement...

    Reply
  32. henry says

    September 22, 2011 at 1:23 am

    Hi There,

    I was reading your blog with interest, and I have a question that I would be extremely grateful if you could answer.

    I have lost my client only rules, because I answered ‘The Rules on this machine do not match the rules on your Exchange Server. Only one set of rules can be kept. You will usually want to keep the rules on the server. Which rules do you want to keep?’ incorrectly and have subsequently lost all my rules.

    I should have answered the question ‘Server’ but instead answered ‘Client’ and have now lost all my rules. Is there any way I can re-trace them and restore them?

    Regards,

    Henry

    Reply
    • Diane Poremsky says

      September 22, 2011 at 1:27 am

      Sorry, no. Once the rules are cleared the only way to recover is if you happened to export a copy of your rules.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 7

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • This operation has been cancelled due to restrictions
  • Change Outlook's Programmatic Access Options
  • How to Hide or Delete Outlook's Default Folders
  • Use Public Folders In new Outlook
  • Removing Suggested Accounts in New Outlook
  • How to Delete Stuck Read Receipts
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.