Como adicionar um aviso se houver um anexo? - Exchange 2010

2

Atualmente, temos um aviso de isenção extremamente longo com dois parágrafos. O primeiro parágrafo trata do conteúdo do email em si. O segundo parágrafo trata dos anexos que saem (normalmente desenhos do AutoCAD) e como eles devem ser usados / modificados e são propriedade da minha empresa, etc., etc.

Gostaria de dividir o aviso de isenção em duas partes - uma que é sempre anexada e uma que só é anexada se houver um anexo na mensagem.

Isso é possível? Pesquisei no Google, no Technet e aqui no ServerFault, mas não consegui encontrar uma resposta.

    
por Tekz08 17.09.2013 / 00:36

1 resposta

3

Você precisará de duas Regras de transporte com um < href="http://technet.microsoft.com/pt-br/library/bb124352(v=exchg.141).aspx"> aviso legal cada:

# Our disclaimer, with HTML and fancy predicates:
$DisclaimerText = @"
<div style="color: #00FF00; font-family: 'Comic-sans'">
We, here at %%Company%% hate the environment, and want YOU to invest in additional storage!
Please take these extra bytes of HTML as a sign of our gratitude towards your continued support of natural resource depletion
*Patent forms*, *legal threats*, *copyright voodo* Trademark pending
</div><div><img src="http://images.malware.biz/cutepuppy.jpg"/></div>"@

# Create a new transport rule for mails sent from inside the organization and out
New-TransportRule -Name "LegalDisclaimer" -ApplyHtmlDisclaimerText $DisclaimerText -FromScope InOrganization -SentToScope NotInOrganization

Os itens acima serão aplicados a todos os e-mails enviados de seus funcionários para destinatários externos.

Para aplicar um segundo aviso somente no caso de um anexo existir, teste se o tamanho do anexo exceder 0 bytes:

# Another disclaimer, with HTML and fancy predicates:
$AttachmentText = @"
<div style="color: #FF0000; font-family: 'Comic-sans'">
We, here at %%Company%% still hate the environment, and want YOU to invest in even MORE additional storage!
Please accept this huge attachment in our course of world domination. Thanks in Advance
*Patent forms*, *legal threats*, *copyright voodo* Trademark pending
</div><div><img src="http://images.malware.biz/cutepuppywithhat.jpg"/></div>"@

# Create a new transport rule with the same scopes, but for only emails with attachments
New-TransportRule -Name "AttachmentDisclaimer" -AttachmentSizeOver 0 -ApplyHtmlDisclaimerText $AttachmentText -FromScope InOrganization -SentToScope NotInOrganization

Mas ... não use, isenções de responsabilidade são lame

    
por 17.09.2013 / 03:43