RoundCubeのインストール
Web経由でメールが読めるようにRoundCudeをデフォルトでインストール。
# apt install roundcude
/etc/roundcube/config.inc.phpを編集してデフォルトホストとポートを指定しておく。
$config['default_host'] = 'localhost'; $config['smtp_port'] = 25;
/etc/roundcube/defaults.inc.phpを編集してデフォルトの言語とポートを指定しておく。
$config['language'] = 'ja_JP'; $config['smtp_port'] = 25;
/etc/roundcube/apache.confを編集してAliasをアンコメントしておく。
Alias /roundcube /var/lib/roundcube
以下のコマンドを実行してroundcudeへのアクセスを有効化する。
# a2enconf roundcube.conf
コメントを残す