APPSMITH_MAIL_ENABLED=true APPSMITH_MAIL_FROM={{ appsmith_email_from }} APPSMITH_MAIL_HOST={{ appsmith_email_server }} APPSMITH_MAIL_PORT={{ appsmith_email_port }} APPSMITH_MAIL_SMTP_TLS_ENABLED={{ appsmith_email_tls | ternary('true','false') }} {% if appsmith_email_user is defined and appsmith_email_pass is defined %} APPSMITH_MAIL_SMTP_AUTH=true APPSMITH_MAIL_USERNAME={{ appsmith_email_user }} APPSMITH_MAIL_PASSWORD={{ appsmith_email_pass }} {% endif %} APPSMITH_REDIS_URL={{ appsmith_redis_url }} APPSMITH_MONGODB_URI={{ appsmith_mongo_url }} APPSMITH_DISABLE_TELEMETRY=true APPSMITH_ENCRYPTION_PASSWORD={{ appsmith_encryption_pass }} APPSMITH_ENCRYPTION_SALT={{ appsmith_encryption_salt }} APPSMITH_SIGNUP_DISABLED={{ appsmith_user_signup | ternary('false','true') }} APPSMITH_ADMIN_EMAILS={{ appsmith_admin_emails | join(',') }}