[email protected] wrote:
Is there are any particular reason that squirrelmail is not in ports?
License seems to be GPL. Any other issues that I am not aware of?
Thanks,
Predrag
Squirrelmail doesn't support a noframes output. It wouldn't work with my
cell phone browser. I was briefly disappointed until I discovered an
html tag I was unfamiliar with:
<noframes></noframes>
This gave me a very easy fix that works great on browsers that don't
support frames (at end of webmail.php, add noframes section):
if($ret != '') {
$output = $ret;
}
echo $output;
?>
<noframes>
<h3>Navigation</h3>
<a href="/src/left_main.php">Side Frame</a> | <a
href="/src/compose.php">Compose</a> | <a href="/src/right_main.php?PG_SHO
WALL=0&sort=0&startMessage=1&mailbox=INBOX">INBOX</a> | <a
href="/src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mail
box=INBOX.Drafts">INBOX.drafts</a> | <a
href="/src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=INBOX.Sent">INB
OX.sent</a> | <a
href="/src/right_main.php?PG_SHOWALL=0&sort=0&startMessage=1&mailbox=INBOX.Trash">INBOX.trash</a>
...
</noframes>
</frameset>
</html>
Has to be inside the <frameset> tag