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 }} {% if appsmith_mongo_user is defined and appsmith_mongo_pass is defined and appsmith_mongo_pass != False %} {% set appsmith_mongo_url_obj = appsmith_mongo_url | urlsplit %} APPSMITH_MONGODB_URI={{ appsmith_mongo_url_obj['scheme'] }}://{{ appsmith_mongo_user }}:{{ appsmith_mongo_pass | urlencode | regex_replace('/','%2F') }}@{{ appsmith_mongo_url_obj['hostname'] }}{% if appsmith_mongo_url_obj['port'] %}:{{ appsmith_mongo_url_obj['port'] }}{% endif %}{{ appsmith_mongo_url_obj['path'] }}?{{ appsmith_mongo_url_obj['query'] }} {% else %} APPSMITH_MONGODB_URI={{ appsmith_mongo_url }} {% endif %} 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') }} {% if appsmith_signup_whitelist | length > 0 and appsmith_user_signup %} APPSMITH_SIGNUP_ALLOWED_DOMAINS={{ appsmith_signup_whitelist | join(',') }} {% endif %} APPSMITH_ADMIN_EMAILS={{ appsmith_admin_emails | join(',') }}