From sramirez at etsetb.upc.edu Mon Oct 2 03:39:39 2006
From: sramirez at etsetb.upc.edu (=?ISO-8859-1?Q?Sergio_Ram=EDrez?=)
Date: Mon, 02 Oct 2006 12:39:39 +0200
Subject: [horde] Configuring Horde
Message-ID: <4520EC6B.7060903@etsetb.upc.edu>
Hi
I have installed horde 3.1.3 following the steps in
http://www.horde.org/horde/docs/?f=INSTALL.html
I go to the setup page in http://my_server/horde/, and hit on the buton
"Generate Horde Configuration". Then, the browser can't write in the
conf.php file, but I copy/paste the generated file in conf.php.
The problem is when I refresh the page or horde whith the new
configuration. The browser starts to send and receive information for a
several minutes (I think in a loop), and then it finishes whith a blank
page.
Is this a problem of my installation or my congiguration?
How can I solve this?
Thank you.
PD: I have attached my conf.php file.
--
Sergio Ram?rez
Becari SI-Etsetb
-------------- next part --------------
A non-text attachment was scrubbed...
Name: conf.php
Type: application/x-php
Size: 3262 bytes
Desc: not available
Url : http://lists.horde.org/archives/horde/attachments/20061002/2ba0070e/conf.bin
From mccordl at southwestern.edu Mon Oct 2 07:24:14 2006
From: mccordl at southwestern.edu (Laura McCord)
Date: Mon, 02 Oct 2006 09:24:14 -0500
Subject: [horde] Notification push with a link
Message-ID: <4521210E.40700@southwestern.edu>
I want to be able to add a link to a notification however using sprintf
will only write out the string and not actually produce the link as
printf would. Does anyone have any suggestions?
This is what I am trying to do:
$notification->push(sprintf(_('test'), $url
),'horde.success');
Thanks,
Laura
From chuck at horde.org Mon Oct 2 08:57:50 2006
From: chuck at horde.org (Chuck Hagenbuch)
Date: Mon, 02 Oct 2006 11:57:50 -0400
Subject: [horde] Notification push with a link
In-Reply-To: <4521210E.40700@southwestern.edu>
References: <4521210E.40700@southwestern.edu>
Message-ID: <20061002115750.pd4oc7bg7ok40w0g@technest.org>
Quoting Laura McCord :
> I want to be able to add a link to a notification however using sprintf
> will only write out the string and not actually produce the link as
> printf would. Does anyone have any suggestions?
>
> This is what I am trying to do:
> $notification->push(sprintf(_('test'), $url
> ),'horde.success');
This has nothing to do with sprintf vs. printf. You need to tell the
notification system that you're sending HTML content - and since
you're doing so, you are responsible for escaping the data in the link
(to avoid javascript injection, etc.).
You want the third arg to push:
$notification->push($link, 'horde.success', array('content.raw'));
-chuck
--
"we are plastered to the windshield of the bus that is time." - Chris
From mccordl at southwestern.edu Mon Oct 2 09:08:17 2006
From: mccordl at southwestern.edu (Laura McCord)
Date: Mon, 02 Oct 2006 11:08:17 -0500
Subject: [horde] Notification push with a link
In-Reply-To: <20061002115750.pd4oc7bg7ok40w0g@technest.org>
References: <4521210E.40700@southwestern.edu>
<20061002115750.pd4oc7bg7ok40w0g@technest.org>
Message-ID: <45213971.30301@southwestern.edu>
Thanks Chris! That worked perfectly.
-Laura
Chuck Hagenbuch wrote:
> Quoting Laura McCord :
>
>> I want to be able to add a link to a notification however using sprintf
>> will only write out the string and not actually produce the link as
>> printf would. Does anyone have any suggestions?
>>
>> This is what I am trying to do:
>> $notification->push(sprintf(_('test'), $url
>> ),'horde.success');
>
> This has nothing to do with sprintf vs. printf. You need to tell the
> notification system that you're sending HTML content - and since
> you're doing so, you are responsible for escaping the data in the link
> (to avoid javascript injection, etc.).
>
> You want the third arg to push:
> $notification->push($link, 'horde.success', array('content.raw'));
>
> -chuck
>
> --"we are plastered to the windshield of the bus that is time." - Chris
> --Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: horde-unsubscribe at lists.horde.org
From mccordl at southwestern.edu Mon Oct 2 09:12:32 2006
From: mccordl at southwestern.edu (Laura McCord)
Date: Mon, 02 Oct 2006 11:12:32 -0500
Subject: [horde] Notification push with a link
In-Reply-To: <45213971.30301@southwestern.edu>
References: <4521210E.40700@southwestern.edu> <20061002115750.pd4oc7bg7ok40w0g@technest.org>
<45213971.30301@southwestern.edu>
Message-ID: <45213A70.1070008@southwestern.edu>
I'm so sorry. I meant Chuck not Chris.
Again, thank you very much for your help.
Laura McCord wrote:
> Thanks Chris! That worked perfectly.
>
> -Laura
>
> Chuck Hagenbuch wrote:
>
>> Quoting Laura McCord :
>>
>>
>>> I want to be able to add a link to a notification however using sprintf
>>> will only write out the string and not actually produce the link as
>>> printf would. Does anyone have any suggestions?
>>>
>>> This is what I am trying to do:
>>> $notification->push(sprintf(_('test'), $url
>>> ),'horde.success');
>>>
>> This has nothing to do with sprintf vs. printf. You need to tell the
>> notification system that you're sending HTML content - and since
>> you're doing so, you are responsible for escaping the data in the link
>> (to avoid javascript injection, etc.).
>>
>> You want the third arg to push:
>> $notification->push($link, 'horde.success', array('content.raw'));
>>
>> -chuck
>>
>> --"we are plastered to the windshield of the bus that is time." - Chris
>> --Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
>> Frequently Asked Questions: http://horde.org/faq/
>> To unsubscribe, mail: horde-unsubscribe at lists.horde.org
>>
From jan at horde.org Mon Oct 2 13:25:05 2006
From: jan at horde.org (Jan Schneider)
Date: Mon, 02 Oct 2006 22:25:05 +0200
Subject: [horde] Questions on mysql scripts
In-Reply-To: <002001c6e5d8$efe3faf0$7d0a0a0a@bennett1>
References: <002001c6e5d8$efe3faf0$7d0a0a0a@bennett1>
Message-ID: <20061002222505.yaiox26mp0kw8wss@neo.wg.de>
Zitat von "John H. Bennett III" :
> 2. What does the horde_sessionhandler do for me.
If you don't know it, you don't need it.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From bennettj at thebennetthome.com Mon Oct 2 16:30:26 2006
From: bennettj at thebennetthome.com (John H. Bennett III)
Date: Mon, 2 Oct 2006 18:30:26 -0500
Subject: [horde] Questions on mysql scripts
In-Reply-To: <20061002222505.yaiox26mp0kw8wss@neo.wg.de>
Message-ID: <004001c6e67a$bd624350$7d0a0a0a@bennett1>
Thanks,
John
-----Original Message-----
From: horde-bounces at lists.horde.org [mailto:horde-bounces at lists.horde.org]
On Behalf Of Jan Schneider
Sent: Monday, October 02, 2006 3:25 PM
To: horde at lists.horde.org
Subject: Re: [horde] Questions on mysql scripts
Zitat von "John H. Bennett III" :
> 2. What does the horde_sessionhandler do for me.
If you don't know it, you don't need it.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
--
Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: horde-unsubscribe at lists.horde.org
From wiskbroom at hotmail.com Tue Oct 3 08:32:45 2006
From: wiskbroom at hotmail.com (Vadim Pushkin)
Date: Tue, 03 Oct 2006 15:32:45 +0000
Subject: [horde] Upgrade To Latest Horde (cvs) And Horde Config Shows Blank
Message-ID:
A few days ago, I posted a question on why I am getting a blank when I go to
Administration>Setup>Horde.
I just realized that I need to add or delete the following into my mysql
database:
# ADD # CREATE INDEX pref_uid_idx ON horde_prefs (pref_uid);
# ADD # CREATE INDEX pref_scope_idx ON horde_prefs (pref_scope);
# DELETE # datatree_updated TIMESTAMP,
Could someone please help me to set/create/delete these?
Also, could this be the source of my problems that I posted last week?
Thanks!
.vp
Vadim Anatoly Pushkin
-- The Ukranian Stallion --
From flgomes at fazenda.sp.gov.br Tue Oct 3 08:51:03 2006
From: flgomes at fazenda.sp.gov.br (Fabio Lourenco Gomes)
Date: Tue, 03 Oct 2006 12:51:03 -0300
Subject: [horde] Multiple notepads
Message-ID: <20061003125103.osce4brx4cokss04@webmail01.sede.fazenda.sp.gov.br>
Hi list,
I'm trying to avoid users to have more than one Notepad. Looking in
prefs.php I found that option:
>
> // default notepad
> // Set locked to true if you don't want users to have multiple notepads.
> $_prefs['default_notepad'] = array(
> 'value' => Auth::getAuth() ? Auth::getAuth() : 0,
> 'locked' => true,
> 'shared' => true,
> 'type' => 'implicit'
> );
>
But even after I changed that option, users still can create new
notepads using the "My Notepads" menu option.
Why that isn't working? is there any way to block the creation of
new notepads other than the user's default?
Best regards,
F?bio Gomes
-------------------------------------------------
Esta mensagem foi enviada utilizando o novo
Webmail da Secretaria da Fazenda de Sao Paulo
DTI - Departamento de Tecnologia da Informacao
From samerk1 at gmail.com Tue Oct 3 09:02:52 2006
From: samerk1 at gmail.com (samer khalil)
Date: Tue, 3 Oct 2006 19:02:52 +0300
Subject: [horde] remote mysql db
Message-ID:
Hello,
I am using horde 3.1.3 with imp 4.1.3 on 2 diferent web servers with a
single Mysql db on one of them.
When am logged in to the sever hosting the database eveything goes well.
On the second web server in have in my conf.php:
$conf['sql']['persistent'] = false;
$conf['sql']['hostspec'] = '192.168.1.1';
$conf['sql']['username'] = 'horde';
$conf['sql']['password'] = 'xxxxxxxx';
$conf['sql']['port'] = 3306;
$conf['sql']['protocol'] = 'tcp';
$conf['sql']['database'] = 'horde';
$conf['sql']['charset'] = 'iso-8859-1';
$conf['sql']['phptype'] = 'mysql';
from the command line mysql connection works fine:
# mysql -u horde -p -h 192.168.1.1
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 162 to server version: 5.0.22-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
When I attempt to login in through horde, i get the home page but never logs
in. It keeps looping.
On the Auth server the user is authenticating correcty and a Db connection
is openned with the original server (it shows in netstat -nta)
any idea how i can solve this ?
Thanks
SK
From dahlberg at bucknell.edu Tue Oct 3 11:59:14 2006
From: dahlberg at bucknell.edu (Michael Dahlberg)
Date: Tue, 03 Oct 2006 14:59:14 -0400
Subject: [horde] Problems with turba contact edits
Message-ID: <20061003145914.2rcpzszm0440cs40@webmail.bucknell.edu>
Pardon my cross-posting. I've just upgraded our horde/imp/turba/ingo
installation (turba 2.0.2 to turba 2.1.2, latest stable versions of
all other modules) and my users are reporting that when they try to
edit the information of a contact (search for a contact in a localsql
addressbook, once displayed, click on it to view details or edit) an
error message is displayed stating that the contact does not exist.
However, since it is displayed, it does exist. If the edit button is
clicked rather than the contact link, a blank page results. This
behavior is observed in both Firefox and IE.
This is identical to a problem that was reported two weeks ago:
http://thread.gmane.org/gmane.comp.horde.turba/3462/focus=3463
Was a solution ever offered?
Thanks,
Mike
From daniel.ramaley at DRAKE.EDU Tue Oct 3 12:12:49 2006
From: daniel.ramaley at DRAKE.EDU (Daniel A. Ramaley)
Date: Tue, 03 Oct 2006 14:12:49 -0500
Subject: [horde] Internet Explorer privacy setting issues
In-Reply-To: <200609281102.26622.daniel.ramaley@drake.edu>
References: <200609281102.26622.daniel.ramaley@drake.edu>
Message-ID: <200610031412.49687.daniel.ramaley@drake.edu>
On Thursday 28 September 2006 11:02, Daniel A. Ramaley wrote:
>I have a Red Hat Linux webmail server (Apache 2.0.52, PHP 4.3.9) with
>the latest released versions of Horde, Imp, Ingo, Kronolith, Passwd,
>and Turba. In the last few weeks a number of problems have been
> brought to my attention that are related to users of Internet
> Explorer having difficulty sending messages with Imp. When the users
> compose a message and hit send they either get a blank white page or
> they are returned to a new message composition page (everything they
> typed is gone). In either case the message is not actually sent.
>
>Through testing we have determined that the problem depends on IE's
>privacy settings. It seems that if the privacy settings are at
> "Medium" or lower that everything works. But if set to "Medium High"
> or above, Horde has problems. That setting controls how the browser
> handles cookies. Has anyone else noticed this problem? If so, is
> there a solution besides telling our users to modify their browser
> settings?
I managed to find a solution to the problem, and am documenting it here
for the archives. I needed to define a privacy policy on the server and
configure Apache to add an extra http header describing a short version
of the policy. For more details on how to do this, i suggest searching
for "P3P".
I found these sites helpful in reading about P3P:
http://www.w3.org/TR/p3pdeployment
http://www.awardsites.com/tutorials/w3c/p3p_privacy-01.htm
http://www.w3.org/P3P/
http://www.sitepoint.com/article/p3p-cookies-ie6/2
http://www.p3pwriter.com/LRN_111.asp
http://p3ptoolbox.org/guide/section2.shtml#I
------------------------------------------------------------------------
Dan Ramaley Dial Center 118, Drake University
Network Programmer/Analyst 2407 Carpenter Ave
+1 515 271-4540 Des Moines IA 50311 USA
From vjl at vjl.org Tue Oct 3 12:24:19 2006
From: vjl at vjl.org (Vince LaMonica)
Date: Tue, 3 Oct 2006 15:24:19 -0400 (EDT)
Subject: [horde] SMTP auth with TLS?
Message-ID:
Hi all,
I am having problems getting IMP to send mail, and as this is configured
in Horde, I thought I'd ask for some hints here.
I'm running postfix with the following smtpd/tls config:
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks
permit_sasl_authenticated reject_unauth_destination
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/postfix/certs/server.pem
smtpd_tls_key_file = $smtpd_tls_cert_file
smtpd_tls_CAfile = /etc/postfix/certs/ca2.pem
smtpd_tls_CApath = /etc/postfix/certs
smtpd_tls_auth_only = yes
tls_random_source = dev:/dev/urandom
smtpd_tls_received_header = yes
smtpd_tls_session_cache_database = btree:/etc/postfix/smtpd_scache
smtpd_tls_session_cache_timeout = 3600s
Postfix answers an EHLO with the following:
250-mail.example.com
250-PIPELINING
250-SIZE 21000000
250-VRFY
250-ETRN
250-STARTTLS
250 8BITMIME
However, IMP does not appear to like that, as the postfix logs show it
disconnecting directly after submitting the EHLO. SMTH-AUTH is configured
correctly in Postfix, using a signed certificate so that userids/passwds
are transmitted encrypted. However, no matter how I configure Horde's
"mailer" settings [plain, login, cram, digest, best], I still get this
error. From the horde log:
Oct 03 15:13:55 HORDE [error] [imp] LOGIN authentication failure [SMTP:
SMTP server does no support authentication (code: 250, response:
mail.example.com
PIPELINING
SIZE 21000000
VRFY
ETRN
STARTTLS
8BITMIME)] [on line 1042 of
"/var/www/html/www.example.com/commonmail/imp/compose.php"]
[btw, *small* error - typo in the error text - "no" should be "not"].
The error message is also a bit deseptive - postfix has been configured to
*only* accept smtp auth [with TLS], yet the error makes it sound like it
is not properly configured.
BTW, /usr/local/lib/sasl2/smtpd.conf is:
#global params
log_level: 3
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN
saslauthd_path: /var/state/saslauthd/mux
Does Horde/IMP support smth auth over TLS?
TIA,
/vjl/
--
Vince J. LaMonica Knowledge is knowing a street is one way.
vjl at cullasaja.com <*> Wisdom is still looking in both directions.
When there's nothing else to read: http://w3log.vjl.org/
From vjl at vjl.org Tue Oct 3 13:43:15 2006
From: vjl at vjl.org (Vince LaMonica)
Date: Tue, 3 Oct 2006 16:43:15 -0400 (EDT)
Subject: [horde] SMTP auth with TLS?
In-Reply-To:
References:
Message-ID:
On Tue, 3 Oct 2006, Vince LaMonica wrote:
}
} Oct 03 15:13:55 HORDE [error] [imp] LOGIN authentication failure [SMTP: SMTP
} server does no support authentication (code: 250, response: mail.example.com
} PIPELINING
} SIZE 21000000
} VRFY
} ETRN
} STARTTLS
} 8BITMIME)] [on line 1042 of
} "/var/www/html/www.example.com/commonmail/imp/compose.php"]
}
} [btw, *small* error - typo in the error text - "no" should be "not"].
Just a quick FYI - the typo is on line 427 of SMTP.php - the pear Mail
extension [which appears to be co-written by Chuck Hagenbuch of
Horde.org].
/vjl/
From jan at horde.org Tue Oct 3 16:56:35 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 01:56:35 +0200
Subject: [horde] SMTP auth with TLS?
In-Reply-To:
References:
Message-ID: <20061004015635.krqcnv6a3480848o@neo.wg.de>
Zitat von Vince LaMonica :
> However, IMP does not appear to like that, as the postfix logs show
> it disconnecting directly after submitting the EHLO. SMTH-AUTH is
> configured correctly in Postfix, using a signed certificate so that
> userids/passwds are transmitted encrypted. However, no matter how I
> configure Horde's "mailer" settings [plain, login, cram, digest,
> best], I still get this error. From the horde log:
>
> Oct 03 15:13:55 HORDE [error] [imp] LOGIN authentication failure
> [SMTP: SMTP server does no support authentication (code: 250,
> response: mail.example.com
Make sure to have the latest Mail and Net_SMTP packages, there was a
bug in one of these. I experienced the same a while back.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From bigmanjohn at hotmail.com Tue Oct 3 20:47:13 2006
From: bigmanjohn at hotmail.com (John Chiu)
Date: Wed, 4 Oct 2006 11:47:13 +0800
Subject: [horde] occassional SMTP problem
Message-ID:
hi all
i've had horde install at /var/www/html/mail and my users access horde at
www.abc.com/mail
since there are so many junk mails with helo www.abc.com, so i had
configured my smtp to reject all smtp requests with helo www.abc.com and
helo abc.com
the problem that arises, is that sometimes IMP users can't send mail because
of the helo command rejection. sometimes this problem happens but most of
the time there's no such problem at all.
pls help. my SMTP is on the same machine with horde. i use postfix and
dovecot. the config for imap is set to 127.0.0.1
thx a lot
From jan at horde.org Wed Oct 4 01:30:37 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 10:30:37 +0200
Subject: [horde] remote mysql db
In-Reply-To:
References:
Message-ID: <20061004103037.wjvkqf0pw4c8w44k@neo.wg.de>
Zitat von samer khalil :
> Hello,
> I am using horde 3.1.3 with imp 4.1.3 on 2 diferent web servers with a
> single Mysql db on one of them.
> When am logged in to the sever hosting the database eveything goes well.
>
> On the second web server in have in my conf.php:
>
> $conf['sql']['persistent'] = false;
> $conf['sql']['hostspec'] = '192.168.1.1';
> $conf['sql']['username'] = 'horde';
> $conf['sql']['password'] = 'xxxxxxxx';
> $conf['sql']['port'] = 3306;
> $conf['sql']['protocol'] = 'tcp';
> $conf['sql']['database'] = 'horde';
> $conf['sql']['charset'] = 'iso-8859-1';
> $conf['sql']['phptype'] = 'mysql';
>
> from the command line mysql connection works fine:
> # mysql -u horde -p -h 192.168.1.1
> Enter password:
> Welcome to the MySQL monitor. Commands end with ; or \g.
> Your MySQL connection id is 162 to server version: 5.0.22-standard
> Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
> mysql>
>
> When I attempt to login in through horde, i get the home page but never logs
> in. It keeps looping.
And do you have any hint that this is related to the remote db server?
> On the Auth server the user is authenticating correcty and a Db connection
> is openned with the original server (it shows in netstat -nta)
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From jan at horde.org Wed Oct 4 01:32:22 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 10:32:22 +0200
Subject: [horde] occassional SMTP problem
In-Reply-To:
References:
Message-ID: <20061004103222.vxa5a6ecqskc8oo4@neo.wg.de>
Zitat von John Chiu :
> hi all
>
> i've had horde install at /var/www/html/mail and my users access horde at
> www.abc.com/mail
>
> since there are so many junk mails with helo www.abc.com, so i had
> configured my smtp to reject all smtp requests with helo www.abc.com and
> helo abc.com
>
> the problem that arises, is that sometimes IMP users can't send mail because
> of the helo command rejection. sometimes this problem happens but most of
> the time there's no such problem at all.
>
> pls help. my SMTP is on the same machine with horde. i use postfix and
> dovecot. the config for imap is set to 127.0.0.1
Don't use SMTP.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From g.apeldoorn at argoss.nl Wed Oct 4 02:03:25 2006
From: g.apeldoorn at argoss.nl (Ger Apeldoorn)
Date: Wed, 4 Oct 2006 11:03:25 +0200
Subject: [horde] occassional SMTP problem
In-Reply-To: <20061004103222.vxa5a6ecqskc8oo4@neo.wg.de>
References:
<20061004103222.vxa5a6ecqskc8oo4@neo.wg.de>
Message-ID: <200610041103.26105.g.apeldoorn@argoss.nl>
> > since there are so many junk mails with helo www.abc.com, so i had
> > configured my smtp to reject all smtp requests with helo www.abc.com and
> > helo abc.com
I dont think that is a very subtle spam fighting mechanism. I've got very good
results with spamassassin and Razor2.
Good luck,
Ger.
From samerk1 at gmail.com Wed Oct 4 03:26:08 2006
From: samerk1 at gmail.com (samer khalil)
Date: Wed, 4 Oct 2006 13:26:08 +0300
Subject: [horde] remote mysql db
In-Reply-To: <20061004103037.wjvkqf0pw4c8w44k@neo.wg.de>
References:
<20061004103037.wjvkqf0pw4c8w44k@neo.wg.de>
Message-ID:
I actually have a Mysql running on server2, and when i modify conf,php to
connect to the local Mysql all works fine.
It starts looking when ask horde to connect to the remote sql.
SK
On 10/4/06, Jan Schneider wrote:
>
> Zitat von samer khalil :
>
> > Hello,
> > I am using horde 3.1.3 with imp 4.1.3 on 2 diferent web servers with a
> > single Mysql db on one of them.
> > When am logged in to the sever hosting the database eveything goes well.
> >
> > On the second web server in have in my conf.php:
> >
> > $conf['sql']['persistent'] = false;
> > $conf['sql']['hostspec'] = ' 192.168.1.1';
> > $conf['sql']['username'] = 'horde';
> > $conf['sql']['password'] = 'xxxxxxxx';
> > $conf['sql']['port'] = 3306;
> > $conf['sql']['protocol'] = 'tcp';
> > $conf['sql']['database'] = 'horde';
> > $conf['sql']['charset'] = 'iso-8859-1';
> > $conf['sql']['phptype'] = 'mysql';
> >
> > from the command line mysql connection works fine:
> > # mysql -u horde -p -h 192.168.1.1
> > Enter password:
> > Welcome to the MySQL monitor. Commands end with ; or \g.
> > Your MySQL connection id is 162 to server version: 5.0.22-standard
> > Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
> > mysql>
> >
> > When I attempt to login in through horde, i get the home page but never
> logs
> > in. It keeps looping.
>
> And do you have any hint that this is related to the remote db server?
>
> > On the Auth server the user is authenticating correcty and a Db
> connection
> > is openned with the original server (it shows in netstat -nta)
>
> Jan.
>
> --
> Do you need professional PHP or Horde consulting?
> http://horde.org/consulting/
>
> --
> Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: horde-unsubscribe at lists.horde.org
>
From samerk1 at gmail.com Wed Oct 4 04:34:38 2006
From: samerk1 at gmail.com (samer khalil)
Date: Wed, 4 Oct 2006 14:34:38 +0300
Subject: [horde] remote mysql db
In-Reply-To:
References:
<20061004103037.wjvkqf0pw4c8w44k@neo.wg.de>
Message-ID:
It is all working fine now.
It worked when i removed $conf['sql]['port']=3306; from conf.php !
allthough Mysql is listenning on this port.
tks guys.
SK
On 10/4/06, samer khalil wrote:
>
> I actually have a Mysql running on server2, and when i modify conf,php to
> connect to the local Mysql all works fine.
> It starts looking when ask horde to connect to the remote sql.
>
> SK
>
> On 10/4/06, Jan Schneider wrote:
> >
> > Zitat von samer khalil :
> >
> > > Hello,
> > > I am using horde 3.1.3 with imp 4.1.3 on 2 diferent web servers with
> > a
> > > single Mysql db on one of them.
> > > When am logged in to the sever hosting the database eveything goes
> > well.
> > >
> > > On the second web server in have in my conf.php:
> > >
> > > $conf['sql']['persistent'] = false;
> > > $conf['sql']['hostspec'] = ' 192.168.1.1';
> > > $conf['sql']['username'] = 'horde';
> > > $conf['sql']['password'] = 'xxxxxxxx';
> > > $conf['sql']['port'] = 3306;
> > > $conf['sql']['protocol'] = 'tcp';
> > > $conf['sql']['database'] = 'horde';
> > > $conf['sql']['charset'] = 'iso-8859-1';
> > > $conf['sql']['phptype'] = 'mysql';
> > >
> > > from the command line mysql connection works fine:
> > > # mysql -u horde -p -h 192.168.1.1
> > > Enter password:
> > > Welcome to the MySQL monitor. Commands end with ; or \g.
> > > Your MySQL connection id is 162 to server version: 5.0.22-standard
> > > Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
> > > mysql>
> > >
> > > When I attempt to login in through horde, i get the home page but
> > never logs
> > > in. It keeps looping.
> >
> > And do you have any hint that this is related to the remote db server?
> >
> > > On the Auth server the user is authenticating correcty and a Db
> > connection
> > > is openned with the original server (it shows in netstat -nta)
> >
> > Jan.
> >
> > --
> > Do you need professional PHP or Horde consulting?
> > http://horde.org/consulting/
> >
> > --
> > Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
> > Frequently Asked Questions: http://horde.org/faq/
> > To unsubscribe, mail: horde-unsubscribe at lists.horde.org
> >
>
>
From bigmanjohn at hotmail.com Wed Oct 4 05:12:59 2006
From: bigmanjohn at hotmail.com (John Chiu)
Date: Wed, 4 Oct 2006 20:12:59 +0800
Subject: [horde] Fw: occassional SMTP problem
Message-ID:
hi jan
i don't understand what did u mean by "Don't use SMTP"
it's a mail server, and i need to let users to send emails out. IMP is on
the same box, and it uses postfix and dovecot.
thx
----- Original Message -----
???: "Jan Schneider"
???:
????: October 4, 2006 4:32 PM
??: Re: [horde] occassional SMTP problem
Zitat von John Chiu :
> hi all
>
> i've had horde install at /var/www/html/mail and my users access horde at
> www.abc.com/mail
>
> since there are so many junk mails with helo www.abc.com, so i had
> configured my smtp to reject all smtp requests with helo www.abc.com and
> helo abc.com
>
> the problem that arises, is that sometimes IMP users can't send mail
because
> of the helo command rejection. sometimes this problem happens but most of
> the time there's no such problem at all.
>
> pls help. my SMTP is on the same machine with horde. i use postfix and
> dovecot. the config for imap is set to 127.0.0.1
Don't use SMTP.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
--
Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: horde-unsubscribe at lists.horde.org
From jan at horde.org Wed Oct 4 05:34:16 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 14:34:16 +0200
Subject: [horde] Fw: occassional SMTP problem
In-Reply-To:
References:
Message-ID: <20061004143416.oo1j8lahccs4w040@neo.wg.de>
Zitat von John Chiu :
> hi jan
>
> i don't understand what did u mean by "Don't use SMTP"
>
> it's a mail server, and i need to let users to send emails out. IMP is on
> the same box, and it uses postfix and dovecot.
Then use Postfix' sendmail binary.
> ----- Original Message -----
> ???: "Jan Schneider"
> ???:
> ????: October 4, 2006 4:32 PM
> ??: Re: [horde] occassional SMTP problem
>
>
> Zitat von John Chiu :
>
>> hi all
>>
>> i've had horde install at /var/www/html/mail and my users access horde at
>> www.abc.com/mail
>>
>> since there are so many junk mails with helo www.abc.com, so i had
>> configured my smtp to reject all smtp requests with helo www.abc.com and
>> helo abc.com
>>
>> the problem that arises, is that sometimes IMP users can't send mail
> because
>> of the helo command rejection. sometimes this problem happens but most of
>> the time there's no such problem at all.
>>
>> pls help. my SMTP is on the same machine with horde. i use postfix and
>> dovecot. the config for imap is set to 127.0.0.1
>
> Don't use SMTP.
>
> Jan.
>
> --
> Do you need professional PHP or Horde consulting?
> http://horde.org/consulting/
>
> --
> Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: horde-unsubscribe at lists.horde.org
>
> --
> Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: horde-unsubscribe at lists.horde.org
>
>
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From peo at intersonic.se Wed Oct 4 08:02:52 2006
From: peo at intersonic.se (Per olof Ljungmark)
Date: Wed, 04 Oct 2006 17:02:52 +0200
Subject: [horde] Required "password" not specified in VFS configuration. [on
line 49 of "/usr/local/www/horde/gollem/login.php"]
Message-ID: <4523CD1C.7080708@intersonic.se>
Hi,
I get this error when I try to login to a ftp server from "File Manager"
and have ran out of ideas right now. If anyone could kick me in the
right direction I would be most grateful.
Running the latest stable releases of Horde, Gollem, IMP, Kronolith on
FreeBSD 6-STABLE.
Subject is the Horde log, the Apache log says:
[Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 185, referer:
http://172.16.1.2/horde/gollem/login.php?backend_key=ftp&change_backend=1
[Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 112
[Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 185
[Wed Oct 04 16:59:57 2006] [error] [client 83.227.186.34] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 112
[Wed Oct 04 16:59:57 2006] [error] [client 83.227.186.34] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 185
[Wed Oct 04 17:00:07 2006] [error] [client 192.168.1.15] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 112
[Wed Oct 04 17:00:07 2006] [error] [client 192.168.1.15] PHP Notice:
Use of undefined constant full - assumed 'full' in
/usr/local/www/horde/gollem/config/backends.php on line 185
Thanks,
Per olof
From ali_20_f1 at yahoo.com Wed Oct 4 08:10:12 2006
From: ali_20_f1 at yahoo.com (Ali Nebi)
Date: Wed, 4 Oct 2006 08:10:12 -0700 (PDT)
Subject: [horde] Problem with database of the vilma
In-Reply-To:
Message-ID: <20061004151012.35749.qmail@web60616.mail.yahoo.com>
Hi,
i installed the vilma aplication under horde and make a configuration to use pgsql for the database, i used the vilma.pgsql.sql and included it to horde database
I have a problem with this:
When i choose Mail Admin and try to creat a domain after submit, it returm me that i have a field with null value.
I looked what fielad i have in the database and i saw that i have a fielad called: domain_key VARCHAR(64)
here is the whole script for create the table:
CREATE TABLE vilma_domains ( domain_id INT DEFAULT 0 NOT NULL, domain_name VARCHAR(128) DEFAULT '' NOT NULL, domain_transport VARCHAR(128) DEFAULT '' NOT NULL, domain_max_users INT DEFAULT 0 NOT NULL, domain_quota INT8 DEFAULT 0 NOT NULL, domain_key VARCHAR(64), PRIMARY KEY (domain_id), UNIQUE (domain_name) );
i can't see in the scripts how is insert this value for domain_key.
Can you give me some direction, what i have to do for the repair this?
---------------------------------
How low will we go? Check out Yahoo! Messenger?s low PC-to-Phone call rates.
From chuck at horde.org Wed Oct 4 08:15:31 2006
From: chuck at horde.org (Chuck Hagenbuch)
Date: Wed, 04 Oct 2006 11:15:31 -0400
Subject: [horde] Required "password" not specified in VFS configuration.
[on line 49 of "/usr/local/www/horde/gollem/login.php"]
In-Reply-To: <4523CD1C.7080708@intersonic.se>
References: <4523CD1C.7080708@intersonic.se>
Message-ID: <20061004111531.0j9l23qeosgsgokw@technest.org>
Quoting Per olof Ljungmark :
> I get this error when I try to login to a ftp server from "File
> Manager" and have ran out of ideas right now. If anyone could kick
> me in the right direction I would be most grateful.
>
> Running the latest stable releases of Horde, Gollem, IMP, Kronolith
> on FreeBSD 6-STABLE.
>
> Subject is the Horde log, the Apache log says:
> [Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
> Use of undefined constant full - assumed 'full' in
You need to write 'full' instead of just full in the config file
(notice the quotes).
The error in your subject wasn't in the log file at all, but that one
should be self explanatory - the password is missing.
-chuck
--
"we are plastered to the windshield of the bus that is time." - Chris
From chuck at horde.org Wed Oct 4 08:17:15 2006
From: chuck at horde.org (Chuck Hagenbuch)
Date: Wed, 04 Oct 2006 11:17:15 -0400
Subject: [horde] Problem with database of the vilma
In-Reply-To: <20061004151012.35749.qmail@web60616.mail.yahoo.com>
References: <20061004151012.35749.qmail@web60616.mail.yahoo.com>
Message-ID: <20061004111715.3f37xbsask0c4oos@technest.org>
Quoting Ali Nebi :
> i installed the vilma aplication under horde and make a
> configuration to use pgsql for the database, i used the
> vilma.pgsql.sql and included it to horde database
> I have a problem with this:
>
> When i choose Mail Admin and try to creat a domain after submit, it
> returm me that i have a field with null value.
> I looked what fielad i have in the database and i saw that i have a
> fielad called: domain_key VARCHAR(64)
>
> here is the whole script for create the table:
>
> CREATE TABLE vilma_domains ( domain_id INT DEFAULT 0 NOT
> NULL, domain_name VARCHAR(128) DEFAULT '' NOT NULL,
> domain_transport VARCHAR(128) DEFAULT '' NOT NULL,
> domain_max_users INT DEFAULT 0 NOT NULL, domain_quota INT8
> DEFAULT 0 NOT NULL, domain_key VARCHAR(64), PRIMARY KEY
> (domain_id), UNIQUE (domain_name) );
>
> i can't see in the scripts how is insert this value for domain_key.
I'm not sure what domain_key has to do with it. It would be much more
helpful if you included the _actual_ _entire_ error message, but if
the error is that you have a null value violating a not null
constraint, the problem is with a field that says NOT NULL. domain_key
is allowed to be null so it doesn't need to be set.
-chuck
--
"we are plastered to the windshield of the bus that is time." - Chris
From Thibault.LeMeur at supelec.fr Wed Oct 4 08:18:46 2006
From: Thibault.LeMeur at supelec.fr (Thibault Le Meur)
Date: Wed, 4 Oct 2006 17:18:46 +0200
Subject: [horde] Weather.com block causes no portal display at all
In-Reply-To: <00a001c6ab4e$153bd7c0$a578e4a0@supelec.fr>
Message-ID: <01d201c6e7c8$65fbe400$a578e4a0@supelec.fr>
Hi,
I've got the same issue as described in the following thread:
http://marc.theaimsgroup.com/?l=imp&m=114897809019741&w=2
To sum things up:
* I have installed a fresh system with FC5 (PHP 5.1.4) and upgrading pear
modules (Service_Weather 1.4.0 stable)
* I've installed Horde 3.1.3, IMP 4.1.3, ...
* I've imported my SQL database from my 3.0.x system and upgraded it
(applied 3.0_to_3.1.mysql.sql and move_history_out_of_datatree.php)
* If the user has a portal_layout pref with a 'weatherdotcom' entry, when he
logs-in, the horde portal page is empty (even the top icons aren't
displayed) [the portal block configuration is not available]
* If I delete the portal_layout pref of this user, at next login the portal
is empty (normal) but the upper menu is available and the user can modify
the portal blocks)
* Everything is the fine untill he tries to set up again a weather.com block
inside the portal.
I checked my logs and found :
* nothing in my web server logs (with error_reporting=E_ALL in php.ini)
* nothing alarming in my horde.log (even with debug_level=E_ALL): I only
have 'usual' sql queries in my prefs sql backend
I have a valid PartnerID and password on weather.com, I even tried to
configure and initialize buildMetarDB.php (though I only use weather.com).
Is there anyway to debug this issue ? Am I missing something ?
My only remaining is to remove the portal_layout prefs of all users that
have configured weather.com before moing to the new server.
Is there a way to remove only the weather.com part and not the whole blocks
setup with an SQL query (I tried but I do not know where the weather.com
block begins and ends inside the portal_layout pref value).
Thanks in advance,
Thibault
From peo at intersonic.se Wed Oct 4 08:37:27 2006
From: peo at intersonic.se (Per olof Ljungmark)
Date: Wed, 04 Oct 2006 17:37:27 +0200
Subject: [horde] Required "password" not specified in VFS configuration.
[on line 49 of "/usr/local/www/horde/gollem/login.php"]
In-Reply-To: <20061004111531.0j9l23qeosgsgokw@technest.org>
References: <4523CD1C.7080708@intersonic.se>
<20061004111531.0j9l23qeosgsgokw@technest.org>
Message-ID: <4523D537.6050901@intersonic.se>
Chuck Hagenbuch wrote:
> Quoting Per olof Ljungmark :
>
>> I get this error when I try to login to a ftp server from "File
>> Manager" and have ran out of ideas right now. If anyone could kick me
>> in the right direction I would be most grateful.
>>
>> Running the latest stable releases of Horde, Gollem, IMP, Kronolith on
>> FreeBSD 6-STABLE.
>>
>> Subject is the Horde log, the Apache log says:
>> [Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
>> Use of undefined constant full - assumed 'full' in
>
> You need to write 'full' instead of just full in the config file (notice
> the quotes).
>
> The error in your subject wasn't in the log file at all, but that one
> should be self explanatory - the password is missing.
Thanks, now the errors about 'full' are gone, but still cannot login to
ftp servers, sql and virtual homes are fine. No errors from php, Horde says:
Oct 04 17:33:34 HORDE [notice] [gollem] 192.168.1.15 Required "password"
not specified in VFS configuration. [on line 49 of
"/usr/local/www/horde/gollem/login.php"]
I'm using IMP for authentication and it works well with everything else.
From slusarz at horde.org Wed Oct 4 09:30:49 2006
From: slusarz at horde.org (Michael M Slusarz)
Date: Wed, 04 Oct 2006 10:30:49 -0600
Subject: [horde] Internet Explorer privacy setting issues
In-Reply-To: <200610031412.49687.daniel.ramaley@drake.edu>
References: <200609281102.26622.daniel.ramaley@drake.edu>
<200610031412.49687.daniel.ramaley@drake.edu>
Message-ID: <20061004103049.hgrbs2frc44ogg8g@bigworm.curecanti.org>
Quoting "Daniel A. Ramaley" :
> On Thursday 28 September 2006 11:02, Daniel A. Ramaley wrote:
>> I have a Red Hat Linux webmail server (Apache 2.0.52, PHP 4.3.9) with
>> the latest released versions of Horde, Imp, Ingo, Kronolith, Passwd,
>> and Turba. In the last few weeks a number of problems have been
>> brought to my attention that are related to users of Internet
>> Explorer having difficulty sending messages with Imp. When the users
>> compose a message and hit send they either get a blank white page or
>> they are returned to a new message composition page (everything they
>> typed is gone). In either case the message is not actually sent.
>>
>> Through testing we have determined that the problem depends on IE's
>> privacy settings. It seems that if the privacy settings are at
>> "Medium" or lower that everything works. But if set to "Medium High"
>> or above, Horde has problems. That setting controls how the browser
>> handles cookies. Has anyone else noticed this problem? If so, is
>> there a solution besides telling our users to modify their browser
>> settings?
>
> I managed to find a solution to the problem, and am documenting it here
> for the archives. I needed to define a privacy policy on the server and
> configure Apache to add an extra http header describing a short version
> of the policy. For more details on how to do this, i suggest searching
> for "P3P".
>
> I found these sites helpful in reading about P3P:
>
> http://www.w3.org/TR/p3pdeployment
> http://www.awardsites.com/tutorials/w3c/p3p_privacy-01.htm
> http://www.w3.org/P3P/
> http://www.sitepoint.com/article/p3p-cookies-ie6/2
> http://www.p3pwriter.com/LRN_111.asp
> http://p3ptoolbox.org/guide/section2.shtml#I
This seems like real worthwhile information to put up on wiki.horde.org
michael
___________________________________
Michael Slusarz [slusarz at horde.org]
From vjl at cullasaja.com Wed Oct 4 09:52:39 2006
From: vjl at cullasaja.com (Vince LaMonica)
Date: Wed, 4 Oct 2006 12:52:39 -0400 (EDT)
Subject: [horde] SMTP auth with TLS?
In-Reply-To: <20061004015635.krqcnv6a3480848o@neo.wg.de>
References:
<20061004015635.krqcnv6a3480848o@neo.wg.de>
Message-ID:
On Wed, 4 Oct 2006, Jan Schneider wrote:
} > Oct 03 15:13:55 HORDE [error] [imp] LOGIN authentication failure [SMTP: SMTP
} > server does no support authentication (code: 250, response: mail.example.com
}
} Make sure to have the latest Mail and Net_SMTP packages, there was a bug in
} one of these. I experienced the same a while back.
Mail was at 1.1.10, and I did an upgrade and am now at 1.1.13. Net_SMTP is
still 1.2.8, which is the latest. I still get the same error message. Note
that I'm only allowing PLAIN and LOGIN authentication but because all SMTP
AUTH requests are encrypted [TLS], no plaintext passwd is sent through. On
an IMP host I found via google, they offer CRAM and DIGEST smtp auth,
though not via TLS. So their EHLO repsonse is different than mine. From
the Net_SMTP class, it appears it scans the output of the EHLO and looks
for AUTH in the text.
However, since I'm running TLS [aka STARTTLS], the AUTH line does not show
up in an unencrypted EHLO connection [though it should via stunnel].
So I guess the question is this - does IMP [or maybe better yet - the
Net_SMTP pear extension] support SMTP AUTH over TLS?
More background info on this can be found here:
http://archives.neohapsis.com/archives/postfix/2006-10/thread.html#163
[it's a thread i started on the postfix list between me and Sandy Drobic]
TIA!
/vjl/
From daniel.ramaley at DRAKE.EDU Wed Oct 4 10:51:48 2006
From: daniel.ramaley at DRAKE.EDU (Daniel A. Ramaley)
Date: Wed, 04 Oct 2006 12:51:48 -0500
Subject: [horde] Internet Explorer privacy setting issues
In-Reply-To: <20061004103049.hgrbs2frc44ogg8g@bigworm.curecanti.org>
References: <200609281102.26622.daniel.ramaley@drake.edu>
<200610031412.49687.daniel.ramaley@drake.edu>
<20061004103049.hgrbs2frc44ogg8g@bigworm.curecanti.org>
Message-ID: <200610041251.48715.daniel.ramaley@drake.edu>
On Wednesday 04 October 2006 11:30, Michael M Slusarz wrote:
>This seems like real worthwhile information to put up on
> wiki.horde.org
I'm not terribly familiar with editing wikis, but managed to put a new
topic with the information at the bottom of this page:
http://wiki.horde.org/FAQ/Admin/Troubleshoot/IMP
If you think it should go somewhere else, let me know and i'll try to
move it.
------------------------------------------------------------------------
Dan Ramaley Dial Center 118, Drake University
Network Programmer/Analyst 2407 Carpenter Ave
+1 515 271-4540 Des Moines IA 50311 USA
From zuniga at baibrama.cult.cu Wed Oct 4 13:56:04 2006
From: zuniga at baibrama.cult.cu (=?iso-8859-1?B?XCh6+vFpZ2FcKQ==?=)
Date: Wed, 4 Oct 2006 13:56:04 -0700
Subject: [horde] mysql authentication
Message-ID: <001c01c6e7f7$94438870$531900c8@hosting>
Hi:
I?ve been installed Horde2, I?ve postfix+mysql+courier-pop3.
All users are in a database (mail) and users login and password are stored
in the table users.
I want to configure Horde2 for using this database. I find out in
www.horde.org but I can?t find anything.
Thanks
jose antonio.
pd. SO: Debian Sarge 3.1
Portal de la Cultura Holguinera
www.baibrama.cult.cu
From peo at intersonic.se Wed Oct 4 13:42:06 2006
From: peo at intersonic.se (Per olof Ljungmark)
Date: Wed, 04 Oct 2006 22:42:06 +0200
Subject: [horde] Required "password" not specified in VFS configuration.
[on line 49 of "/usr/local/www/horde/gollem/login.php"]
In-Reply-To: <20061004111531.0j9l23qeosgsgokw@technest.org>
References: <4523CD1C.7080708@intersonic.se>
<20061004111531.0j9l23qeosgsgokw@technest.org>
Message-ID: <45241C9E.30606@intersonic.se>
Chuck Hagenbuch wrote:
> Quoting Per olof Ljungmark :
>
>> I get this error when I try to login to a ftp server from "File
>> Manager" and have ran out of ideas right now. If anyone could kick me
>> in the right direction I would be most grateful.
>>
>> Running the latest stable releases of Horde, Gollem, IMP, Kronolith on
>> FreeBSD 6-STABLE.
>>
>> Subject is the Horde log, the Apache log says:
>> [Wed Oct 04 16:56:13 2006] [error] [client 192.168.1.15] PHP Notice:
>> Use of undefined constant full - assumed 'full' in
>
> You need to write 'full' instead of just full in the config file (notice
> the quotes).
>
> The error in your subject wasn't in the log file at all, but that one
> should be self explanatory - the password is missing.
The error started to appear after updating Horde 3.1.1 -> 3.1.3 and
Gollem 1.0 -> 1.0.2. I have now two installations identical except for
the above versions and the former works fine.
There must have been a change in the configuration between the versions
that I am unable to see, sorry.
Oct 04 22:33:51 HORDE [notice] [gollem] Required "password"
not specified in VFS configuration. [on line 49 of
"/usr/local/www/horde/gollem/login.php"]
From goisman at physics.arizona.edu Wed Oct 4 13:54:41 2006
From: goisman at physics.arizona.edu (Philip Goisman)
Date: Wed, 4 Oct 2006 13:54:41 -0700
Subject: [horde] of Skeletons and Zombies: automatically create new
horde apps
Message-ID: <200610042054.k94KsfmP014146@bohr.physics.arizona.edu>
Dear Horde,
I want to thank Karsten Fourmont very much for his zombie tool to
create secure webpages. I used his Zombie Version 1.0 on a system
with Horde: 3.2-cvs. As I am not very familiar with horde, php, or mysql,
this tool is profoundly useful.
Thank you Karsten and thanks to all horde developers for all of the great tools.
Sincerely,
Philip Goisman
From jan at horde.org Wed Oct 4 14:24:43 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 23:24:43 +0200
Subject: [horde] Weather.com block causes no portal display at all
In-Reply-To: <01d201c6e7c8$65fbe400$a578e4a0@supelec.fr>
References: <01d201c6e7c8$65fbe400$a578e4a0@supelec.fr>
Message-ID: <20061004232443.ajaz8upjc4s04wcc@neo.wg.de>
Zitat von Thibault Le Meur :
> Hi,
>
> I've got the same issue as described in the following thread:
> http://marc.theaimsgroup.com/?l=imp&m=114897809019741&w=2
>
> To sum things up:
> * I have installed a fresh system with FC5 (PHP 5.1.4) and upgrading pear
> modules (Service_Weather 1.4.0 stable)
> * I've installed Horde 3.1.3, IMP 4.1.3, ...
> * I've imported my SQL database from my 3.0.x system and upgraded it
> (applied 3.0_to_3.1.mysql.sql and move_history_out_of_datatree.php)
> * If the user has a portal_layout pref with a 'weatherdotcom' entry, when he
> logs-in, the horde portal page is empty (even the top icons aren't
> displayed) [the portal block configuration is not available]
> * If I delete the portal_layout pref of this user, at next login the portal
> is empty (normal) but the upper menu is available and the user can modify
> the portal blocks)
> * Everything is the fine untill he tries to set up again a weather.com block
> inside the portal.
>
> I checked my logs and found :
> * nothing in my web server logs (with error_reporting=E_ALL in php.ini)
> * nothing alarming in my horde.log (even with debug_level=E_ALL): I only
> have 'usual' sql queries in my prefs sql backend
And are you sure that (PHP) logging works, i.e. are other PHP errors logged?
> I have a valid PartnerID and password on weather.com, I even tried to
> configure and initialize buildMetarDB.php (though I only use weather.com).
>
> Is there anyway to debug this issue ? Am I missing something ?
>
> My only remaining is to remove the portal_layout prefs of all users that
> have configured weather.com before moing to the new server.
> Is there a way to remove only the weather.com part and not the whole blocks
> setup with an SQL query (I tried but I do not know where the weather.com
> block begins and ends inside the portal_layout pref value).
No.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From jan at horde.org Wed Oct 4 14:30:19 2006
From: jan at horde.org (Jan Schneider)
Date: Wed, 04 Oct 2006 23:30:19 +0200
Subject: [horde] mysql authentication
In-Reply-To: <001c01c6e7f7$94438870$531900c8@hosting>
References: <001c01c6e7f7$94438870$531900c8@hosting>
Message-ID: <20061004233019.aja9hgyvhcks8oko@neo.wg.de>
Zitat von "(z??iga)" :
> I?ve been installed Horde2, I?ve postfix+mysql+courier-pop3.
Please use Horde 3. Horde 2 is not maintained nor supported anymore
since a very long time.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From peo at intersonic.se Wed Oct 4 14:59:19 2006
From: peo at intersonic.se (Per olof Ljungmark)
Date: Wed, 04 Oct 2006 23:59:19 +0200
Subject: [horde] Required "password" not specified in VFS configuration.
[on line 49 of "/usr/local/www/horde/gollem/login.php"] [SOLVED]
In-Reply-To: <45241C9E.30606@intersonic.se>
References: <4523CD1C.7080708@intersonic.se> <20061004111531.0j9l23qeosgsgokw@technest.org>
<45241C9E.30606@intersonic.se>
Message-ID: <45242EB7.2070709@intersonic.se>
Per olof Ljungmark wrote:
> Chuck Hagenbuch wrote:
>> Quoting Per olof Ljungmark :
> There must have been a change in the configuration between the versions
> that I am unable to see, sorry.
>
> Oct 04 22:33:51 HORDE [notice] [gollem] Required "password"
> not specified in VFS configuration. [on line 49 of
> "/usr/local/www/horde/gollem/login.php"]
It WAS a RTFM: In 1.0.1, "[mms] Can select default permissions for newly
created files and directories per backend."
From Thibault.LeMeur at supelec.fr Thu Oct 5 01:47:03 2006
From: Thibault.LeMeur at supelec.fr (Thibault Le Meur)
Date: Thu, 5 Oct 2006 10:47:03 +0200
Subject: [horde] RE : Weather.com block causes no portal display at all
In-Reply-To: <20061004232443.ajaz8upjc4s04wcc@neo.wg.de>
Message-ID: <026d01c6e85a$d7cdfea0$a578e4a0@supelec.fr>
> De : horde-bounces at lists.horde.org
> [mailto:horde-bounces at lists.horde.org] De la part de Jan Schneider
>
> Zitat von Thibault Le Meur :
>
> > Hi,
> >
> > I've got the same issue as described in the following thread:
> > http://marc.theaimsgroup.com/?l=imp&m=114897809019741&w=2
> >
> > To sum things up:
> > * I have installed a fresh system with FC5 (PHP 5.1.4) and
> upgrading
> > pear modules (Service_Weather 1.4.0 stable)
> >
> > I checked my logs and found :
> > * nothing in my web server logs (with error_reporting=E_ALL in
> > php.ini)
> > * nothing alarming in my horde.log (even with
> debug_level=E_ALL): I only
> > have 'usual' sql queries in my prefs sql backend
>
> And are you sure that (PHP) logging works, i.e. are other PHP
> errors logged?
Yes, I tried to run the buggy command "foo;" in the horde phpshell and the
erro is reported in my ssl_error_log.
Any Idea how to troubleshoot this ? (I can go in the code if nedded).
By the way here is the welcome 'blank' page I get:
Courrier :: Bo?te de r?ception (2)
Regards,
Thibault
From Thibault.LeMeur at supelec.fr Fri Oct 6 07:12:38 2006
From: Thibault.LeMeur at supelec.fr (Thibault Le Meur)
Date: Fri, 6 Oct 2006 16:12:38 +0200
Subject: [horde] RE : RE : Weather.com block causes no portal display at all
In-Reply-To: <026d01c6e85a$d7cdfea0$a578e4a0@supelec.fr>
Message-ID: <005201c6e951$7e00c400$a578e4a0@supelec.fr>
Hi,
Has nobody got an idea of how to troubleshoot my problem (even if it needs
looking at the code... but where to start) ?
> > >
> > > I've got the same issue as described in the following thread:
> > > http://marc.theaimsgroup.com/?l=imp&m=114897809019741&w=2
> > >
> > >
> > > I checked my logs and found :
> > > * nothing in my web server logs (with error_reporting=E_ALL in
> > > php.ini)
> > > * nothing alarming in my horde.log (even with
> > debug_level=E_ALL): I only
> > > have 'usual' sql queries in my prefs sql backend
> >
> > And are you sure that (PHP) logging works, i.e. are other PHP
> > errors logged?
>
> Yes, I tried to run the buggy command "foo;" in the horde
> phpshell and the
> erro is reported in my ssl_error_log.
>
> By the way here is the welcome 'blank' page I get:
> "http://www.w3c.org/TR/1999/REC-html401-19991224/frameset.dtd">
> Courrier :: Bo?te de r?ception (2)
> href="/horde/themes/graphics/favicon.ico" rel="SHORTCUT
> ICON">
I get the sidebar frame but the "
References: <20060920174830.ymovezpr28wgck84@linux-smb.team-gmh.local>
<20060927164025.epaetas3wos4w0o8@neo.wg.de>
Message-ID: <20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local>
Quoting Jan Schneider :
Hi Jan,
> This usually happens if different web server threads are used for
> different page request and not all of these threads are picking up the
> translations.
> This can happen if you updated your translation and didn't restart the
> web server, or anything else is running on your web server that uses
> gettext.
hmm, well the translations are the vanilla files from the Horde
Installation. While I understand what you are saying in theory, I have
no idea how to track that down or even solve it.
Thanks.
--
Daniel Bramkamp
From dahlberg at bucknell.edu Fri Oct 6 07:41:39 2006
From: dahlberg at bucknell.edu (Michael Dahlberg)
Date: Fri, 06 Oct 2006 10:41:39 -0400
Subject: [horde] Warning banner in some messages
Message-ID: <20061006104139.dm302ccpwws08ck8@webmail.bucknell.edu>
I recently upgraded our horde installation to horde 3.1.3, imp 4.1.3,
turba 2.1.2, and ingo 1.1.1 (we're using the latest apache 2 series
and php 5.1.6). Since the upgrade some messages have the following
banner added to the top of the message in an orange box:
Warning: This message may not be from whom it claims to be. Beware of
following any links in it or of providing the sender with any personal
information.
I can't seem to find any documentation on this feature, why it is
added, what horde module is adding it and how it can be controlled.
Could you point me to any info about this feature?
Thanks,
Mike
From vilius at lnk.lt Fri Oct 6 08:07:53 2006
From: vilius at lnk.lt (=?utf-8?Q?Vilius_=C5=A0umskas?=)
Date: Fri, 6 Oct 2006 18:07:53 +0300
Subject: [horde] Language Issues
In-Reply-To: <20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local>
References: <20060920174830.ymovezpr28wgck84@linux-smb.team-gmh.local> <20060927164025.epaetas3wos4w0o8@neo.wg.de>
<20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local>
Message-ID: <001901c6e959$329b0860$97d11920$@lt>
> -----Original Message-----
> From: horde-bounces at lists.horde.org [mailto:horde-
> bounces at lists.horde.org] On Behalf Of Daniel Bramkamp
> Sent: 2006 m. spalio 6 d. 17:33
> To: horde at lists.horde.org
> Subject: Re: [horde] Language Issues
>
> Quoting Jan Schneider :
>
> Hi Jan,
>
> > This usually happens if different web server threads are used for
> > different page request and not all of these threads are picking up
> the
> > translations.
> > This can happen if you updated your translation and didn't restart
> the
> > web server, or anything else is running on your web server that uses
> > gettext.
>
> hmm, well the translations are the vanilla files from the Horde
> Installation. While I understand what you are saying in theory, I have
> no idea how to track that down or even solve it.
Restart the web server.
--
Pagarbiai,
Vilius ?umskas
LNK TV sistem? administratorius
mob.: +370 614 75713
http://www.lnk.lt
From bramkamp at team-datentechnik.de Fri Oct 6 08:19:59 2006
From: bramkamp at team-datentechnik.de (Daniel Bramkamp)
Date: Fri, 06 Oct 2006 17:19:59 +0200
Subject: [horde] Language Issues
In-Reply-To: <001901c6e959$329b0860$97d11920$@lt>
References: <20060920174830.ymovezpr28wgck84@linux-smb.team-gmh.local>
<20060927164025.epaetas3wos4w0o8@neo.wg.de>
<20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local>
<001901c6e959$329b0860$97d11920$@lt>
Message-ID: <20061006171959.xrh9i0elgk048o0g@linux-smb.team-gmh.local>
Quoting Vilius ?umskas :
> Restart the web server.
Did that a while ago but it did not help. :(
--
Daniel Bramkamp
From vilius at lnk.lt Fri Oct 6 09:27:01 2006
From: vilius at lnk.lt (=?utf-8?Q?Vilius_=C5=A0umskas?=)
Date: Fri, 6 Oct 2006 19:27:01 +0300
Subject: [horde] Language Issues
In-Reply-To: <20061006171959.xrh9i0elgk048o0g@linux-smb.team-gmh.local>
References: <20060920174830.ymovezpr28wgck84@linux-smb.team-gmh.local> <20060927164025.epaetas3wos4w0o8@neo.wg.de> <20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local> <001901c6e959$329b0860$97d11920$@lt>
<20061006171959.xrh9i0elgk048o0g@linux-smb.team-gmh.local>
Message-ID: <001c01c6e964$408a6190$c19f24b0$@lt>
> Quoting Vilius ?umskas :
>
> > Restart the web server.
>
> Did that a while ago but it did not help. :(
> --
> Daniel Bramkamp
Then try to rebuild .mo files. They are OS dependant.
--
Pagarbiai,
Vilius ?umskas
LNK TV sistem? administratorius
mob.: +370 614 75713
http://www.lnk.lt
From lists at pietrosanti.it Sun Oct 8 00:37:25 2006
From: lists at pietrosanti.it (Fabio Pietrosanti)
Date: Sun, 08 Oct 2006 09:37:25 +0200
Subject: [horde] horde / imp release of today 8 october is usable?
Message-ID: <20061007073700.6D5621D8F8B@supertolla.itapac.net>
I read in the roadmap that the next goal is the IMP refactoring.
I am wondering how much trouble i would expect in using the horde CVS
release of today.
Will IMP not be usable during the refactoring?
From jan at horde.org Sat Oct 7 06:10:19 2006
From: jan at horde.org (Jan Schneider)
Date: Sat, 07 Oct 2006 15:10:19 +0200
Subject: [horde] horde / imp release of today 8 october is usable?
In-Reply-To: <20061007073700.6D5621D8F8B@supertolla.itapac.net>
References: <20061007073700.6D5621D8F8B@supertolla.itapac.net>
Message-ID: <20061007151019.lu9544b7s80oo4o8@neo.wg.de>
Zitat von Fabio Pietrosanti :
> I read in the roadmap that the next goal is the IMP refactoring.
>
> I am wondering how much trouble i would expect in using the horde CVS
> release of today.
It's already happening since a few months, if you didn't have any
problems so far, you shouldn't expect more problems than usual with
the CVS version.
> Will IMP not be usable during the refactoring?
It's not a rewrite, only some code refactoring, to make it more
reusable in DIMP and MIMP.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From bennettj at thebennetthome.com Sat Oct 7 08:52:36 2006
From: bennettj at thebennetthome.com (John H. Bennett III)
Date: Sat, 7 Oct 2006 10:52:36 -0500
Subject: [horde] horde 3.1.3 mysql creation scripts
Message-ID: <007e01c6ea28$9c27e710$7d0a0a0a@bennett1>
Hello,
I need clarification on the horde mysql create scripts in horde/scripts/sql.
Currently, there are two create scripts for a mysql database.
Create.mysql.sql
-- $Horde: horde/scripts/sql/create.mysql.sql,v 1.4.6.9 2006/07/05 15:53:10
jan Exp $
and create.sql.
--$Horde: horde/scripts/sql/create.sql,v 1.1.2.3 2006/05/22 21:27:33 jan Exp
$
Which one is the one I should be using? I have been using the
create.mysql.sql one for all previous installs. I ask because in
create.mysql.sql there is this section:
CREATE TABLE horde_prefs (
pref_uid VARCHAR(200) NOT NULL,
pref_scope VARCHAR(16) NOT NULL DEFAULT '',
pref_name VARCHAR(32) NOT NULL,
pref_value LONGTEXT NULL,
PRIMARY KEY (pref_uid, pref_scope, pref_name)
);
CREATE INDEX pref_uid_idx ON horde_prefs (pref_uid);
CREATE INDEX pref_scope_idx ON horde_prefs (pref_scope);
When using this and looking at the tables in phpmyadmin, there is a warning
error saying that Primary and Index keys should not both be set for column
pref_uid. The create.sql file doesn't have the index section.
While, I'm asking, the same is true for mnemo as well.
-- $Horde: mnemo/scripts/sql/mnemo.sql,v 1.5 2004/12/21 15:55:24 chuck Exp $
CREATE TABLE mnemo_memos (
memo_owner VARCHAR(255) NOT NULL,
memo_id VARCHAR(32) NOT NULL,
memo_uid VARCHAR(255) NOT NULL,
memo_desc VARCHAR(64) NOT NULL,
memo_body TEXT,
memo_category VARCHAR(80),
memo_private SMALLINT NOT NULL DEFAULT 0,
--
PRIMARY KEY (memo_owner, memo_id)
);
CREATE INDEX mnemo_notepad_idx ON mnemo_memos (memo_owner);
CREATE INDEX mnemo_uid_idx ON mnemo_memos (memo_uid);
GRANT SELECT, INSERT, UPDATE, DELETE ON mnemo_memos TO horde;
Thanks,
John Bennett
From s.hanselman at kc4sw.com Sat Oct 7 15:16:20 2006
From: s.hanselman at kc4sw.com ('Stephen Hanselman')
Date: Sat, 7 Oct 2006 15:16:20 -0700
Subject: [horde] Basic Configuration/startup
Message-ID: <20061007214941.C35AA1A341D@firewall.kc4sw.com>
Hi list,
I have a new install of Horde 3.2-cvs operating on a Fedora Core 5 install.
When I open the window http://192.168.1.9./horde to begin the config process
I get a message in the left frame that
"A fatal error has occurred you must configure a DataTree backend to use
with Shares [line 156 of /usr/share/pear/Horde/Share.php]
I have looked through the FAQ on installing on Fedora Core 4 and all of the
tasks have been completed.
The main frame does come up and the "add content" tab does seem to work.
I know I've done something dumb but I'm lost now, any ideas
Thanks
Stephen Hanselman
From jan at horde.org Sun Oct 8 07:10:48 2006
From: jan at horde.org (Jan Schneider)
Date: Sun, 08 Oct 2006 16:10:48 +0200
Subject: [horde] horde 3.1.3 mysql creation scripts
In-Reply-To: <007e01c6ea28$9c27e710$7d0a0a0a@bennett1>
References: <007e01c6ea28$9c27e710$7d0a0a0a@bennett1>
Message-ID: <20061008161048.ajuvk8xzksok4s8k@neo.wg.de>
Zitat von "John H. Bennett III" :
> When using this and looking at the tables in phpmyadmin, there is a warning
> error saying that Primary and Index keys should not both be set for column
This warning is bogus.
> pref_uid. The create.sql file doesn't have the index section.
Either because only MySQL required these additional indexes for better
perfomance, or because we simply forgot it in create.sql.
Jan.
--
Do you need professional PHP or Horde consulting?
http://horde.org/consulting/
From krause at biochem.mpg.de Sun Oct 8 17:15:04 2006
From: krause at biochem.mpg.de (Markus Krause)
Date: Mon, 09 Oct 2006 02:15:04 +0200
Subject: [horde] weird layout on different browsers
Message-ID: <20061009021504.28x4x9oiwgsko44s@webmail2.biochem.mpg.de>
Hi all!
I tested some browsers on different platforms with some latests horde
modules and encountered some weird looking pages if the browser window
is too narrow to display all top menu icons. this occures with safari
2.x (mac os x 10.4), netscape 7.1 and opera 9. i added some
screenshots for clarification here:
notice with last login is overlayed by icons in netscape 7.1:
http://www.stud.uni-muenchen.de/~markus.krause/horde/inbox-netscape.gif
same with opera 9:
http://www.stud.uni-muenchen.de/~markus.krause/horde/inbox-opera.gif
and safari 2.0.4:
http://www.stud.uni-muenchen.de/~markus.krause/horde/inbox-safari.gif
same without notice:
http://www.stud.uni-muenchen.de/~markus.krause/horde/inbox2-safari.gif
composing a new mail with netscape in a narrow window (<1000 pixel):
http://www.stud.uni-muenchen.de/~markus.krause/horde/mail-netscape.gif
correct display after resizing the window:
http://www.stud.uni-muenchen.de/~markus.krause/horde/mail-widescreen-netscape.gif
Did someone else encounter this, is this a bug in the browsers or is
this due to a misconfiguration? is there a way to solve this? we want
to use the latest version but have some (important, aka directors!)
users which especially use safari!
thanks in advance for any hints!
regards
markus
--
Markus Krause email: krause at biochem.mpg.de
Mogli-Soft: Support for Mac OS X, Webmail/Horde, LDAP, RADIUS
by order of the Computing Center of the Max-Planck-Institute of Biochemistry
Tel.: 089 - 89 40 85 99 Fax.: 089 - 89 40 85 98
----------------------------------------------------------------------
This message was sent using https://webmail2.biochem.mpg.de
If you encounter any problems please report to rz-linux at biochem.mpg.de
From bramkamp at team-datentechnik.de Sun Oct 8 23:53:49 2006
From: bramkamp at team-datentechnik.de (Daniel Bramkamp)
Date: Mon, 09 Oct 2006 08:53:49 +0200
Subject: [horde] Language Issues
In-Reply-To: <001c01c6e964$408a6190$c19f24b0$@lt>
References: <20060920174830.ymovezpr28wgck84@linux-smb.team-gmh.local>
<20060927164025.epaetas3wos4w0o8@neo.wg.de>
<20061006163321.nhcccyg5wows0s4w@linux-smb.team-gmh.local>
<001901c6e959$329b0860$97d11920$@lt>
<20061006171959.xrh9i0elgk048o0g@linux-smb.team-gmh.local>
<001c01c6e964$408a6190$c19f24b0$@lt>
Message-ID: <20061009085348.9i8j4hjz4ko00808@linux-smb.team-gmh.local>
Quoting Vilius ?umskas :
> Then try to rebuild .mo files. They are OS dependant.
Did that using the provided PHP script. After rebuilding them I
restarted Apache once more. Same result, it still switches between
languages. :(
From carliedu at ig.com.br Sat Oct 7 08:19:56 2006
From: carliedu at ig.com.br (carliedu)
Date: Sat, 7 Oct 2006 08:19:56 -0700 (PDT)
Subject: [horde] Configuring Horde
In-Reply-To: <4520EC6B.7060903@etsetb.upc.edu>
References: <4520EC6B.7060903@etsetb.upc.edu>
Message-ID: <6694902.post@talk.nabble.com>
Hi Sergio,
I?m having the same problem and have seen many messages in the web in other
forums that say the same. The strange is that this problem occurs in older
versions too.
Nobody anwered in the question in any forum. Apparently there is a solution
but nobody writes it after resolving the problem.
I have changed all the horde directory and all sub-folders to chmod 777 and
conf.php can?t be rewritten.
I wrote this lines only to say there are more people with the sama problem
awaiting for a light at the and the the tunnel.
Eduardo
--
View this message in context: http://www.nabble.com/Configuring-Horde-tf2368835.html#a6694902
Sent from the Horde - General mailing list archive at Nabble.com.