[imp] Problems during installation (and question).

Lic. Rodolfo Gonzalez Gonzalez rodolfo@equinoxe.g-networks.net
Thu, 4 Oct 2001 17:13:32 -0600 (CST)


On Thu, 4 Oct 2001, Alex L wrote:
> Update horde and IMP from CVS. http://www.horde.org/source/

Ok, I'll do so.

> The code is the documentation. If you look in horde/lib/Auth/*.php, they will
> show at the beginning of the code required values for the array options.

I'll read them :)

Thanks.
Rodolfo.



>From nlin@newton.berkeley.edu Date: Thu,  4 Oct 2001 16:21:13 -0700
Return-Path: <nlin@newton.berkeley.edu>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 61293 invoked from network); 4 Oct 2001 23:21:13 -0000
Received: from webmail.me.berkeley.edu (128.32.142.69)
  by clark.horde.org with SMTP; 4 Oct 2001 23:21:13 -0000
Received: (from apache@localhost)
	by webmail.me.berkeley.edu (8.11.6/8.11.6) id f94NLDR17202
	for imp@lists.horde.org; Thu, 4 Oct 2001 16:21:13 -0700
X-Authentication-Warning: webmail.me.berkeley.edu: apache set sender to nlin@newton.berkeley.edu using -f
Received: from okepler.me.berkeley.edu ( [okepler.me.berkeley.edu])
	as user nlin@maxwell.berkeley.edu by webmail.me.berkeley.edu with HTTP;
	Thu,  4 Oct 2001 16:21:12 -0700
Message-ID: <1002237672.3bbceee900d66@webmail.me.berkeley.edu>
Date: Thu,  4 Oct 2001 16:21:13 -0700
From: nlin@newton.berkeley.edu
To: imp@lists.horde.org
References: <1002234571.3bbce2cba2db6@webmail.me.berkeley.edu>
In-Reply-To: <1002234571.3bbce2cba2db6@webmail.me.berkeley.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Originating-IP: 128.32.142.3
Subject: Re: last login date always wrong

Welp, I've figured out the problem.  Though I'm not quite understanding why it 
behaves thus. 

I'd changed imp/prefs.php:

// last login time of user
$_prefs['last_login'] = array(
    'value' => 1,
    'locked' => true,
    'shared' => false,
    'type' => 'number'
);

default value is 0.  I confused it w/ show_last_login.  What is this used for?  
It isn't referenced in any of the $prefGroups

nancy

Quoting nlin@newton.berkeley.edu:

> Hi
> Status: RO
> X-Status: 
> X-Keywords:                 
> X-UID: 77
> 
> I have the latest 2.3.7 imp CVS.  
> 
> For some reason, the last login time is always set to 
> "Wednesday, December 31, 1969, 4:00:01 PM PST" and the maintenance page
> always 
> asks if you want to rename the sent-mail folder to sent-mail-dec-1969.
> Any ideas why?  I have made numerous config changes.  Would that have
> caused 
> this?
> 
> thanks!
> 
> nancy
> 




>From jan@horde.org Date: Fri,  5 Oct 2001 01:29:59 +0200
Return-Path: <jan@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 62861 invoked from network); 4 Oct 2001 23:34:10 -0000
Received: from mailout01.sul.t-online.com (HELO mailout01.sul.t-online.de) (194.25.134.80)
  by clark.horde.org with SMTP; 4 Oct 2001 23:34:10 -0000
Received: from fwd07.sul.t-online.de 
	by mailout01.sul.t-online.de with smtp 
	id 15pI0G-00071t-02; Fri, 05 Oct 2001 01:34:08 +0200
Received: from linux.wg.de (320034214675-0001@[217.80.111.25]) by fmrl07.sul.t-online.com
	with esmtp id 15pI09-1g4BYvC; Fri, 5 Oct 2001 01:34:01 +0200
Received: from localhost (localhost [127.0.0.1])
	by linux.wg.de (8.11.0/8.11.0/SuSE Linux 8.11.0-0.4) with ESMTP id f94NTxc19950
	for <imp@lists.horde.org>; Fri, 5 Oct 2001 01:29:59 +0200
Received: from 192.168.60.1 ( [192.168.60.1])
	as user jan@mail.wg.de by linux.wg.de with HTTP;
	Fri,  5 Oct 2001 01:29:59 +0200
Message-ID: <1002238199.3bbcf0f74543f@linux.wg.de>
Date: Fri,  5 Oct 2001 01:29:59 +0200
From: Jan Schneider <jan@horde.org>
To: imp@lists.horde.org
References: <1002234571.3bbce2cba2db6@webmail.me.berkeley.edu> <1002237672.3bbceee900d66@webmail.me.berkeley.edu>
In-Reply-To: <1002237672.3bbceee900d66@webmail.me.berkeley.edu>
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Sender: 320034214675-0001@t-dialin.net
Subject: Re: [imp] Re: last login date always wrong

Zitat von nlin@newton.berkeley.edu:

> Welp, I've figured out the problem.  Though I'm not quite understanding why
> it 
> behaves thus. 
> 
> I'd changed imp/prefs.php:
> 
> // last login time of user
> $_prefs['last_login'] = array(
>     'value' => 1,
>     'locked' => true,
>     'shared' => false,
>     'type' => 'number'
> );
> 
> default value is 0.  I confused it w/ show_last_login.  What is this used
> for?  

As you already discovered it contains the last login time.

> It isn't referenced in any of the $prefGroups

Right, it should rather be of type 'implicit' than 'number' because it's only 
used internally.

Thanks for that hint,

Jan.
 
> nancy
> 
> Quoting nlin@newton.berkeley.edu:
> 
> > Hi
> > Status: RO
> > X-Status: 
> > X-Keywords:                 
> > X-UID: 77
> > 
> > I have the latest 2.3.7 imp CVS.  
> > 
> > For some reason, the last login time is always set to 
> > "Wednesday, December 31, 1969, 4:00:01 PM PST" and the maintenance page
> > always 
> > asks if you want to rename the sent-mail folder to sent-mail-dec-1969.
> > Any ideas why?  I have made numerous config changes.  Would that have
> > caused 
> > this?
> > 
> > thanks!
> > 
> > nancy
> > 
> 
> 
> 
> -- 
> IMP mailing list: http://horde.org/imp/
> Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe@lists.horde.org
> 
> 


:::::::::::::::::::::::::::::::::::::::: 
AMMMa AG - discover your knowledge
:::::::::::::::::::::::::::
Detmolder Str. 25-33 :: D-33604 Bielefeld
fon +49.521.96878-0 :: fax  +49.521.96878-20
http://www.ammma.de
::::::::::::::::::::::::::::::::::::::::::::::


>From nlin@newton.berkeley.edu Date: Thu,  4 Oct 2001 16:42:22 -0700
Return-Path: <nlin@newton.berkeley.edu>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 64008 invoked from network); 4 Oct 2001 23:42:23 -0000
Received: from webmail.me.berkeley.edu (128.32.142.69)
  by clark.horde.org with SMTP; 4 Oct 2001 23:42:23 -0000
Received: (from apache@localhost)
	by webmail.me.berkeley.edu (8.11.6/8.11.6) id f94NgMH17239
	for imp@lists.horde.org; Thu, 4 Oct 2001 16:42:22 -0700
X-Authentication-Warning: webmail.me.berkeley.edu: apache set sender to nlin@newton.berkeley.edu using -f
Received: from okepler.me.berkeley.edu ( [okepler.me.berkeley.edu])
	as user nlin@maxwell.berkeley.edu by webmail.me.berkeley.edu with HTTP;
	Thu,  4 Oct 2001 16:42:22 -0700
Message-ID: <1002238942.3bbcf3dec63e5@webmail.me.berkeley.edu>
Date: Thu,  4 Oct 2001 16:42:22 -0700
From: nlin@newton.berkeley.edu
To: imp@lists.horde.org
References: <1002234571.3bbce2cba2db6@webmail.me.berkeley.edu> <1002237672.3bbceee900d66@webmail.me.berkeley.edu> <1002238199.3bbcf0f74543f@linux.wg.de>
In-Reply-To: <1002238199.3bbcf0f74543f@linux.wg.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Originating-IP: 128.32.142.3
Subject: Re: [imp] Re: last login date always wrong

So a value whose type is implicit shouldn't be changed at all even though this 
is in conf/prefs.php?

Or if that's not true, what did it do in this instance when I changed it to 1?
nancy


Quoting Jan Schneider <jan@horde.org>:

> Zitat von nlin@newton.berkeley.edu:
> 
> > Welp, I've figured out the problem.  Though I'm not quite
> understanding why
> > it 
> > behaves thus. 
> > 
> > I'd changed imp/prefs.php:
> > 
> > // last login time of user
> > $_prefs['last_login'] = array(
> >     'value' => 1,
> >     'locked' => true,
> >     'shared' => false,
> >     'type' => 'number'
> > );
> > 
> > default value is 0.  I confused it w/ show_last_login.  What is this
> used
> > for?  
> 
> As you already discovered it contains the last login time.
> 
> > It isn't referenced in any of the $prefGroups
> 
> Right, it should rather be of type 'implicit' than 'number' because it's
> only 
> used internally.
> 
> Thanks for that hint,
> 
> Jan.
>  
> > nancy
> > 
> > Quoting nlin@newton.berkeley.edu:
> > 
> > > Hi
> > > Status: RO
> > > X-Status: 
> > > X-Keywords:                 
> > > X-UID: 77
> > > 
> > > I have the latest 2.3.7 imp CVS.  
> > > 
> > > For some reason, the last login time is always set to 
> > > "Wednesday, December 31, 1969, 4:00:01 PM PST" and the maintenance
> page
> > > always 
> > > asks if you want to rename the sent-mail folder to
> sent-mail-dec-1969.
> > > Any ideas why?  I have made numerous config changes.  Would that
> have
> > > caused 
> > > this?
> > > 
> > > thanks!
> > > 
> > > nancy
> > > 
> > 
> > 
> > 
> > -- 
> > IMP mailing list: http://horde.org/imp/
> > Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> > Frequently Asked Questions: http://horde.org/faq/
> > To unsubscribe, mail: imp-unsubscribe@lists.horde.org
> > 
> > 
> 
> 
> :::::::::::::::::::::::::::::::::::::::: 
> AMMMa AG - discover your knowledge
> :::::::::::::::::::::::::::
> Detmolder Str. 25-33 :: D-33604 Bielefeld
> fon +49.521.96878-0 :: fax  +49.521.96878-20
> http://www.ammma.de
> ::::::::::::::::::::::::::::::::::::::::::::::
> 
> -- 
> IMP mailing list: http://horde.org/imp/
> Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe@lists.horde.org
>