TSmtpCli.AuthType

From Overbyte
Revision as of 17:43, 19 February 2006 by Arno (talk | contribs)
Jump to navigation Jump to search

Main page -> ICS component reference -> TSmtpCli.AuthType

Definition

property AuthType: TSmtpAuthType;

Inheritance from TCustomSmtpCli.AuthType

Description

Property AuthType specifies the authentication methode to be used with method Auth. Possible values are:

smtpAuthNone,    smtpAuthPlain,     smtpAuthLogin,
smtpAuthCramMD5, smtpAuthCramSha1,  smtpAuthAutoSelect

Most of them are self-explaining, except smtpAuthAutoSelect which causes the component to perform a smart detection of most secure authentication method possible.

Example

SmtpCli1.AuthType := smtpAuthAutoSelect;

Best practices

Recommended setting is smtpAuthAutoSelect.

How to