Difference between revisions of "Itop 3.2 Mail Notifications SMTP setup"
From Notes_Wiki
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[Ubuntu]] > [[Ubuntu 22.04]] > [[Ubuntu 22.04 Itop 3.2 by Combodo]] > [[itop 3.2 Mail Notifications SMTP setup]] | [[Main Page|Home]] > [[Ubuntu]] > [[Ubuntu 22.04]] > [[Ubuntu 22.04 Itop 3.2 by Combodo]] > [[itop 3.2 Mail Notifications SMTP setup]] | ||
== SMTP configuration == | === SMTP configuration === | ||
* login to itop console as admin user or users who have admin privileges. | * login to itop console as admin user or users who have admin privileges. | ||
Line 7: | Line 7: | ||
* Go to Configuration > General configuration | * Go to Configuration > General configuration | ||
* Find the smtp field in the file and the following entries | * Find the smtp field in the file and add the following entries | ||
<pre> | <pre> | ||
Line 17: | Line 17: | ||
'email_transport_smtp.port' => '<port-number>', | 'email_transport_smtp.port' => '<port-number>', | ||
'email_transport_smtp.username' => '<username>', | 'email_transport_smtp.username' => '<username>', | ||
</pre> | |||
* click on apply to save the changes | * click on apply to save the changes | ||
== Testing the SMTP configuration == | ''' NOTE: It is recommended to configure to send emails via the local SMTP server, which will then relay them to the final destination. This ensures retry in case of network issues, as direct sending may cause emails to fail.''' | ||
=== Testing the SMTP configuration === | |||
* Go to Configuration > Notifications | * Go to Configuration > Notifications | ||
Line 36: | Line 39: | ||
* Click '''Next''' | * Click '''Next''' | ||
* The email | * The email should be sent successfully. you should see green color text which says: | ||
<pre> | <pre> | ||
Success:The email has been sent, check your inbox for the incoming mail... | Success:The email has been sent, check your inbox for the incoming mail... | ||
</pre> | </pre> |
Latest revision as of 06:35, 20 August 2025
Home > Ubuntu > Ubuntu 22.04 > Ubuntu 22.04 Itop 3.2 by Combodo > itop 3.2 Mail Notifications SMTP setup
SMTP configuration
- login to itop console as admin user or users who have admin privileges.
- Go to Configuration > General configuration
- Find the smtp field in the file and add the following entries
'email_default_sender_address' => '<mail-id>', 'email_transport' => 'SMTP', 'email_transport_smtp.encryption' => 'tls', 'email_transport_smtp.host' => '<smtp-host>', 'email_transport_smtp.password' => '<password>', 'email_transport_smtp.port' => '<port-number>', 'email_transport_smtp.username' => '<username>',
- click on apply to save the changes
NOTE: It is recommended to configure to send emails via the local SMTP server, which will then relay them to the final destination. This ensures retry in case of network issues, as direct sending may cause emails to fail.
Testing the SMTP configuration
- Go to Configuration > Notifications
- click on the link email.test.php
- after opening the link, you should see green color text which says:
Success:PHP settings are ok to proceed with a test of the email
- In the Test recipient section, fill the To field. From field should be filled by default.
- Click Next
- The email should be sent successfully. you should see green color text which says:
Success:The email has been sent, check your inbox for the incoming mail...