Obsah
Exchange Server
- 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/
Vynucené generování address listů
Get-AddressList | update-AddressList Get-GlobalAddressList | Update-GlobalAddressList Get-OfflineAddressbook | Update-OfflineAddressbook
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 }
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:
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/
- Backing Up Exchange 2010 using Windows Server Backup – http://www.mikepfeiffer.net/2010/03/backing-up-exchange-2010-using-windows-server-backup/
- Manage Exchange log files via Windows Server Backup or circular logging – http://www.techrepublic.com/blog/itdojo/manage-exchange-log-files-via-windows-server-backup-or-circular-logging/3389
- Exchange 2010 FAQ: Why is My Disk Filling Up with Log Files? – http://exchangeserverpro.com/exchange-2010-faq-disk-filling-log-files/
- Exchange Database Recovery – Using eseutil commands - Fungovalo u právníka! – http://msexchangeguru.com/2009/07/12/exchange-database-recovery-using-eseutil-commands/
- Ad ^, pozor, ISINTEG už není. Místo něj New-MailboxRepairRequest – http://eightwone.com/2010/06/14/goodbye-isinteg-hello-new-mailboxrepairrequest/
Configure a Relay Connector in Exchange Server 2013
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"
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
pro povolení obyčejného přihlášení je třeba:
Set-PopSettings -LoginType PlainTextLogin
Logování POP3/IMAP
Set-ImapSettings -Server "CAS01" -ProtocolLogEnabled $true Set-PopSettings -Server "CAS01" -ProtocolLogEnabled $true
kam se loguje?
Get-PopSettings | format-list Get-ImapSettings | format-list
a zajímá nás LogFileLocation
windows/exchange.txt · Poslední úprava: 07.03.2017 17:25 autor: vm