Author's Posts

By default Cisco ASA devices have disallowed SMTP TLS traffic on ASA firewalls. Reason is the possibility to inspect the traffic and the ability for traffic classification. When using TLS over SMTP encryption the MTA to MTA connection is encrypted from host to host. So basicly it isn’t possible to inspect the data anymore. That’s the theory to block the TLS connections

Since the GDPR was finally approved by the EU Parliament, secured email connections has become a discussed item in much organisations. When setting up the ‘emailserver of your organisation’ relay in the mailflow connector of the O365 Exchange management both connections SMTP plain and SMTP TLS are allowed.

So my goal is to force a SMTP with TLS connection when setting up local devices and applications by using the Office 365 relay. That worked on the ASA 5505 with this configuration:


policy-map type inspect esmtp esmtp_map
parameters
allow-tls
match body line length gt 1
drop-connection
policy-map global_policy
class inspection_default
inspect esmtp esmtp_map

First set the allow-tls parameter to allow the TLS connection.
Second the match body line lenght will drop a unsecured connection that basicly can get inspected (cool!)
The second match rule will not be applied to the TLS connections cause the encryption…

Just a workaround to turn the Cisco philosophy around and only force outgoing TLS connections.

Read more

Steeds meer gebruikers gebruiken gedeelde mailboxen binnen de Office 365 Exchange Online suite. Standaard is de functionaliteit van een gedeelde mailbox beperkter als een account geschakelde mailbox.

Iets waar veel gebruikers tegenaan lopen is het centraal bewaren van verzonden mail en verwijderde items. Hieronder de oplossingen om een gedeelde mailbox in de Outlook desktop applicatie de betreffende mailboxen te gebruiken:

Laat altijd de office 365 functie uit staan:

Voor Office 2016:

HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences
DWORD: DelegateSentItemsStyle
Data Value: 1

HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General
DWORD: DelegateWastebasketStyle
Data Value: 8

Regkey example:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences]
"DelegateSentItemsStyle"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Options\General]
"DelegateWastebasketStyle"=dword:00000004

 

 

Bronnen:
https://www.slipstick.com/exchange/sending-email-from-a-secondary-exchange-mailbox/

https://support.microsoft.com/en-us/help/202517/items-that-are-deleted-from-a-shared-mailbox-go-to-the-wrong-folder-in

Read more

De laatste tijd komen er veel Windows updates binnen waaronder de update naar Windows 10 versie 1709. In kantooromgevingen zal deze update in het 1e halfjaar van 2018 binnen gaan komen.

Bekende problemen zijn:

  • Lange wachttijden (weinig aan te doen)
  • Geen internetverbinding
  • Melding dubbele versies van Windows
  • Vastlopers en diverse problemen in Microsoft Office 2010
  • Te weinig schijfruimte bij SSD

Voor die tijd focus ik mij om alle nieuwe vragen op te lossen. Bijvoorbeeld gecontroleerd installeren van de update. Neem gerust eens contact op voor meer informatie hierover.

De eerste tips bij  problemen installatie:

  • Installeer alle nieuwe updates.
  • Herstart de computer.
  • Controleer op nieuwe updates tot deze er niet meer zijn.
  • Herstart 2x de computer.
Read more

Bij het toevoegen van een nieuwe email account in Office 2016 wordt is een nieuwe functie ingebouwd: een eenvoudige wizard . Deze wizard is actief bij installaties 16.0.6769.2015 en wordt vaak geactiveerd bij een Office 365 implementatie

De traditionele wizard is daarbij uitgeschakeld. Hierdoor is het lastiger om specifieke mailinstellingen te maken. Ook is het niet meer mogelijk een ander berichten service te installeren.

Hieronder de stappen om de oorspronkelijke wizard weer te herstellen.

Sluit Outlook af

Open de Windows Register Editor met administrator rechten (hoe? zie dit artikel)

Voeg de volgende gegevens toe in het register:

locaties: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\setup
alt. locatie: HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Office\16.0\Outlook\setup
name: DisableOffice365SimplifiedAccountCreation
type: DWORD (32-bit)
value: 1

Voor het aanzetten van de eenvoudige wizard kan de waarde van DisableOffice365SimplifiedAccountCreation op 0 gezet worden.

Start daarna Outlook. Bij het aanmaken van een nieuw mailaccount zal de originele wizard weer werken:

 

Voor meer Engelstalige informatie over Simplified Account Creation zie:
https://support.microsoft.com/en-us/help/3189194/how-to-disable-simplified-account-creation-in-outlook-2016

Read more

In deze korte handleiding wordt uitgelegd hoe de Windows Register Editor geopend kan worden. In het Windows register kunnen wijzigingen gemaakt worden voor instellingen  in Windows en programma’s.

Let op! Maak alleen wijzigingen waarbij de werking bekend is. Verkeerde wijzigingen kunnen er voor zorgen dat Windows of onderdelen niet meer goed functioneren.

Zie hieronder de stappen om de register editor te openen:

  1. Klik op start
  2. Type: regedit
  3. Klik met de rechtermuisknop op regedit (zodra deze gevonden is).
  4. Klik op ‘Als administrator uitvoeren

Daarna verschijnt het volgende venster als UAC (user access control) geactiveerd is:

  • Klik hier op Ja

Daarna is de register editor geopend en kunnen er wijzigingen gemaakt worden.

Read more