- Enterprise Search Guide: other versions:
- Overview
- Getting started
- Web crawler
- Connectors
- Engines and content sources
- Programming language clients
- Search UI
- App Search and Workplace Search
- Enterprise Search server
- Run using Docker images
- Run using downloads (packages)
- Troubleshooting
- Monitoring
- Read-only mode
- Management APIs
- Monitoring APIs
- Read-only mode API
- Configuration
- Configuring encryption keys
- Configuring a mail service
- Configuring SSL/TLS
- Upgrading and migrating
- Upgrading self-managed deployments
- Upgrading from Enterprise Search 7.x
- Upgrading from Enterprise Search 7.11 and earlier
- Migrating from App Search on Elastic Cloud
- Migrating from App Search on Swiftype.com
- Migrating from self-managed App Search
- Logs and logging
- Release notes
- 8.4.3 release notes
- 8.4.2 release notes
- 8.4.1 release notes
- 8.4.0 release notes
- 8.3.3 release notes
- 8.3.2 release notes
- 8.3.1 release notes
- 8.3.0 release notes
- 8.2.3 release notes
- 8.2.2 release notes
- 8.2.1 release notes
- 8.2.0 release notes
- 8.1.3 release notes
- 8.1.2 release notes
- 8.1.1 release notes
- 8.1.0 release notes
- 8.0.1 release notes
- 8.0.0 release notes
- 8.0.0-rc2 release notes
- 8.0.0-rc1 release notes
- 8.0.0-beta1 release notes
- 8.0.0-alpha2 release notes
- 8.0.0-alpha1 release notes
IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Configure a mail service
editConfigure a mail service
editConfigure a mailer to send user invitations and password resets. Refer to the following examples.
Local mail service example
editemail.account: enabled: true smtp: auth: plain # Can be plain, login, or CRAM-MD5. starttls.enable: false # Whether emails are sent encapsulated in TLS, or not. host: 127.0.0.1 port: 25 user: mail@example.com password: secure-pass-phrase email_defaults: from: noreply@example.com # The 'from' address is the address from which emails are sent.
Gmail example
editemail.account: enabled: true smtp: auth: plain starttls.enable: true host: smtp.gmail.com port: 587 user: example@gmail.com password: secure-pass-phrase email_defaults: from: noreply@gmail.com
Outlook example
editemail.account: enabled: true smtp: auth: login starttls.enable: true host: smtp-mail.outlook.com port: 587 user: example@outlook.com password: secure-pass-phrase email_defaults: from: noreply@outlook.com
Was this helpful?
Thank you for your feedback.