Figure 6 - 3 is an example of enabling and starting the IMAP4 service. To enable
POP3, replace the references from IMAP4 to POP3.
Figure 6-3
The following example checks the status of the IMAP4 service, or all the services that start with
msexchange:
Get-Service msexchangeimap4
Get-Service msexchange*
There are a number of options for both protocols that can be fine - tuned. Most of the settings are to
change connection and authentication options. Exchange Server 2007 implements higher security out of
the box and it is generally unnecessary to change any configuration. However, to change POP3 and
IMAP4 settings, use the cmdlets Set-PopSettings and Set-ImapSettings as shown here:
Set-PopSettings [-AuthenticatedConnectionTimeout < EnhancedTimeSpan > ]
[-Banner < String > ] [-CalendarItemRetrievalOption < iCalendar | intranetUrl
| InternetUrl | Custom > ] [-DomainController < Fqdn > ] [-Instance
< Pop3AdConfiguration > ] [-LoginType < PlainTextLogin |
PlainTextAuthentication | SecureLogin > ] [-MaxCommandSize < Int32 > ]
[-MaxConnectionFromSingleIP < Int32 > ] [-MaxConnections < Int32 > ]
[-MaxConnectionsPerUser < Int32 > ] [-MessageRetrievalMimeFormat < TextOnly |
HtmlOnly | HtmlAndTextAlternative | TextEnrichedOnly |
TextEnrichedAndTextAlternative | BestBodyFormat > ]
[-MessageRetrievalSortOrder < Ascending | Descending > ] [-OwaServerUrl
< String > ] [-PreAuthenticatedConnectionTimeout < EnhancedTimeSpan > ]
[-ProxyTargetPort < Int32 > ] [-Server < ServerIdParameter > ] [-SSLBindings
< MultiValuedProperty > ] [-UnencryptedOrTLSBindings < MultiValuedProperty > ]
[-X509CertificateName < String > ]
Set-ImapSettings [-AuthenticatedConnectionTimeout < EnhancedTimeSpan > ]
[-Banner < String > ] [-CalendarItemRetrievalOption < iCalendar | intranetUrl
| InternetUrl | Custom > ] [-DomainController < Fqdn > ] [-Instance
Chapter 6: Confi guring the Client Access Server Role
169
< Imap4AdConfiguration > ] [-LoginType < PlainTextLogin |
PlainTextAuthentication | SecureLogin > ] [-MaxCommandSize < Int32 > ]
[-MaxConnectionFromSingleIP < Int32 > ] [-MaxConnections < Int32 > ]
[-MaxConnectionsPerUser < Int32 > ] [-MessageRetrievalMimeFormat < TextOnly |
HtmlOnly | HtmlAndTextAlternative | TextEnrichedOnly |
TextEnrichedAndTextAlternative | BestBodyFormat > ] [-OwaServerUrl < String > ]
[-PreAuthenticatedConnectionTimeout < EnhancedTimeSpan > ] [-ProxyTargetPort
< Int32 > ] [-Server < ServerIdParameter > ] [-ShowHiddenFoldersEnabled < $true |
$false > ] [-SSLBindings < MultiValuedProperty > ] [-UnencryptedOrTLSBindings
< MultiValuedProperty > ] [-X509CertificateName < String > ]
One setting that may need to be changed is the logintype .
Pages:
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265