Tag Archives: mail flow rules

How to automatically remove emoji from emails on Exchange Server?

[Update]: This article was first published on September 7, 2015. It was updated to reflect the current UI of the program and the latest developments in Exchange Server.

While some people think that emoji are a must in everyday email communication, others see them as unprofessional and juvenile. Consequently, some companies want to get rid of emoticons to retain a more formal style. Unfortunately, Exchange Server does not provide sufficient tools to filter out or replace unwanted strings of characters. The only way through is to use a third-party solution.

CodeTwo Exchange Rules Pro is a centrally managed tool that allows you to control email flow on on-premises Exchange. Its main service is deployed directly on the server’s communication pipeline and requires only a few touches from an administrator to be configured and start working. This feature-rich toolbox allows users to swiftly modify incoming and outgoing messages by simply setting up appropriate rules. Creating a rule to eliminate emoji from your Exchange email is a piece of cake.

How to automatically remove emojis from emails on Exchange Server?

Continue reading

How to have an Office 365 email signature inserted only into new emails?

[Update]: This blog post was first published on July 13, 2017. It’s been updated to reflect the current steps required for a proper mail flow rule setup in Exchange Online.

Do your email signatures pile up at the bottom of your conversation threads? Well, I have bad news and good news for you. The bad news is that this is the default setup for Microsoft 365 / Office 365 email signatures. The mail flow rule responsible for appending email signatures can insert them at the very top or at the very bottom of the entire email thread. The good news is that there are ways to work around this. Let’s get right into the details.

Signature inserted only into new emails

Continue reading

How to create company-wide email signatures and disclaimers in Office 365

How to create company-wide email signatures and disclaimers in Office 365

[Update]: This blog post was first published on July 7, 2016. It’s been updated to reflect the current steps required for a proper configuration in the Exchange admin center.

In this article, you can find out how to set up your own server-level automatic email signature or disclaimer in Office 365. Like most of today’s email signature solutions, it supports HTML content such as tables, images and font formatting, but in contrast to e.g. Google Workspace (G Suite), it also allows for automatic personalization of individual signatures. However, there is no option to e.g. insert the signature directly below the latest reply/forward, or preview it in the user’s mailbox.

Continue reading

Active Directory user attribute placeholders for central signature management

List of Active Directory user attributes for email signatures

[Update]: This article was first published on October 19, 2015. It was updated to include more useful information.

Active Directory (AD) and Microsoft Entra ID (Azure Active Directory or AAD) are databases that contain a lot of information about a company, especially its employees. There is a lot of different ways to access this data and even more ways in which you can use it. Pretty much every app and service for Microsoft 365 or Exchange Server uses at least some information from this data treasury to offer better collaboration, automation, etc. In a nutshell, AD user attributes are there to make your job easier. That’s why it might help to know which information is easily accessible and how to get it from your user directory.

In this article, I’ll focus on using Active Directory data to personalize a global email signature across an organization.

What is a global email signature?

A global email signature is a way to manage email signatures in an organization. The general idea is to use one signature template and automatically personalize it for all users. Thanks to this, every mailbox can get a professional, company-controlled signature, without the need for users to do anything. Personal info and contact data used to personalize the template is taken straight from Active Directory (for Exchange Server) or Microsoft Entra ID (for Exchange Online).

There are two most common ways to create a global email signature in Microsoft 365 and Exchange Server:

It’s crucial to know what user attributes are available for signatures and how exactly to use them. And that’s precisely what you’ll learn below.

Active Directory user attributes in signatures: available placeholders for mail flow rules and VBScript

When deploying email signatures for multiple users from a central place, you need a way to easily include these users’ personal information like names, titles, departments, addresses, etc. in the signatures. This is achieved using placeholders integrated with a central directory that stores users’ personal details (e.g. Active Directory), and including the placeholders in signature templates.

Both Microsoft Exchange Server’s and Microsoft 365’s built-in email signature management solutions do exactly that, i.e. download data from Active Directory (or Office 365 user directory) into the signature based on who is the sender of the given email.

