diff --git a/.env.example b/.env.example index 0a5b09d..0fa159f 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ # ─── Server ────────────────────────────────────────────────────────────────── HOST=0.0.0.0 PORT=8000 -MCP_SERVER_NAME=mt-odoo-mcp +MCP_SERVER_NAME=getodoomcp MCP_LOG_LEVEL=INFO # Base URL clients use to reach this server — shown in signup/regen-key API responses @@ -39,7 +39,7 @@ SMTP_HOST= SMTP_PORT=587 SMTP_USER= SMTP_PASSWORD= -SMTP_FROM_EMAIL=no-reply@odoomcp.cloud +SMTP_FROM_EMAIL=no-reply@getodoomcp.com # Used to build the reset-password link sent to users — no trailing slash FRONTEND_BASE_URL=https://getodoomcp.com diff --git a/src/mt_odoo_mcp/config.py b/src/mt_odoo_mcp/config.py index 6407af4..9483e3d 100644 --- a/src/mt_odoo_mcp/config.py +++ b/src/mt_odoo_mcp/config.py @@ -8,7 +8,7 @@ class Settings(BaseSettings): # Server host: str = "0.0.0.0" port: int = 8000 - mcp_server_name: str = "mt-odoo-mcp" + mcp_server_name: str = "getodoomcp" mcp_log_level: str = "INFO" # Public URL (used in API responses so clients know where to connect) @@ -37,7 +37,7 @@ class Settings(BaseSettings): smtp_port: int = 587 smtp_user: str = "" smtp_password: str = "" - smtp_from_email: str = "no-reply@odoomcp.cloud" + smtp_from_email: str = "no-reply@getodoomcp.com" frontend_base_url: str = "http://localhost:3000" # Admin panel — single hardcoded operator identity, not tied to the users table diff --git a/src/mt_odoo_mcp/mailer.py b/src/mt_odoo_mcp/mailer.py index 22e844c..92e3614 100644 --- a/src/mt_odoo_mcp/mailer.py +++ b/src/mt_odoo_mcp/mailer.py @@ -19,7 +19,7 @@ def send_password_reset_email(to_email: str, reset_link: str) -> None: return msg = EmailMessage() - msg["Subject"] = "Reset your OdooMCP Cloud password" + msg["Subject"] = "Reset your GetOdooMCP password" msg["From"] = settings.smtp_from_email msg["To"] = to_email msg.set_content(