forked from bulwarkmail/webmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dev.example
More file actions
49 lines (38 loc) · 1.84 KB
/
.env.dev.example
File metadata and controls
49 lines (38 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Bulwark Webmail — Development Configuration
# Copy this file to .env.local to run with the built-in mock JMAP server.
# No external mail server required — great for UI development and testing.
#
# Usage:
# cp .env.dev.example .env.local
# npm run dev
# Open http://localhost:3000 — log in with any username/password.
# =============================================================================
# Mock JMAP Server
# =============================================================================
# Enable the built-in mock JMAP server (served at /api/dev-jmap)
DEV_MOCK_JMAP=true
# Point the app at its own mock endpoint.
# IMPORTANT: This must match the origin the app runs on (default: port 3000).
# Using a different port (e.g. 3001) will cause CORS errors.
JMAP_SERVER_URL=/api/dev-jmap
# =============================================================================
# App
# =============================================================================
APP_NAME=Bulwark Webmail (Dev)
# =============================================================================
# Session & Settings Sync (optional for dev)
# =============================================================================
SESSION_SECRET=dev-secret-not-for-production
SETTINGS_SYNC_ENABLED=true
# =============================================================================
# Logging (verbose for development)
# =============================================================================
LOG_FORMAT=text
LOG_LEVEL=debug
# =============================================================================
# Login Page Customization (optional)
# =============================================================================
# LOGIN_COMPANY_NAME=Dev Team
# LOGIN_IMPRINT_URL=https://example.com/imprint
# LOGIN_PRIVACY_POLICY_URL=https://example.com/privacy
# LOGIN_WEBSITE_URL=https://example.com