Unfortunately, Microsoft 365 and on-premises Exchange do not support all AD user account attributes. However, those which are available should be enough to create a simple email signature.

Here is the full list of attributes supported by Exchange’s and Office 365’s email signature management solutions. I divided them into sections that correspond with tabs in the Active Directory Users and Computers object Properties window. In the right column I’ve put the Active Directory Domain Services names of attributes (use them when deploying the signature template via a VBS script).

IMPORTANT: When setting up email signatures in hub transport/mail flow rules in Exchange 2019, 201620132010 or Microsoft 365, remember to enclose the ADAttribute (left column of below table) with double percent signs, like shown in the table. The “%%” part is not for show.

List of Active Directory user attributes available for email signature rules and VBScript

Active Directory attributes in Exchange and Office 365 email signatures

Used in mail flow rulesUsed in a VBScript
General
%%DisplayName%%AD DS: displayName
%%FirstName%%AD DS: givenName
%%Initials%%AD DS: initials
%%LastName%%AD DS: sn
%%Office%%AD DS: physicalDeliveryOfficeName
%%PhoneNumber%%AD DS: telephoneNumber
%%OtherPhoneNumber%%AD DS: otherTelephone
%%Email%%AD DS: mail
Address
%%Street%%AD DS: streetAddress
%%POBox%%AD DS: postOfficeBox
%%City%%AD DS: l (as in "location")
%%State%%AD DS: st
%%ZipCode%%AD DS: postalCode
%%Country%%AD DS: co
Account
%%UserLogonName%%AD DS: userPrincipalName
Telephones
%%HomePhoneNumber%%AD DS: homePhone
%%OtherHomePhoneNumber%%AD DS: otherHomePhone
%%PagerNumber%%AD DS: pager
%%MobileNumber%%AD DS: mobile
%%FaxNumber%%AD DS: facsimileTelephoneNumber
%%OtherFaxNumber%%AD DS: otherFacsimileTelephoneNumber
%%Notes%%AD DS: info
Organization
%%Title%%AD DS: title
%%Department%%AD DS: department
%%Company%%AD DS: company
%%Manager%%Returns the common name (cn) of the object defined
in the manager AD DS attribute
Attribute Editor*
CustomAttribute1-15
(e.g. %%CustomAttribute1%%)
AD DS: extensionAttribute1 through extensionAttribute15

Note: Some Active Directory attributes (e.g. otherTelephone, otherHomePhone, otherFacsimileTelephoneNumber and postOfficeBox) support multiple values. In the case where more than 1 value is provided, the output will include all values separated by semicolons.

* To see this tab in AD Users and Computers, switch on Advanced Features. Custom attributes can also be defined via Exchange Management Console (in users’ Mailbox Properties) or Exchange Management Shell.

Advanced email signature management

While mail flow rules and VBScript let you manage email signatures in a company, they are not ideal. No matter if you use them in on-premises Exchange or Microsoft 365, they have their dark sides. I list some of them below:

Mail flow rule signatures

  • Need to be managed by IT.
  • Offer no signature editor (you need to use raw HTML code).
  • Signatures are added either at the very top or the very bottom of an email conversation. In other words, they work well(ish) only for a first message and not for replies and forwards.
  • Only online images can be used. Most email clients block those images by default.
  • There’s no way for users to see their signatures before they send an email or even in Sent Items. This usually results in more tickets to IT (‘my signature is missing’ / ’I have double signatures’).
  • No way to convert emails to HTML format. Simply speaking – if users send emails from mobiles, they’ll only get a broken plain text signature.

That’s only a few of the limitations. For a complete list of limitations, see this article.

VBScript email signatures

  • Work only for Outlook for Windows.
  • Require you to have at least some scripting skills.
  • Require a local Active Directory.
  • Are difficult to update.

If you want to change your email signature management method to easy, effective and free from those limitations, check out those tools.