[imp] Identification
Odhiambo Washington
wash@wananchi.biz
Tue, 16 Apr 2002 17:40:20 +0300
---------------------- multipart/mixed attachment
* Jan Schneider <jan@horde.org> [20020412 13:48]: wrote:
> Zitat von Odhiambo Washington <wash@wananchi.biz>:
>
> > * Jan Schneider <jan@horde.org> [20020412 01:15]: wrote:
> > > Zitat von Odhiambo Washington <wash@wananchi.biz>:
> > >
> > > > Hiya,
> > > >
> > > > IMP-3.0RC1, when I login it shows "Email for @wananchi.com" - how do
> > I
> > > > make
> > > > it "Email for wash@wananchi.com" ??
> > >
> > > WHERE does it show that?
> > >
> > > Jan.
> >
> >
> > On the window title after login.
>
> Sorry, but that doesn't come from Horde or IMP, you must have specified it
> yourself in registry.php.
>
I found it in /usr/local/www/htdocs/virtual/horde/imp/frames.php - a patch
by Atif Ghaffar <aghaffar@developer.ch> - seems that there is something not
right somewhere...
-Wash
--
Odhiambo Washington <wash@wananchi.com> "The box said 'Requires
Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,'
Tel: 254 2 313985-9 Fax: 254 2 313922 so I installed FreeBSD."
GSM: 254 72 743 223 GSM: 254 733 744 121 This sig is McQ! :-)
++
Experience is that marvelous thing that enables you recognize a mistake
when you make it again.
-- F. P. Jones
---------------------- multipart/mixed attachment
<?php
/*
* imp/frames.php,
* This file is part of MP patches for IMP
* Copyright 2002 Atif Ghaffar <aghaffar@developer.ch>
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
*/
define('IMP_BASE', dirname(__FILE__));
require_once IMP_BASE . '/lib/base.php';
if ($conf['compress_pages']) {
include_once 'HTTP/Compress.php';
HTTP_Compress::start();
}
?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link REL="shortcut icon" HREF="/favicon.ico" TYPE="image/x-icon">
<title>Email for <?= $prefs->getValue("fullname") ?>@<?= $imp['maildomain'] ?>
</title>
<frameset border=0 frameborder=1 rows=<? echo $conf['frames']['size']['menu'] ?>,*>
<frame frameborder=0 name="<? echo $conf['frames']['name']['menu']?>" src="frames_menu.php" marginheight=0 marginwidth=0 scrolling=no>
<?php if ($prefs->getValue("show_folders")): ?>
<frameset border=none frameborder=0 cols=<? echo $conf['frames']['size']['navigator'] ?>,*>
<frame name="<? echo $conf['frames']['name']['navigator']?>" src="folders.php" scrolling=auto>
<?php else: ?>
<frameset border=none frameborder=0 cols=*>
<?php endif; ?>
<frameset border=none frameborder=0 rows="<? echo $conf['frames']['size']['mailbox']?>,<? echo $conf['frames']['size']['reader']?>">
<frame name="<? echo $conf['frames']['name']['mailbox']?>" src="mailbox.php<? echo (isset($mailbox) && $mailbox)? "?mailbox=$mailbox":"?mailbox=INBOX" ?>" scrolling=auto>
<frame name="<? echo $conf['frames']['name']['reader']?>" src="prefs.php" scrolling=auto>
</frameset>
</frameset>
</frameset>
</head>
</html>
---------------------- multipart/mixed attachment--