mail-in-a-box / mailinabox

Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.

Home Page:https://mailinabox.email/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weird output (from Roundcube?) during install

JJJ opened this issue · comments

See screenshot for wal:

jjj-2024-01-24-at-22-34-06-UTC@2x

It's just the output of the following command:

sqlite3 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite 'PRAGMA journal_mode=WAL;'

which runs at the end of the bash script: "webmail.sh".

It can be suppressed by adding "| 2>&1" at the end of that command:

sqlite3 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite 'PRAGMA journal_mode=WAL;' | 2>&1

However I'm not sure if it is necessary.