<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Just figured it out. <br>
<br>
First there was a new roundcube config in /etc/httpd/conf.d that
needed to replace the existing file and then their were some tweaks
to handle running roundcube as document root. Mainly removing the
roundcubemail prefix from the rewrite rules and deleting the two
alias for /roundcubemail and /webmail.<br>
<br>
Second I found out that if your using virtual hosts you need to add
the following lines to your *.80 and *.443 virtual host config. I'm
using a virtual host on *.80 to permanently redirect all traffic to
the *.443 host.<br>
<br>
<code>"RewriteEngine On"<br>
"RewriteOptions Inherit"<br>
<br>
Thanks<br>
<br>
</code>
<div class="moz-cite-prefix">On 8/26/2014 11:09 PM, Jochen Hein
wrote:<br>
</div>
<blockquote cite="mid:87mwaqlgj3.fsf@echidna.jochen.org" type="cite">
<pre wrap="">Administrator <a class="moz-txt-link-rfc2396E" href="mailto:administrator@weeksconsulting.us"><administrator@weeksconsulting.us></a> writes:
</pre>
<blockquote type="cite">
<pre wrap="">I've been working my way through your guide and I've got a couple of
things so far. First adding $config['assets_path'] = '/assets/'; to my
roundcube config breaks roundcube such that the styles and graphics no
longer load.
</pre>
</blockquote>
<pre wrap="">
For me it works, but there seems to be an error in daniels guide.
In
<a class="moz-txt-link-freetext" href="https://docs.kolab.org/administrator-guide/upgrading-from-kolab-3.1-to-3.3.html">https://docs.kolab.org/administrator-guide/upgrading-from-kolab-3.1-to-3.3.html</a>
he writes:
</pre>
<blockquote type="cite">
<pre wrap="">add 2 more $config entries
$config['use_secure_urls'] = true;
$config['assets_path'] = '/assets/';
</pre>
</blockquote>
<pre wrap="">
If you look at the commit
<a class="moz-txt-link-freetext" href="http://git.kolab.org/pykolab/commit/?id=57a48ed5e5fed38b4bbbb088fc9425a4b407c0b0">http://git.kolab.org/pykolab/commit/?id=57a48ed5e5fed38b4bbbb088fc9425a4b407c0b0</a>,
you find:
diff --git a/share/templates/roundcubemail/config.inc.php.tpl
b/share/templates/roundcubemail/config.inc.php.tpl
index eb3f7ec..920423e 100644
--- a/share/templates/roundcubemail/config.inc.php.tpl
+++ b/share/templates/roundcubemail/config.inc.php.tpl
@@ -6,6 +6,8 @@
\$config['session_domain'] = '';
\$config['des_key'] = "$des_key";
\$config['username_domain'] = '$primary_domain';
+ \$config['use_secure_urls'] = true;
+ \$config['assets_path'] = '/roundcubemail/assets/';
\$config['mail_domain'] = '';
I've used the config from the commit and didn't notice the difference.
Jochen
</pre>
</blockquote>
<br>
</body>
</html>