OS X Mojave Installationsmedium erstellen

USB Stick rein -> löschen und eine BEZEICHNUNG geben -> OS X Update laden, aber nicht installieren -> folgendes als root ausführen

sudo /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/BEZEICHNUNG  --applicationpath /Applications/Install\ macOS\ Mojave.app 

Exchange 2019 – MoMT exceeded the maximum of 500 objects of type Folder

Man kann per Registry den Wert erhöhen, im folgenden Beispiel auf 3000 (6x Standardwert):

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem\MaxObjsPerMapiSession]
"objtFolder"=dword:00000bb8
"objtFolderView"=dword:00000bb8
"objtMessage"=dword:000005dc
"objtMessageView"=dword:00000bb8
"objtAttachment"=dword:00000bb8
"objtAttachmentView"=dword:00000bb8

Anzahl der Ordner eines Postfachs überprüfen:

Get-MailboxFolderStatistics USER@DOMAIN.DOM | Sort-Object FolderPath -Descending   | ft Name, ItemsInFolder, FolderPath > C:_ORDNERNAMEUSER.csv

Sophos UTM – SMTP / POP3 Proxy startet nicht

Startet der SMTP oder POP3 Proxy auf der Sophos UTM nicht, kann ein Neuaufbau der Postgres Datenbank helfen:

/etc/init.d/postgresql92 rebuild

und dann:

psql -Upostgres -c"reindex database smtp;" smtp 
psql -Upostgres -c"reindex database pop3;" pop3 
psql -Ureporting -c"reindex database reporting;" reporting 
psql -Upostgres -c"vacuum;" smtp 
psql -Upostgres -c"vacuum;" pop3 
psql -Ureporting -c"vacuum;" reporting 

Office 365 – Shared Mailbox – Postfach – Sprache – Zeitzone

Stimmt bei einem (freigegebenen) Postfach bei Office 365 die Sprache und Zeitzone nicht kann man sie wie folgt auf der Powershell einstellen.

Überprüfen:

Get-Mailbox | Where-Object {$_.RecipientTypeDetails -eq "SharedMailbox"} | Get-MailboxRegionalConfiguration

Auf deutsch einstellen

Set-MailboxRegionalConfiguration -id USER@DOMAIN.DOM -LocalizeDefaultFolderName:$true -Language de-DE –TimeZone "W. Europe Standard Time"