CMS “GIRVAS” release of August 27, 2025 at the “Voitsy” development stage.
Latest changes
- Implemented a mechanism for saving SMTP client configurations;
- Implemented a full-featured SMTP client;
- Added a configuration category to the CMS settings page: Email;
- Implemented a method for retrieving the domain used for sending emails;
- Added a button for sending a test email during SMTP client setup;
- Fixed a critical installer error;
- Optimized the installer template core;
- Updated the user registration and password recovery mechanisms;
- Updated the password reset mechanism;
- Updated localizations: Russian and English;
- Implemented email layout for the primary site template;
- Code refactoring;
- Minor fixes;
Migration
After updating CMS “GIRVAS”, you must create a file named configuration.smtp.php in the /core directory of the project with the following content:
$configuration = [
"host" => "mail.example.ru",
"port" => 25,
"username" => "",
"password" => "",
"domain" => "example.ru"
];
Note that SMTP client configuration is performed through the admin panel:
“CMS Settings” → “Email”.
Also ensure that the configuration.smtp.php file has the necessary permissions for the web server to work with it.
Previous release: 0.2.5 Voitsy
Comments