Rozdíly

Zde můžete vidět rozdíly mezi vybranou verzí a aktuální verzí dané stránky.

Odkaz na výstup diff

Obě strany předchozí revize Předchozí verze
Následující verze
Předchozí verze
Následující verze Obě strany příští revize
windows:exchange [13.03.2014 17:58]
vm
windows:exchange [05.07.2016 10:11]
vm
Řádek 1: Řádek 1:
 ====== Exchange Server ====== ====== Exchange Server ======
 +  * [[windows/​Exchange 2016]]
   * [[windows/​Exchange 2013]]   * [[windows/​Exchange 2013]]
   * [[windows/​Exchange 2010]]   * [[windows/​Exchange 2010]]
 +
 +  * Exchange Server Updates: build numbers and release dates -- https://​technet.microsoft.com/​library/​hh135098(v=exchg.150)
  
   * nastavení open relay pro danou ip [[http://​exchangeserverpro.com/​exchange-2013-configure-smtp-relay-connector/​]]   * nastavení open relay pro danou ip [[http://​exchangeserverpro.com/​exchange-2013-configure-smtp-relay-connector/​]]
 http://​serverfault.com/​questions/​449000/​prevent-exchange-2013-from-skipping-large-items-toomanylargeitemspermanentexcep http://​serverfault.com/​questions/​449000/​prevent-exchange-2013-from-skipping-large-items-toomanylargeitemspermanentexcep
  
 +===== Mazání názvu události =====
 +
 +  Get-Mailbox -RecipientTypeDetails RoomMailbox -OrganizationalUnit "​OU=CZ,​OU=APSHOlding,​DC=aps-holding,​dc=com"​ | foreach { Set-CalendarProcessing -Identity $_.Alias -AddOrganizerToSubject $false -DeleteSubject $false -DeleteComments $false }
 +
 +  * https://​support.microsoft.com/​en-us/​kb/​2842288
 +
 +===== Autodiscover =====
 +
 +It has to be published to the root domain; company.com. Publishing it to www.company.com will not work. Most website hosting company’s treat requests for with or without the www part in the same way so this usually isn’t a problem.
 +
 +  http://​company.com/​autodiscover/​autodiscover.xml
 +
 +
 +It does not matter whether it is published on a http or https website. As long as the root domain matches your email domain, Outlook will query the URL.
 +
 +redirect xml:
 +  <?xml version="​1.0"​ encoding="​utf-8"​ ?>
 +  <​Autodiscover xmlns="​http://​schemas.microsoft.com/​exchange/​autodiscover/​responseschema/​2006">​
 +    <​Response xmlns="​http://​schemas.microsoft.com/​exchange/​autodiscover/​outlook/​responseschema/​2006a">​
 +      <​Account>​
 +        <​AccountType>​email</​AccountType>​
 +        <​Action>​redirectUrl</​Action>​
 +        <​RedirectUrl>​https://​mail.company.com/​autodiscover/​autodiscover.xml</​RedirectUrl>​
 +      </​Account>​
 +    </​Response>​
 +  </​Autodiscover>​
 +
 +Zdroj:
 +  * http://​www.howto-outlook.com/​howto/​autodiscoverconfiguration.htm
  
 ===== Společné pro verze ===== ===== Společné pro verze =====
Řádek 22: Řádek 54:
 důležité pro příjem od všech uživatelů je: důležité pro příjem od všech uživatelů je:
   Get-ReceiveConnector "​Receive Connector Name" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "​Ms-Exch-SMTP-Accept-Any-Recipient"​   Get-ReceiveConnector "​Receive Connector Name" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "​Ms-Exch-SMTP-Accept-Any-Recipient"​
 +
 +==== Přesun logů ====
 +**2013**
 +
 +  Get-TransportService | foreach {
 +    Set-TransportService $_.Identity -MessageTrackingLogPath "​D:​\Exchange\Logs\TransportRoles\MessageTracking"​
 +    Set-TransportService $_.Identity -ConnectivityLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\Connectivity"​
 +    Set-TransportService $_.Identity -IrmLogPath "​D:​\Exchange\Logs\IRMLogs"​
 +    Set-TransportService $_.Identity -ActiveUserStatisticsLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\ActiveUserStats"​
 +    Set-TransportService $_.Identity -ServerStatisticsLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\ServerStats"​
 +    Set-TransportService $_.Identity -ReceiveProtocolLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\ProtocolLog\SmtpReceive"​
 +    Set-TransportService $_.Identity -RoutingTableLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\Routing"​
 +    Set-TransportService $_.Identity -SendProtocolLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\ProtocolLog\SmtpSend"​
 +    Set-TransportService $_.Identity -QueueLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\QueueViewer"​
 +    Set-TransportService $_.Identity -WlmLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\WLM"​
 +    Set-TransportService $_.Identity -AgentLogPath "​D:​\Exchange\Logs\TransportRoles\Hub\AgentLog"​
 +  }
 +
 +ověřit, že to zafungovalo:​
 +  Get-TransportService |  select *logpath
  
 ==== Nastavení SPF ==== ==== Nastavení SPF ====
windows/exchange.txt · Poslední úprava: 07.03.2017 17:25 autor: vm