Exchange 2013 - Remove warning text from outgoing email bodyOutlook - Junk Email - Add an email to the safe senders for entire company?Catch-All for MS Exchange 2013 SP1 on specific Authoritative DomainsExchange 2013 server not receiving mail from the internetExchange mail flow rules for signaturesExchange 2013 OWA: Always download remote content from domain/senderExchange 2013 Transport Agent service fails consitantlyExchange 2013 Receive Connector Scoping and Open RelayExchange 2013 -Prevent Spam emails from outside but with my internal domain nameRemoving Word in Subject of Email Exchange 2013Exchange limit repetitive messages
Is White controlling this game?
Meaning of 'lose their grip on the groins of their followers'
How does an ordinary object become radioactive?
How come the nude protesters were not arrested?
Bent Peugeot Carbolite 103 Frame
You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one
Longest bridge/tunnel that can be cycled over/through?
How to communicate to my GM that not being allowed to use stealth isn't fun for me?
What is the purpose of the goat for Azazel, as opposed to conventional offerings?
How to manually rewind film?
Is it expected that a reader will skip parts of what you write?
Electricity free spaceship
What makes Ada the language of choice for the ISS's safety-critical systems?
Did Milano or Benatar approve or comment on their namesake MCU ships?
Can Rydberg constant be in joules?
With Ubuntu 18.04, how can I have a hot corner that locks the computer?
Determining fair price for profitable mobile app business
Overlapping String-Blocks
How can I make some of my chapters "come to life"?
Importance of Building Credit Score?
What ways have you found to get edits from non-LaTeX users?
Generate basis elements of the Steenrod algebra
Zeros of the Hadamard product of holomorphic functions
Why didn't Voldemort recognize that Dumbledore was affected by his curse?
Exchange 2013 - Remove warning text from outgoing email body
Outlook - Junk Email - Add an email to the safe senders for entire company?Catch-All for MS Exchange 2013 SP1 on specific Authoritative DomainsExchange 2013 server not receiving mail from the internetExchange mail flow rules for signaturesExchange 2013 OWA: Always download remote content from domain/senderExchange 2013 Transport Agent service fails consitantlyExchange 2013 Receive Connector Scoping and Open RelayExchange 2013 -Prevent Spam emails from outside but with my internal domain nameRemoving Word in Subject of Email Exchange 2013Exchange limit repetitive messages
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I created a transport-rule in our Exchange server 2013 where it will add a warning text on top of email-body to all external incoming emails. This is to alert employees about potential risks in external emails when it has website-links and attachments which may be harmful. The text is as follows:
Text
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Now, when user will reply to the email, I want it to be remove when Exchange process it to send. How can I remove the warning text from outgoing emails in Exchange? I was looking for something in rules, but there is none I could find.
Any help will be appreciated. Thanks.
exchange-2013 spam-filter
add a comment |
I created a transport-rule in our Exchange server 2013 where it will add a warning text on top of email-body to all external incoming emails. This is to alert employees about potential risks in external emails when it has website-links and attachments which may be harmful. The text is as follows:
Text
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Now, when user will reply to the email, I want it to be remove when Exchange process it to send. How can I remove the warning text from outgoing emails in Exchange? I was looking for something in rules, but there is none I could find.
Any help will be appreciated. Thanks.
exchange-2013 spam-filter
add a comment |
I created a transport-rule in our Exchange server 2013 where it will add a warning text on top of email-body to all external incoming emails. This is to alert employees about potential risks in external emails when it has website-links and attachments which may be harmful. The text is as follows:
Text
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Now, when user will reply to the email, I want it to be remove when Exchange process it to send. How can I remove the warning text from outgoing emails in Exchange? I was looking for something in rules, but there is none I could find.
Any help will be appreciated. Thanks.
exchange-2013 spam-filter
I created a transport-rule in our Exchange server 2013 where it will add a warning text on top of email-body to all external incoming emails. This is to alert employees about potential risks in external emails when it has website-links and attachments which may be harmful. The text is as follows:
Text
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Now, when user will reply to the email, I want it to be remove when Exchange process it to send. How can I remove the warning text from outgoing emails in Exchange? I was looking for something in rules, but there is none I could find.
Any help will be appreciated. Thanks.
exchange-2013 spam-filter
exchange-2013 spam-filter
asked Aug 2 '17 at 4:52
arifrarifr
2117
2117
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There is no such rule. The MS Exchange transport rules can only add such a string but couldn´t remove them.
I would do the following:
- Setup a Proxy (Squid and SquidGuard or something like that)
- Start using an GPO which block the attachments you would see as "non secure" as written here
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
add a comment |
How to remove the yellow caution bar (not why, or if you should)
In Outlook, press alt + F11 (to open Microsoft VBA)
Paste the following into ThisOutlookSession:
Option Explicit
Sub InsertHyperLink(MyMail As mailItem)
Dim body As String
body = MyMail.HTMLBody
body = Replace(body, "background-color:#FFEB9C; width:100%; border-style: solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:'Calibri'; color:Black; text-align: left;", "", 1, 1, vbTextCompare)
body = Replace(body, "CAUTION:", "", 1, 1, vbTextCompare)
body = Replace(body, "This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>", "", 1, 1, vbTextCompare)
MyMail.HTMLBody = body
MyMail.Save
End Sub
Edit the registry and add the following DWORD
HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookSecurity DWORD: EnableUnsafeClientMailRules Value: 1
Enable all macros in Trust Center (or sign this one)
Create a Custom Rule executing the macro
File / Manage Rules & Alerts / New rule / "Apply rule on messages I receive"/ "Run a script" / Click on the text that says "a script" / “ThisOutlookSession”
Test, Done!
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f866411%2fexchange-2013-remove-warning-text-from-outgoing-email-body%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is no such rule. The MS Exchange transport rules can only add such a string but couldn´t remove them.
I would do the following:
- Setup a Proxy (Squid and SquidGuard or something like that)
- Start using an GPO which block the attachments you would see as "non secure" as written here
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
add a comment |
There is no such rule. The MS Exchange transport rules can only add such a string but couldn´t remove them.
I would do the following:
- Setup a Proxy (Squid and SquidGuard or something like that)
- Start using an GPO which block the attachments you would see as "non secure" as written here
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
add a comment |
There is no such rule. The MS Exchange transport rules can only add such a string but couldn´t remove them.
I would do the following:
- Setup a Proxy (Squid and SquidGuard or something like that)
- Start using an GPO which block the attachments you would see as "non secure" as written here
There is no such rule. The MS Exchange transport rules can only add such a string but couldn´t remove them.
I would do the following:
- Setup a Proxy (Squid and SquidGuard or something like that)
- Start using an GPO which block the attachments you would see as "non secure" as written here
edited Aug 2 '17 at 9:51
answered Aug 2 '17 at 6:09
BastianWBastianW
2,68341533
2,68341533
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
add a comment |
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
ok, thanks. is there any other way I can remove the warning text? the purpose is to show warning to employees when they would open an external email. now if the email is legitimate, when they reply to it, the warning line should be removed. is there any way to show the warning text in message header in Outlook, not on the body? this is something we are trying to implement for 500+ employees.
– arifr
Aug 2 '17 at 8:39
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
Not out of the box. But why didn´t you start implementing a proxy for the internet traffic? You could then show a disclaimer once the user click on that. On top of that you could use blacklists from known bad URLs and you could save some traffic and speed up connections while stuff is cached (search for Debian Squid and SquidGuard; its quite easy to set that up). For attachments you could block some via GPOsee here so that the users couldn´t click on it.
– BastianW
Aug 2 '17 at 9:48
add a comment |
How to remove the yellow caution bar (not why, or if you should)
In Outlook, press alt + F11 (to open Microsoft VBA)
Paste the following into ThisOutlookSession:
Option Explicit
Sub InsertHyperLink(MyMail As mailItem)
Dim body As String
body = MyMail.HTMLBody
body = Replace(body, "background-color:#FFEB9C; width:100%; border-style: solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:'Calibri'; color:Black; text-align: left;", "", 1, 1, vbTextCompare)
body = Replace(body, "CAUTION:", "", 1, 1, vbTextCompare)
body = Replace(body, "This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>", "", 1, 1, vbTextCompare)
MyMail.HTMLBody = body
MyMail.Save
End Sub
Edit the registry and add the following DWORD
HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookSecurity DWORD: EnableUnsafeClientMailRules Value: 1
Enable all macros in Trust Center (or sign this one)
Create a Custom Rule executing the macro
File / Manage Rules & Alerts / New rule / "Apply rule on messages I receive"/ "Run a script" / Click on the text that says "a script" / “ThisOutlookSession”
Test, Done!
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
add a comment |
How to remove the yellow caution bar (not why, or if you should)
In Outlook, press alt + F11 (to open Microsoft VBA)
Paste the following into ThisOutlookSession:
Option Explicit
Sub InsertHyperLink(MyMail As mailItem)
Dim body As String
body = MyMail.HTMLBody
body = Replace(body, "background-color:#FFEB9C; width:100%; border-style: solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:'Calibri'; color:Black; text-align: left;", "", 1, 1, vbTextCompare)
body = Replace(body, "CAUTION:", "", 1, 1, vbTextCompare)
body = Replace(body, "This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>", "", 1, 1, vbTextCompare)
MyMail.HTMLBody = body
MyMail.Save
End Sub
Edit the registry and add the following DWORD
HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookSecurity DWORD: EnableUnsafeClientMailRules Value: 1
Enable all macros in Trust Center (or sign this one)
Create a Custom Rule executing the macro
File / Manage Rules & Alerts / New rule / "Apply rule on messages I receive"/ "Run a script" / Click on the text that says "a script" / “ThisOutlookSession”
Test, Done!
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
add a comment |
How to remove the yellow caution bar (not why, or if you should)
In Outlook, press alt + F11 (to open Microsoft VBA)
Paste the following into ThisOutlookSession:
Option Explicit
Sub InsertHyperLink(MyMail As mailItem)
Dim body As String
body = MyMail.HTMLBody
body = Replace(body, "background-color:#FFEB9C; width:100%; border-style: solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:'Calibri'; color:Black; text-align: left;", "", 1, 1, vbTextCompare)
body = Replace(body, "CAUTION:", "", 1, 1, vbTextCompare)
body = Replace(body, "This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>", "", 1, 1, vbTextCompare)
MyMail.HTMLBody = body
MyMail.Save
End Sub
Edit the registry and add the following DWORD
HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookSecurity DWORD: EnableUnsafeClientMailRules Value: 1
Enable all macros in Trust Center (or sign this one)
Create a Custom Rule executing the macro
File / Manage Rules & Alerts / New rule / "Apply rule on messages I receive"/ "Run a script" / Click on the text that says "a script" / “ThisOutlookSession”
Test, Done!
How to remove the yellow caution bar (not why, or if you should)
In Outlook, press alt + F11 (to open Microsoft VBA)
Paste the following into ThisOutlookSession:
Option Explicit
Sub InsertHyperLink(MyMail As mailItem)
Dim body As String
body = MyMail.HTMLBody
body = Replace(body, "background-color:#FFEB9C; width:100%; border-style: solid; border-color:#9C6500; border-width:1pt; padding:2pt; font-size:10pt; line-height:12pt; font-family:'Calibri'; color:Black; text-align: left;", "", 1, 1, vbTextCompare)
body = Replace(body, "CAUTION:", "", 1, 1, vbTextCompare)
body = Replace(body, "This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.</div>", "", 1, 1, vbTextCompare)
MyMail.HTMLBody = body
MyMail.Save
End Sub
Edit the registry and add the following DWORD
HKEY_CURRENT_USERSoftwareMicrosoftOffice15.0OutlookSecurity DWORD: EnableUnsafeClientMailRules Value: 1
Enable all macros in Trust Center (or sign this one)
Create a Custom Rule executing the macro
File / Manage Rules & Alerts / New rule / "Apply rule on messages I receive"/ "Run a script" / Click on the text that says "a script" / “ThisOutlookSession”
Test, Done!
answered Dec 17 '18 at 7:02
danieldaniel
991
991
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
add a comment |
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
@GeraldSchneider This is how I removed the yellow message from the body of the message when replying to an email while working at some company that enforced this weird policy that does seem disrespectful to anyone you email back and forth with.
– daniel
Dec 17 '18 at 8:39
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f866411%2fexchange-2013-remove-warning-text-from-outgoing-email-body%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown