<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Preconfigure E-Mail values]]></title><description><![CDATA[<p dir="auto">I think it would be beneficial to have a few more <a href="https://github.com/miroslavpejic85/mirotalksfu/blob/main/app/src/config.template.js" target="_blank" rel="noopener noreferrer nofollow ugc">features preconfigured</a> upon installation. For example the E-Mail section:</p>
<pre><code>/**
         * Email Notification Configuration
         * ===============================
         * SMTP settings for system alerts and notifications
         *
         * Core Settings:
         * -------------
         * - alert      : Enable/disable email alerts [true/false] (default: false)
         * - host       : SMTP server address (default: 'smtp.gmail.com')
         * - port       : SMTP port (default: 587 for TLS)
         * - username   : SMTP auth username
         * - password   : SMTP auth password (store ONLY in .env)
         * - sendTo     : Recipient email for alerts
         *
         * Common Providers:
         * ----------------
         * Gmail:
         * - host: smtp.gmail.com
         * - port: 587
         *
         * Office365:
         * - host: smtp.office365.com
         * - port: 587
         *
         * SendGrid:
         * - host: smtp.sendgrid.net
         * - port: 587
         */
        email: {
            alert: process.env.EMAIL_ALERTS_ENABLED === 'true',
            host: process.env.EMAIL_HOST || 'smtp.gmail.com',
            port: parseInt(process.env.EMAIL_PORT) || 587,
            username: process.env.EMAIL_USERNAME || 'your_username',
            password: process.env.EMAIL_PASSWORD || 'your_password',
            sendTo: process.env.EMAIL_SEND_TO || 'sfu.mirotalk@gmail.com',
        },
</code></pre>
]]></description><link>https://forum.cloudron.io/topic/13745/preconfigure-e-mail-values</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 08:46:42 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/13745.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 May 2025 08:39:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Preconfigure E-Mail values on Fri, 09 May 2025 11:44:32 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://git.cloudron.io/packages/mirotalksfu-app/-/merge_requests/126" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/packages/mirotalksfu-app/-/merge_requests/126</a></p>
]]></description><link>https://forum.cloudron.io/post/106856</link><guid isPermaLink="true">https://forum.cloudron.io/post/106856</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Fri, 09 May 2025 11:44:32 GMT</pubDate></item></channel></rss>