Skip to content

Commit

Permalink
fix(web): move roundcube log/temp files to default location
Browse files Browse the repository at this point in the history
  • Loading branch information
jeboehm committed May 3, 2022
1 parent 15ea2e3 commit 14b6d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/rootfs/var/www/html/webmail/config/config.inc.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
$config = [];
$config['smtp_log'] = false;
$config['log_dir'] = '/tmp/';
$config['temp_dir'] = '/tmp/';
$config['log_dir'] = '/var/www/html/webmail/logs';
$config['temp_dir'] = '/var/www/html/webmail/temp';
$config['imap_cache'] = 'apc';
$config['db_dsnw'] = sprintf(
'mysql://%s:%s@%s/%s',
Expand Down

0 comments on commit 14b6d4a

Please sign in to comment.