Hi Jeff,
This is where I found my atmailstyle-form.css:
Code:
[root@server atmail]# ll -d .
drwxr-xr-x 13 webapps webapps 4096 Jan 24 22:53 .
[root@server atmail]# ll -d html
drwxr-xr-x 14 webapps webapps 4096 Jan 24 22:53 html
[root@server atmail]# ll -d html/english
drwxr-xr-x 7 webapps webapps 4096 Jul 30 01:41 html/english
[root@server atmail]# ll -d html/english/simple
drwxr-xr-x 2 webapps webapps 4096 Jul 30 01:41 html/english/simple
[root@server atmail]# ll -d html/english/simple/atmailstyle-form.css
-rwxr--r-- 1 webapps webapps 2084 Jul 30 01:41 html/english/simple/atmailstyle-form.css
[root@server atmail]#
so it it lookes like "simple" is missing from the path.
I did a grep through all files, and found it here:
Code:
abook.php:$var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
ldap.php:$var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
parse.php: $var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
reademail.php:$var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
search.php:$var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
util.php:$var['atmailstyle'] .= $atmail->parse("html/$atmail->Language/$atmail->LoginType/atmailstyle-form.css");
so it looks like the "LoginType" is blank.
I found it's set in libs/Atmail/Global.php
Code:
if ($settings['LoginType'] == 'ajax')
{
$LoginType = 'simple';
$Ajax = '1';
}
else {
$Ajax = '0';
$LoginType = $settings['LoginType'];
}
as for what it means, and how the $settings['LoginType'] is being set, I'm not too sure..
I did however find:
libs/Atmail/Configs/Config.php
to have this line:
perhaps try changing it to:
to override the internal default.. and perhaps changes the checks to force it to be "simple" (I'm not sure, this is a guess).
Or perhaps the browser is different? I'm not sure. I'm using Chrome along with Atmail 1.04, and it all seems to be working ok.
John