You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MailFang saves emails in a local sqlite database. To persist the data:
130
131
131
-
When running via docker use `DATABASE_URL=sqlite:///data/mailfang.db` and mount a volume to `/data`.
132
+
When running via docker mount a volume to `/data`.
132
133
133
134
The binary defaults to `./mailfang.db`, change it by using `--database-url sqlite:///path/to/mailfang.db` or via environment variables `DATABASE_URL=sqlite:///path/to/mailfang.db`
134
135
@@ -143,7 +144,7 @@ It supports the following authorization methods:
143
144
*`LOGIN`
144
145
*`CRAM-MD5`
145
146
146
-
By default it only accepts a maximum of `4`emails at the same time. This is configurable via `--smtp-max-connections 12` or `SMTP_MAX_CONNECTIONS=12`.
147
+
By default it accepts a maximum of `4`open connections at the same time. This is configurable via `--smtp-max-connections 12` or `SMTP_MAX_CONNECTIONS=12`.
147
148
148
149
## Development
149
150
@@ -157,6 +158,14 @@ By default it only accepts a maximum of `4` emails at the same time. This is con
157
158
158
159
Run `make dev` to start the frontend and backend, access the frontend on `http://localhost:5173`.
0 commit comments