von MedienDeZign | Apr. 5, 2019 | GNU/Linux, Hardware
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
von MedienDeZign | Apr. 4, 2019 | Microsoft
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"
von MedienDeZign | Apr. 2, 2019 | Microsoft
die Anzahl X zugelassene ActiveSync Endgeräte kann man wie folgt anpassen
Get-ThrottlingPolicy | Set-ThrottlingPolicy –EASMaxDevices X
von MedienDeZign | Apr. 1, 2019 | DiesUndDas
Damit User auch unter 2008 R2 mit einem Exchange 2019 sprechen können müssen Verschlüsselungsparameter am Server angepasst werden:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisabledByDefault"=dword:00000000
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server]
"DisabledByDefault"=dword:00000000
"Enabled"=dword:00000001
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319
"SchUseStrongCrypto"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000800
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000800
[HKEY_CURRENT_User\Software\Microsoft\Windows\CurrentVersion\Internet Settings ]
"SecureProtocols"=dword:00000a80
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings ]
"SecureProtocols"=dword:00000a80
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client]
"DisabledByDefault"=deword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisabledByDefault"=dword:00000000
von MedienDeZign | März 14, 2019 | Microsoft
Office Deployment Tool herunterladen und Office2019Standard.xml erstellen
<Configuration>
<Add OfficeClientEdition="64" Channel="PerpetualVL2019">
<Product ID="Standard2019Volume" PIDKEY="#####-#####-#####-#####-#####">
<Language ID="de-de" />
</Product>
</Add>
<!-- <RemoveMSI All="True" /> -->
<!-- <Display Level="None" AcceptEULA="TRUE" /> -->
<!-- <Property Name="AUTOACTIVATE" Value="1" /> -->
</Configuration>
Download:
.\setup /download Office2019Standard.xml
Installation:
.\setup.exe /configure Office2019Standard.xml
Hier findet man das Office Customization Tool von Microsoft zur Erstellung eines xml Files.