[imp] contact list not being saved...
Scott Smith
ssmith@siu.edu
Sat, 07 Jul 2001 23:29:09 -0500
---------------------- multipart/alternative attachment
Would it be easier to setup a ldap server on the same server to do the same thing?
Is the DB structures hard to create? Is there suffecient docs in the
horde/scripts/db/ directory?
Thanks agian.
Marc Jauvin wrote:
> If you select "sql", you will have to create the 'horde_prefs' table in the
> 'horde' database... you can look in "horde/scripts/db/" for the DB structures to
> create.
>
> Regards,
>
> --
> marc
>
> Back Up My Hard Drive? I Can't Find The Reverse Switch!
>
> Quoting Scott Smith <ssmith@siu.edu>:
>
> > Thanks, I'll try this next week when I'm onsite.
> >
> > I'm not sure on the version, however I think it's 2.4.X, but it very well
> > could be
> > 2.3.X.
> >
> > I'll repost once I find out if it works or if I still have problems.
> > Thanks again.
> >
> > Marc Jauvin wrote:
> >
> > > It depends of the version you are using; for 2.3.X, you will find the
> > following
> > > comment in horde/config/horde.php.dist that would explain your problem:
> > >
> > > // What preferences driver should we use? Valid values are 'none'
> > > // (meaning use system defaults and don't save any user preferences),
> > > // 'session' (preferences only persist during the login), 'ldap',
> > > // and 'sql'.
> > > $conf['prefs']['driver'] = 'none';
> > >
> > > --
> > > marc
> > >
> > > Back Up My Hard Drive? I Can't Find The Reverse Switch!
> > >
> > > Quoting Scott Smith <ssmith@siu.edu>:
> > >
> > > > I got a report from a person that I setup IMP on their server.
> > > >
> > > > His report was that after he creates users/contacts in his contact list
> > > > they stay for that session. However if he logs out, and then logs back
> > > > in they are all empty again.
> > > >
> > > > Any ideas?
> > > >
> > > >
> > > > --
> > > > 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
> > > >
> > > >
> > >
> > > --
> > > 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
> >
>
> --
> 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
---------------------- multipart/alternative attachment--
>From anri@polynet.lviv.ua Date: 8 Jul 2001 16:07:36 +0300
Return-Path: <anri@polynet.lviv.ua>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 61616 invoked from network); 8 Jul 2001 13:08:55 -0000
Received: from guard.polynet.lviv.ua (217.9.2.1)
by horde.org with SMTP; 8 Jul 2001 13:08:55 -0000
Received: (qmail 41710 invoked from network); 8 Jul 2001 13:08:38 -0000
Received: from postoffice.lp.Lviv.ua (HELO polynet.lviv.ua) (192.168.0.6)
by guard.lp.lviv.ua with SMTP; 8 Jul 2001 13:08:38 -0000
Received: (qmail 46597 invoked by uid 0); 8 Jul 2001 13:08:38 -0000
Received: (ofmipd roceinante.lp.lviv.ua); 8 Jul 2001 13:08:16 -0000
Date: 8 Jul 2001 16:07:36 +0300
Message-ID: <6611905158.20010708160736@polynet.lviv.ua>
From: "Andriy Kopystyansky" <anri@polynet.lviv.ua>
To: imp@lists.horde.org
X-Mailer: The Bat! (v1.52f)
Organization: PolyNet ISP
X-Priority: 3 (Normal)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Subject: Latest patch fix
Hi Chuck, All,
Looks like I was too haste sending latest patch for applying Personal
Info preferences for message composing. It works with 'From' field
preference but doesnt with signature, sig_dashes and sig_first.
Please, dont kill me, I was just so happy to have nice 'From' address
that didnt figure out still not working signature...
Ok, here is the patch to make all those things work.
I apologize to all people who already applied previous patch.
Please, unpatch, and, if you are sure in what you do, apply this one.
Anyhow, it's just a temporarily workaround made in order 'to make
things better'. The best decision is: NOT applying any patches till
not approved by developers.
With hope Chuck will not kick me from the list, ;)
Andriy Kopystyansky,
Webmaster at PolyNet.
patch follows:
________________________________________________________________________
17c17
< global $conf, $imp, $prefs;
---
> global $conf, $imp, $prefs, $identities, $default_identity;
34c34
< $name = $prefs->getValue('fullname');
---
> $name = $identities[$default_identity]['fullname'];
284a285,299
> if (!($identities = @unserialize($prefs->getValue('identities')))
> || count($identities) == 0) {
> $identities = array();
> $identities[0] = array('id' => _("Default identity"),
> 'fullname' => $prefs->getValue('fullname'),
> 'from_addr' => $prefs->getValue('from_addr'),
> 'replyto_addr' => $prefs->getValue('replyto_addr'),
> 'signature' => $prefs->getValue('signature'),
> 'sig_dashes' => $prefs->getValue('sig_dashes'),
> 'sig_first' => $prefs->getValue('sig_first'));
> }
> if (($default_identity = $prefs->getValue('default_identity')) == null
> || !isset($identities[$default_identity])) {
> $default_identity = 0;
> }
917,918c932,933
< if ($get_sig && ($sig = $prefs->getValue('signature'))) {
< if ($prefs->getValue('sig_dashes')) {
---
> if ($get_sig && ($sig = $identities[$default_identity]['signature'])) {
> if ($identities[$default_identity]['sig_dashes']) {
924c939
< if (isset($msg) && $prefs->getValue('sig_first')) {
---
> if (isset($msg) && $identities[$default_identity]['sig_first']) {
__________________________________________________________________________
>From marc@register4less.com Date: Sun, 8 Jul 2001 10:38:58 -0400
Return-Path: <marc@register4less.com>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 63454 invoked from network); 8 Jul 2001 14:39:00 -0000
Received: from modemcable063.106-200-24.mtl.mc.videotron.ca (HELO whitestar.visualocity.com) (24.200.106.63)
by horde.org with SMTP; 8 Jul 2001 14:39:00 -0000
Received: (from apache@localhost)
by whitestar.visualocity.com (8.11.2/8.11.2) id f68Ecwb05279
for imp@lists.horde.org; Sun, 8 Jul 2001 10:38:58 -0400
X-Authentication-Warning: whitestar.visualocity.com: apache set sender to marc@register4less.com using -f
Received: from 24.200.106.63 ( [24.200.106.63])
as user marc_jauvin_com@webmail4less.com by mail.jauvin.com.it.homeip.net with HTTP;
Sun, 8 Jul 2001 10:38:58 -0400
Message-ID: <994603138.3b4870825db93@mail.jauvin.com.it.homeip.net>
Date: Sun, 8 Jul 2001 10:38:58 -0400
From: Marc Jauvin <marc@register4less.com>
To: imp@lists.horde.org
References: <3B44BBBD.22776.BD29E@localhost> <3B45520B.9A1D98FC@siu.edu> <994425418.3b45ba4a149fe@jauvin.com.it.homeip.net> <3B469209.DD58A5A5@siu.edu> <994514472.3b47162881ad5@jauvin.com.it.homeip.net> <3B47E195.FD3515FE@siu.edu>
In-Reply-To: <3B47E195.FD3515FE@siu.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: 24.200.106.63
Subject: Re: [imp] contact list not being saved...
If you are familiar with LDAP, it's probably better to go that way;
There is no documentation for the SQL structure, just scripts to create it...
--
marc
Back Up My Hard Drive? I Can't Find The Reverse Switch!
Quoting Scott Smith <ssmith@siu.edu>:
> Would it be easier to setup a ldap server on the same server to do the same
> thing?
>
> Is the DB structures hard to create? Is there suffecient docs in the
> horde/scripts/db/ directory?
>
> Thanks agian.
>
> Marc Jauvin wrote:
>
> > If you select "sql", you will have to create the 'horde_prefs' table in
> the
> > 'horde' database... you can look in "horde/scripts/db/" for the DB
> structures to
> > create.
> >
> > Regards,
> >
> > --
> > marc
> >
> > Back Up My Hard Drive? I Can't Find The Reverse Switch!
> >
> > Quoting Scott Smith <ssmith@siu.edu>:
> >
> > > Thanks, I'll try this next week when I'm onsite.
> > >
> > > I'm not sure on the version, however I think it's 2.4.X, but it very
> well
> > > could be
> > > 2.3.X.
> > >
> > > I'll repost once I find out if it works or if I still have problems.
> > > Thanks again.
> > >
> > > Marc Jauvin wrote:
> > >
> > > > It depends of the version you are using; for 2.3.X, you will find the
> > > following
> > > > comment in horde/config/horde.php.dist that would explain your
> problem:
> > > >
> > > > // What preferences driver should we use? Valid values are 'none'
> > > > // (meaning use system defaults and don't save any user preferences),
> > > > // 'session' (preferences only persist during the login), 'ldap',
> > > > // and 'sql'.
> > > > $conf['prefs']['driver'] = 'none';
> > > >
> > > > --
> > > > marc
> > > >
> > > > Back Up My Hard Drive? I Can't Find The Reverse Switch!
> > > >
> > > > Quoting Scott Smith <ssmith@siu.edu>:
> > > >
> > > > > I got a report from a person that I setup IMP on their server.
> > > > >
> > > > > His report was that after he creates users/contacts in his contact
> list
> > > > > they stay for that session. However if he logs out, and then logs
> back
> > > > > in they are all empty again.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > >
> > > > > --
> > > > > 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
> > > > >
> > > > >
> > > >
> > > > --
> > > > 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
> > >
> >
> > --
> > 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
>
>From janmailing@gmx.de Date: Sun, 8 Jul 2001 15:14:52 +0000
Return-Path: <janmailing@gmx.de>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 64620 invoked from network); 8 Jul 2001 15:17:04 -0000
Received: from mailout03.sul.t-online.com (HELO mailout03.sul.t-online.de) (194.25.134.81)
by horde.org with SMTP; 8 Jul 2001 15:17:04 -0000
Received: from fwd02.sul.t-online.de
by mailout03.sul.t-online.de with smtp
id 15JGIs-0002le-03; Sun, 08 Jul 2001 17:16:58 +0200
Received: from linux.wg.de (320034214675-0001@[217.80.111.15]) by fmrl02.sul.t-online.com
with esmtp id 15JGIl-10Ix3AC; Sun, 8 Jul 2001 17:16:51 +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 f68FEqR03608
for <imp@lists.horde.org>; Sun, 8 Jul 2001 17:14:52 +0200
Received: from 192.168.60.1 ( [192.168.60.1])
as user jan@mail.wg.de by linux.wg.de with HTTP;
Sun, 8 Jul 2001 15:14:52 +0000
Message-ID: <994605292.3b4878ec6a36a@linux.wg.de>
Date: Sun, 8 Jul 2001 15:14:52 +0000
From: Jan Schneider <janmailing@gmx.de>
To: imp@lists.horde.org
References: <Pine.HPX.4.33.0107052152160.11277-100000@rwja.umdnj.edu> <994410561.3b4580420296a@linux.wg.de> <994434373.3b45dd45d2121@grendel.umdnj.edu>
In-Reply-To: <994434373.3b45dd45d2121@grendel.umdnj.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] summary is broken
I'll code a pref for selecting the days/weeks to display in the summary as soon
as I have the time to.
Jan.
Zitat von Cliff Green <green@UMDNJ.EDU>:
> Quoting Jan Schneider <janmailing@gmx.de>:
>
> > The kronolith summary works for me without problems.
> > Do you have any error messages or just an empty summary?
> >
> > Jan.
>
> Just an empty summary. However, I just added an entry for tomorrow, and the
>
> summary shows it, but doesn't show entries for two weeks from now. So, I was
>
> mistaken. In kronolithSummary, it looks like it's hard coded to show entries
>
> for the next 7 days. I suppose I could try adding a $prefs value for
> something
> like summarysize.
>
> c
> --
> Cliff Green
> Academic Computing Services - UMDNJ
> signature under NDA
>
> -------------------------------------------------
> This mail sent through IMP: http://horde.org/imp/
>
>
> --
> 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 janmailing@gmx.de Date: Sun, 8 Jul 2001 15:22:03 +0000
Return-Path: <janmailing@gmx.de>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 65575 invoked from network); 8 Jul 2001 15:26:59 -0000
Received: from mailout00.sul.t-online.com (HELO mailout00.sul.t-online.de) (194.25.134.16)
by horde.org with SMTP; 8 Jul 2001 15:26:59 -0000
Received: from fwd06.sul.t-online.de
by mailout00.sul.t-online.de with smtp
id 15JGSX-0000j5-08; Sun, 08 Jul 2001 17:26:57 +0200
Received: from linux.wg.de (320034214675-0001@[217.80.111.15]) by fmrl06.sul.t-online.com
with esmtp id 15JGSR-1c01iKC; Sun, 8 Jul 2001 17:26:51 +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 f68FM3R03653
for <imp@lists.horde.org>; Sun, 8 Jul 2001 17:22:03 +0200
Received: from 192.168.60.1 ( [192.168.60.1])
as user jan@mail.wg.de by linux.wg.de with HTTP;
Sun, 8 Jul 2001 15:22:03 +0000
Message-ID: <994605723.3b487a9b2f9ea@linux.wg.de>
Date: Sun, 8 Jul 2001 15:22:03 +0000
From: Jan Schneider <janmailing@gmx.de>
To: imp@lists.horde.org
References: <6611905158.20010708160736@polynet.lviv.ua>
In-Reply-To: <6611905158.20010708160736@polynet.lviv.ua>
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] Latest patch fix
Hi,
I'm back on the list again - had a busy weekend so far. ;-)
The necessary prefs should be set once you selected a default indentity. What
actually happens if you select another default identity is that the fields from
this identity are copied into the old prefs fields (from_addr, fullname etc.)
If this doesn't happen it's a bug in the identity prefs section and shouldn't
be fixed in compose.php.
Did you select a default identity? If so and if it still doesn't work, could
you please give us your identities/personal information section of your
prefs.php file?
Jan.
Zitat von Andriy Kopystyansky <anri@polynet.lviv.ua>:
> Hi Chuck, All,
> Looks like I was too haste sending latest patch for applying Personal
> Info preferences for message composing. It works with 'From' field
> preference but doesnt with signature, sig_dashes and sig_first.
> Please, dont kill me, I was just so happy to have nice 'From' address
> that didnt figure out still not working signature...
> Ok, here is the patch to make all those things work.
> I apologize to all people who already applied previous patch.
> Please, unpatch, and, if you are sure in what you do, apply this one.
> Anyhow, it's just a temporarily workaround made in order 'to make
> things better'. The best decision is: NOT applying any patches till
> not approved by developers.
>
> With hope Chuck will not kick me from the list, ;)
> Andriy Kopystyansky,
> Webmaster at PolyNet.
>
> patch follows:
> ________________________________________________________________________
>
> 17c17
> < global $conf, $imp, $prefs;
> ---
> > global $conf, $imp, $prefs, $identities, $default_identity;
> 34c34
> < $name = $prefs->getValue('fullname');
> ---
> > $name = $identities[$default_identity]['fullname'];
> 284a285,299
> > if (!($identities = @unserialize($prefs->getValue('identities')))
> > || count($identities) == 0) {
> > $identities = array();
> > $identities[0] = array('id' => _("Default identity"),
> > 'fullname' => $prefs->getValue('fullname'),
> > 'from_addr' => $prefs->getValue('from_addr'),
> > 'replyto_addr' => $prefs->getValue('replyto_addr'),
> > 'signature' => $prefs->getValue('signature'),
> > 'sig_dashes' => $prefs->getValue('sig_dashes'),
> > 'sig_first' => $prefs->getValue('sig_first'));
> > }
> > if (($default_identity = $prefs->getValue('default_identity')) == null
> > || !isset($identities[$default_identity])) {
> > $default_identity = 0;
> > }
> 917,918c932,933
> < if ($get_sig && ($sig = $prefs->getValue('signature'))) {
> < if ($prefs->getValue('sig_dashes')) {
> ---
> > if ($get_sig && ($sig = $identities[$default_identity]['signature'])) {
> > if ($identities[$default_identity]['sig_dashes']) {
> 924c939
> < if (isset($msg) && $prefs->getValue('sig_first')) {
> ---
> > if (isset($msg) && $identities[$default_identity]['sig_first']) {
>
> __________________________________________________________________________
>
>
> --
> 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 janmailing@gmx.de Date: Sun, 8 Jul 2001 16:47:31 +0000
Return-Path: <janmailing@gmx.de>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 67901 invoked from network); 8 Jul 2001 16:56:55 -0000
Received: from mailout00.sul.t-online.com (HELO mailout00.sul.t-online.de) (194.25.134.16)
by horde.org with SMTP; 8 Jul 2001 16:56:55 -0000
Received: from fwd00.sul.t-online.de
by mailout00.sul.t-online.de with smtp
id 15JHra-00077r-08; Sun, 08 Jul 2001 18:56:54 +0200
Received: from linux.wg.de (320034214675-0001@[217.80.111.15]) by fmrl00.sul.t-online.com
with esmtp id 15JHrX-0BdpNgC; Sun, 8 Jul 2001 18:56:51 +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 f68GlWR04619
for <imp@lists.horde.org>; Sun, 8 Jul 2001 18:47:32 +0200
Received: from 192.168.60.1 ( [192.168.60.1])
as user jan@mail.wg.de by linux.wg.de with HTTP;
Sun, 8 Jul 2001 16:47:31 +0000
Message-ID: <994610851.3b488ea3c21a9@linux.wg.de>
Date: Sun, 8 Jul 2001 16:47:31 +0000
From: Jan Schneider <janmailing@gmx.de>
To: imp@lists.horde.org
References: <Pine.HPX.4.33.0107052152160.11277-100000@rwja.umdnj.edu> <994410561.3b4580420296a@linux.wg.de> <994434373.3b45dd45d2121@grendel.umdnj.edu> <994605292.3b4878ec6a36a@linux.wg.de>
In-Reply-To: <994605292.3b4878ec6a36a@linux.wg.de>
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] summary is broken
I've had the time! :-)
Zitat von Jan Schneider <janmailing@gmx.de>:
> I'll code a pref for selecting the days/weeks to display in the summary as
> soon
> as I have the time to.
>
> Jan.
>
> Zitat von Cliff Green <green@UMDNJ.EDU>:
>
> > Quoting Jan Schneider <janmailing@gmx.de>:
> >
> > > The kronolith summary works for me without problems.
> > > Do you have any error messages or just an empty summary?
> > >
> > > Jan.
> >
> > Just an empty summary. However, I just added an entry for tomorrow, and
> the
> >
> > summary shows it, but doesn't show entries for two weeks from now. So, I
> was
> >
> > mistaken. In kronolithSummary, it looks like it's hard coded to show
> entries
> >
> > for the next 7 days. I suppose I could try adding a $prefs value for
> > something
> > like summarysize.
> >
> > c
> > --
> > Cliff Green
> > Academic Computing Services - UMDNJ
> > signature under NDA
> >
> > -------------------------------------------------
> > This mail sent through IMP: http://horde.org/imp/
> >
> >
> > --
> > 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
>
>
::::::::::::::::::::::::::::::::::::::::
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
::::::::::::::::::::::::::::::::::::::::::::::