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
Poslední revize Obě strany příští revize
windows:exchange [11.02.2014 21:10]
sebi [Společné pro verze]
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 =====
 +
   * estoring Mailbox Data from a Recovery Database in Exchange 2010 SP1+ -- [[http://​www.mikepfeiffer.net/​2011/​07/​restoring-mailbox-data-from-a-recovery-database-in-exchange-2010-sp1/​]]   * estoring Mailbox Data from a Recovery Database in Exchange 2010 SP1+ -- [[http://​www.mikepfeiffer.net/​2011/​07/​restoring-mailbox-data-from-a-recovery-database-in-exchange-2010-sp1/​]]
   * Backing Up Exchange 2010 using Windows Server Backup -- [[http://​www.mikepfeiffer.net/​2010/​03/​backing-up-exchange-2010-using-windows-server-backup/​]]   * Backing Up Exchange 2010 using Windows Server Backup -- [[http://​www.mikepfeiffer.net/​2010/​03/​backing-up-exchange-2010-using-windows-server-backup/​]]
Řádek 20: Řá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 ==== 
 + 
 +Zjistit jaký je stav SPF 
 +  Get-SenderIDConfig | Format-List Enabled 
 +Vypnout SPF kontrolu na příchozí poštu 
 +  Set-SenderIDConfig -Enabled $false 
 + 
 +  * Manage Sender ID: [[http://​technet.microsoft.com/​en-us/​library/​aa997136(v=exchg.150).aspx]]
 ==== POP3 ==== ==== POP3 ====
 pro povolení obyčejného přihlášení je třeba: pro povolení obyčejného přihlášení je třeba:
Řádek 36: Řádek 98:
  
 ([[http://​technet.microsoft.com/​en-us/​library/​aa997690.aspx]]) ([[http://​technet.microsoft.com/​en-us/​library/​aa997690.aspx]])
- 
- 
windows/exchange.txt · Poslední úprava: 07.03.2017 17:25 autor: vm