[bugs] [Bug 492] Changed - Javascript error due to an small typo
in imp-2.2.3/locale/fr/message.lang
Brent J. Nordquist
bjn@horde.org
Tue, 10 Oct 2000 13:02:28 -0500 (CDT)
On Tue, 10 Oct 2000, bugs@bugs.horde.org <bugs@bugs.horde.org> wrote:
> ! Status: CLOSED
> Resolution: FIXED
I did forget to close 493... but I was going to leave 492 open until we
heard from him. No biggie.
--
Brent J. Nordquist <bjn@horde.org>
Yahoo!: Brent_Nordquist / AIM: BrentJNordquist / ICQ: 76158942
>From bugs@bugs.horde.org Date: Wed, 11 Oct 2000 09:45:34 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 40727 invoked from network); 11 Oct 2000 12:44:11 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Oct 2000 12:44:11 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJKMpe>; Wed, 11 Oct 2000 09:45:34 -0300
From: bugs@bugs.horde.org
Reply-To: bugs@horde.org
To: chuck@horde.org, benoit@proxad.net, bugs@horde.org
Message-Id: <20001011124544Z92715-13448+261@athena.chebucto.ns.ca>
Date: Wed, 11 Oct 2000 09:45:34 -0300
Subject: [Bug 494] New - The logging used by IMP does not log the real IP address of users behind a proxy
http://bugs.horde.org/show_bug.cgi?id=494
*** shadow/494 Wed Oct 11 09:45:34 2000
--- shadow/494.tmp.20586 Wed Oct 11 09:45:34 2000
***************
*** 0 ****
--- 1,53 ----
+ Bug#: 494
+ Product: Horde
+ Version: 2.2 Stable
+ Platform: PHP Code
+ OS/Version: Linux
+ Status: NEW
+ Resolution:
+ Severity: enhancement
+ Priority: P3
+ Component: IMP
+ Area: BUILD
+ AssignedTo: chuck@horde.org
+ ReportedBy: benoit@proxad.net
+ URL:
+ Summary: The logging used by IMP does not log the real IP address of users behind a proxy
+
+ Some proxies provides a variable in the http headers to give the real IP address
+ of the user behind the proxy (NetCache and Squid does that).
+
+ It could be a good idea to log also this information into syslog but AFAIK,
+ there is no standard for the X-Forwarded-For: header so you must test that the
+ information given looks like an real Internet address.
+
+ The patch included below work with my configuration (Linux/Apache/Php3/Netcache)
+ and use the PCRE to validate the variable :
+ diff -uNr imp-2.2.3-vanilla/mailbox.php3 imp-2.2.3/mailbox.php3
+ --- imp-2.2.3-vanilla/mailbox.php3 Thu Sep 21 11:32:12 2000
+ +++ imp-2.2.3/mailbox.php3 Wed Oct 11 14:35:38 2000
+ @@ -234,8 +234,12 @@
+ openlog($default->log_ident, LOG_PID,
+ $default->log_stats_facil);
+ if ($default->log_stats)
+ syslog($default->log_prio, "mailbox.php3
+ $REMOTE_ADDR login SUCCESS $imp->server:$imp->port as $imp->user $language");
+ - if ($default->log_auth)
+ - syslog($default->log_prio |
+ $default->log_auth_facil, "Login $REMOTE_ADDR to $imp->server:$imp->port as
+ $imp->user");
+ + if ($default->log_auth) {
+ + if (($HTTP_X_FORWARDED_FOR) && (preg_match
+ ("/^[0-9.]{8,16}$/", $HTTP_X_FORWARDED_FOR)))
+ + syslog($default->log_prio |
+ $default->log_auth_facil, "Login $REMOTE_ADDR ($HTTP_X_FORWARDED_FOR) to
+ $imp->server:$imp->port as $imp->user");
+ + else
+ + syslog($default->log_prio |
+ $default->log_auth_facil, "Login $REMOTE_ADDR to $imp->server:$imp->port as
+ $imp->user");
+ + }
+ closelog();
+ }
+ break;
+
>From bugs@bugs.horde.org Date: Thu, 12 Oct 2000 17:56:30 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 67296 invoked from network); 12 Oct 2000 20:54:53 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 12 Oct 2000 20:54:53 -0000
Received: by athena.chebucto.ns.ca id <S92723AbQJLU4a>; Thu, 12 Oct 2000 17:56:30 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001012205641Z92723-13446+349@athena.chebucto.ns.ca>
Date: Thu, 12 Oct 2000 17:56:30 -0300
Subject: [Bug 495] New - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Thu Oct 12 17:56:30 2000
--- shadow/495.tmp.3856 Thu Oct 12 17:56:30 2000
***************
*** 0 ****
--- 1,22 ----
+ Bug#: 495
+ Product: Horde
+ Version: 2.2 Stable
+ Platform: other
+ OS/Version: All
+ Status: NEW
+ Resolution:
+ Severity: major
+ Priority: P2
+ Component: IMP
+ Area: BUILD
+ AssignedTo: chuck@horde.org
+ ReportedBy: percy@py.dhs.org
+ URL:
+ Summary: scripts/database/*.sql field length error (sid)
+
+ In horde/scripts/database/*.sql, the length of the sid field of active_sessions
+ are set tp 32, which according to test.php3, is something like "Session ID:
+ 1_d7631201df515e9595ba14d9fac1637c" - which means the sid needs at least a
+ varchar(34) or more. It must be either the leading "1_" has mistakenly got into
+ the SQL query or the varchar(32) should be changed somehow. BTW, the
+ imp/docs/DATABASE says it's a varchar(32).
>From bugs@bugs.horde.org Date: Thu, 12 Oct 2000 23:39:30 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 76044 invoked from network); 13 Oct 2000 02:37:47 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 02:37:47 -0000
Received: by athena.chebucto.ns.ca id <S92725AbQJMCja>; Thu, 12 Oct 2000 23:39:30 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001013023941Z92725-13446+355@athena.chebucto.ns.ca>
Date: Thu, 12 Oct 2000 23:39:30 -0300
Subject: [Bug 495] Changed - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Thu Oct 12 17:56:30 2000
--- shadow/495.tmp.9737 Thu Oct 12 23:39:30 2000
***************
*** 9,15 ****
Priority: P2
Component: IMP
Area: BUILD
! AssignedTo: chuck@horde.org
ReportedBy: percy@py.dhs.org
URL:
Summary: scripts/database/*.sql field length error (sid)
--- 9,15 ----
Priority: P2
Component: IMP
Area: BUILD
! AssignedTo: bjn@horde.org
ReportedBy: percy@py.dhs.org
URL:
Summary: scripts/database/*.sql field length error (sid)
***************
*** 20,22 ****
--- 20,30 ----
varchar(34) or more. It must be either the leading "1_" has mistakenly got into
the SQL query or the varchar(32) should be changed somehow. BTW, the
imp/docs/DATABASE says it's a varchar(32).
+
+ ------- Additional Comments From bjn@horde.org 10/12/00 23:39 -------
+ As far as I'm aware, session IDs like "N_xxxxxxx...", in other words, 32
+ characters with an "N_" prefix, are only generated when PHPLIB is configured to
+ use shared memory... in which case, they don't need to be stored in the SQL
+ database, and the 32-char limit won't be a problem. I don't believe this is a
+ bug... are you certain that what you're seeing has actually caused something to
+ break? If so, please give more details.
>From bugs@bugs.horde.org Date: Fri, 13 Oct 2000 07:30:19 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 89002 invoked from network); 13 Oct 2000 10:28:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 10:28:50 -0000
Received: by athena.chebucto.ns.ca id <S92726AbQJMKaT>; Fri, 13 Oct 2000 07:30:19 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001013103031Z92726-13446+369@athena.chebucto.ns.ca>
Date: Fri, 13 Oct 2000 07:30:19 -0300
Subject: [Bug 496] New - Compose window contains no data, problem with php3 3.0.17
http://bugs.horde.org/show_bug.cgi?id=496
*** shadow/496 Fri Oct 13 07:30:19 2000
--- shadow/496.tmp.20388 Fri Oct 13 07:30:19 2000
***************
*** 0 ****
--- 1,24 ----
+ Bug#: 496
+ Product: Horde
+ Version: 2.2 Stable
+ Platform: All Browsers
+ OS/Version: All
+ Status: NEW
+ Resolution:
+ Severity: normal
+ Priority: P2
+ Component: IMP
+ Area: BUILD
+ AssignedTo: chuck@horde.org
+ ReportedBy: liinu@uta.fi
+ URL:
+ Summary: Compose window contains no data, problem with php3 3.0.17
+
+ Something important must have changed when php3 was updated from 3.0.16 to
+ 3.0.17.
+
+ Symptoms: Compose window when pushing "send mail" gives only errormessage:
+ "Document contains no data".
+
+ Quick fix: either downgrade back to php3 version 3.0.16 (not usefull due to
+ security problems with formatted strings) or use php4 4.0.3 or later
>From bugs@bugs.horde.org Date: Fri, 13 Oct 2000 09:52:08 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 93153 invoked from network); 13 Oct 2000 12:50:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 12:50:39 -0000
Received: by athena.chebucto.ns.ca id <S92725AbQJMMwI>; Fri, 13 Oct 2000 09:52:08 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001013125223Z92725-13446+377@athena.chebucto.ns.ca>
Date: Fri, 13 Oct 2000 09:52:08 -0300
Subject: [Bug 496] Changed - Compose window contains no data, problem with php3 3.0.17
http://bugs.horde.org/show_bug.cgi?id=496
*** shadow/496 Fri Oct 13 07:30:19 2000
--- shadow/496.tmp.22765 Fri Oct 13 09:52:08 2000
***************
*** 22,24 ****
--- 22,36 ----
Quick fix: either downgrade back to php3 version 3.0.16 (not usefull due to
security problems with formatted strings) or use php4 4.0.3 or later
+
+ ------- Additional Comments From liinu@uta.fi 10/13/00 09:52 -------
+ It would seem that problem is not in IMP's php code but in php3 Apache module.
+ Apache process with this php3 3.0.17 modules seems to die with Segmentation
+ Fault when any button is pressed within compose window.
+
+ Though minor typo in imp/templates/compose/compose.inc:
+ Line 48 or there abouts:
+ <input notab ... ... onClick="return submit_and_sign(document.compose)">
+ should be:
+ <input notab ... ... onClick="return submit_and_sign(document.compose);">
+
>From bugs@bugs.horde.org Date: Fri, 13 Oct 2000 13:38:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 6586 invoked from network); 13 Oct 2000 16:36:38 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 16:36:38 -0000
Received: by athena.chebucto.ns.ca id <S92725AbQJMQiZ>; Fri, 13 Oct 2000 13:38:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001013163833Z92725-13447+389@athena.chebucto.ns.ca>
Date: Fri, 13 Oct 2000 13:38:25 -0300
Subject: [Bug 496] Changed - Compose window contains no data, problem with php3 3.0.17
http://bugs.horde.org/show_bug.cgi?id=496
*** shadow/496 Fri Oct 13 09:52:08 2000
--- shadow/496.tmp.26601 Fri Oct 13 13:38:25 2000
***************
*** 3,10 ****
Version: 2.2 Stable
Platform: All Browsers
OS/Version: All
! Status: NEW
! Resolution:
Severity: normal
Priority: P2
Component: IMP
--- 3,10 ----
Version: 2.2 Stable
Platform: All Browsers
OS/Version: All
! Status: RESOLVED
! Resolution: INVALID
Severity: normal
Priority: P2
Component: IMP
***************
*** 34,36 ****
--- 34,42 ----
should be:
<input notab ... ... onClick="return submit_and_sign(document.compose);">
+
+ ------- Additional Comments From chuck@horde.org 10/13/00 13:38 -------
+ If php is crashing, then this isn't an IMP problem. Go to http://bugs.php.net/,
+ read the dos-and-don'ts, get a backtrace, and file a bug report.
+
+ The javascript typo is fixed in cvs, thanks.
>From bugs@bugs.horde.org Date: Fri, 13 Oct 2000 13:38:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 6639 invoked from network); 13 Oct 2000 16:36:43 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 16:36:43 -0000
Received: by athena.chebucto.ns.ca id <S92726AbQJMQic>; Fri, 13 Oct 2000 13:38:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001013163833Z92726-13448+394@athena.chebucto.ns.ca>
Date: Fri, 13 Oct 2000 13:38:32 -0300
Subject: [Bug 496] Changed - Compose window contains no data, problem with php3 3.0.17
http://bugs.horde.org/show_bug.cgi?id=496
*** shadow/496 Fri Oct 13 13:38:25 2000
--- shadow/496.tmp.26611 Fri Oct 13 13:38:32 2000
***************
*** 3,9 ****
Version: 2.2 Stable
Platform: All Browsers
OS/Version: All
! Status: RESOLVED
Resolution: INVALID
Severity: normal
Priority: P2
--- 3,9 ----
Version: 2.2 Stable
Platform: All Browsers
OS/Version: All
! Status: CLOSED
Resolution: INVALID
Severity: normal
Priority: P2
>From bugs@bugs.horde.org Date: Fri, 13 Oct 2000 17:52:33 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 24397 invoked from network); 13 Oct 2000 20:50:52 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Oct 2000 20:50:52 -0000
Received: by athena.chebucto.ns.ca id <S92728AbQJMUwd>; Fri, 13 Oct 2000 17:52:33 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001013205245Z92728-13449+449@athena.chebucto.ns.ca>
Date: Fri, 13 Oct 2000 17:52:33 -0300
Subject: [Bug 495] Changed - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Thu Oct 12 23:39:30 2000
--- shadow/495.tmp.31212 Fri Oct 13 17:52:32 2000
***************
*** 3,9 ****
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: NEW
Resolution:
Severity: major
Priority: P2
--- 3,9 ----
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: ASSIGNED
Resolution:
Severity: major
Priority: P2
***************
*** 28,30 ****
--- 28,33 ----
database, and the 32-char limit won't be a problem. I don't believe this is a
bug... are you certain that what you're seeing has actually caused something to
break? If so, please give more details.
+
+ ------- Additional Comments From chuck@horde.org 10/13/00 17:52 -------
+ Brent's analysis is correct, afaik; also, if it's not, it's a phplib problem.
>From bugs@bugs.horde.org Date: Sat, 14 Oct 2000 00:13:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35213 invoked from network); 14 Oct 2000 03:12:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Oct 2000 03:12:30 -0000
Received: by athena.chebucto.ns.ca id <S92727AbQJNDN6>; Sat, 14 Oct 2000 00:13:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, benoit@proxad.net, bugs@horde.org
Message-Id: <20001014031401Z92727-13448+416@athena.chebucto.ns.ca>
Date: Sat, 14 Oct 2000 00:13:58 -0300
Subject: [Bug 494] Changed - The logging used by IMP does not log the real IP address of users behind a proxy
http://bugs.horde.org/show_bug.cgi?id=494
*** shadow/494 Wed Oct 11 09:45:34 2000
--- shadow/494.tmp.5882 Sat Oct 14 00:13:58 2000
***************
*** 3,10 ****
Version: 2.2 Stable
Platform: PHP Code
OS/Version: Linux
! Status: NEW
! Resolution:
Severity: enhancement
Priority: P3
Component: IMP
--- 3,10 ----
Version: 2.2 Stable
Platform: PHP Code
OS/Version: Linux
! Status: RESOLVED
! Resolution: FIXED
Severity: enhancement
Priority: P3
Component: IMP
***************
*** 51,53 ****
--- 51,56 ----
}
break;
+
+ ------- Additional Comments From chuck@horde.org 10/14/00 00:13 -------
+ I've added logging of this in the case of failed logins to IMP 2.3 cvs.
>From bugs@bugs.horde.org Date: Sat, 14 Oct 2000 00:15:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35409 invoked from network); 14 Oct 2000 03:13:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Oct 2000 03:13:24 -0000
Received: by athena.chebucto.ns.ca id <S92727AbQJNDPC>; Sat, 14 Oct 2000 00:15:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, benoit@proxad.net, bugs@horde.org
Message-Id: <20001014031516Z92727-13447+425@athena.chebucto.ns.ca>
Date: Sat, 14 Oct 2000 00:15:02 -0300
Subject: [Bug 494] Changed - The logging used by IMP does not log the real IP address of users behind a proxy
http://bugs.horde.org/show_bug.cgi?id=494
*** shadow/494 Sat Oct 14 00:13:58 2000
--- shadow/494.tmp.5894 Sat Oct 14 00:15:02 2000
***************
*** 3,9 ****
Version: 2.2 Stable
Platform: PHP Code
OS/Version: Linux
! Status: RESOLVED
Resolution: FIXED
Severity: enhancement
Priority: P3
--- 3,9 ----
Version: 2.2 Stable
Platform: PHP Code
OS/Version: Linux
! Status: CLOSED
Resolution: FIXED
Severity: enhancement
Priority: P3
>From bugs@bugs.horde.org Date: Sat, 14 Oct 2000 07:58:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49032 invoked from network); 14 Oct 2000 10:57:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Oct 2000 10:57:09 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJNK65>; Sat, 14 Oct 2000 07:58:57 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001014105906Z92734-13449+474@athena.chebucto.ns.ca>
Date: Sat, 14 Oct 2000 07:58:57 -0300
Subject: [Bug 495] Changed - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Fri Oct 13 17:52:32 2000
--- shadow/495.tmp.13684 Sat Oct 14 07:58:57 2000
***************
*** 31,33 ****
--- 31,38 ----
------- Additional Comments From chuck@horde.org 10/13/00 17:52 -------
Brent's analysis is correct, afaik; also, if it's not, it's a phplib problem.
+
+ ------- Additional Comments From percy@py.dhs.org 10/14/00 07:58 -------
+ I think I have messed up with the configurations last time (and also the
+ netscape cache/cookies, I think, when I switched from shm to pgsql.) It's okay
+ now. Sorry for the false alarm.
>From bugs@bugs.horde.org Date: Sat, 14 Oct 2000 08:31:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49674 invoked from network); 14 Oct 2000 11:30:02 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Oct 2000 11:30:02 -0000
Received: by athena.chebucto.ns.ca id <S92712AbQJNLbt>; Sat, 14 Oct 2000 08:31:49 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001014113153Z92712-13448+429@athena.chebucto.ns.ca>
Date: Sat, 14 Oct 2000 08:31:49 -0300
Subject: [Bug 495] Changed - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Sat Oct 14 07:58:57 2000
--- shadow/495.tmp.14400 Sat Oct 14 08:31:49 2000
***************
*** 3,10 ****
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: ASSIGNED
! Resolution:
Severity: major
Priority: P2
Component: IMP
--- 3,10 ----
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: RESOLVED
! Resolution: INVALID
Severity: major
Priority: P2
Component: IMP
>From bugs@bugs.horde.org Date: Sat, 14 Oct 2000 08:31:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49725 invoked from network); 14 Oct 2000 11:30:08 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Oct 2000 11:30:08 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJNLb5>; Sat, 14 Oct 2000 08:31:57 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, percy@py.dhs.org, bugs@horde.org
Message-Id: <20001014113208Z92734-13448+430@athena.chebucto.ns.ca>
Date: Sat, 14 Oct 2000 08:31:57 -0300
Subject: [Bug 495] Changed - scripts/database/*.sql field length error (sid)
http://bugs.horde.org/show_bug.cgi?id=495
*** shadow/495 Sat Oct 14 08:31:49 2000
--- shadow/495.tmp.14410 Sat Oct 14 08:31:57 2000
***************
*** 3,9 ****
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: RESOLVED
Resolution: INVALID
Severity: major
Priority: P2
--- 3,9 ----
Version: 2.2 Stable
Platform: other
OS/Version: All
! Status: CLOSED
Resolution: INVALID
Severity: major
Priority: P2
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 09:44:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20934 invoked from network); 16 Oct 2000 12:42:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Oct 2000 12:42:50 -0000
Received: by athena.chebucto.ns.ca id <S92741AbQJPMoU>; Mon, 16 Oct 2000 09:44:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001016124427Z92741-31426+17@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 09:44:20 -0300
Subject: [Bug 497] New - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 15:30:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46052 invoked from network); 16 Oct 2000 18:29:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Oct 2000 18:29:16 -0000
Received: by athena.chebucto.ns.ca id <S92743AbQJPSa7>; Mon, 16 Oct 2000 15:30:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001016183113Z92743-31430+47@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 15:30:59 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 19:46:11 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65381 invoked from network); 16 Oct 2000 22:44:42 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Oct 2000 22:44:42 -0000
Received: by athena.chebucto.ns.ca id <S92747AbQJPWqL>; Mon, 16 Oct 2000 19:46:11 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001016224625Z92747-31432+62@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 19:46:11 -0300
Subject: [Bug 498] New - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 20:43:17 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 68230 invoked from network); 16 Oct 2000 23:41:31 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Oct 2000 23:41:31 -0000
Received: by athena.chebucto.ns.ca id <S92748AbQJPXnR>; Mon, 16 Oct 2000 20:43:17 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001016234328Z92748-31426+56@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 20:43:17 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 20:45:42 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 68327 invoked from network); 16 Oct 2000 23:43:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Oct 2000 23:43:41 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJPXpm>; Mon, 16 Oct 2000 20:45:42 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001016234543Z92749-31432+65@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 20:45:42 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Mon, 16 Oct 2000 22:05:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 69775 invoked from network); 17 Oct 2000 01:03:28 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 01:03:28 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJQBFC>; Mon, 16 Oct 2000 22:05:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ploc@bigfoot.com, bugs@horde.org
Message-Id: <20001017010517Z92749-31432+69@athena.chebucto.ns.ca>
Date: Mon, 16 Oct 2000 22:05:02 -0300
Subject: [Bug 499] New - Adding an export function for the addressbook
http://bugs.horde.org/show_bug.cgi?id=499
>From bugs@bugs.horde.org Date: Tue, 17 Oct 2000 00:52:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 72842 invoked from network); 17 Oct 2000 03:50:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 03:50:36 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJQDwM>; Tue, 17 Oct 2000 00:52:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001017035225Z92749-31430+89@athena.chebucto.ns.ca>
Date: Tue, 17 Oct 2000 00:52:12 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Tue, 17 Oct 2000 00:53:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 72900 invoked from network); 17 Oct 2000 03:51:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 03:51:30 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJQDxb>; Tue, 17 Oct 2000 00:53:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001017035340Z92749-31430+90@athena.chebucto.ns.ca>
Date: Tue, 17 Oct 2000 00:53:31 -0300
Subject: [Bug 498] Changed - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Tue, 17 Oct 2000 00:54:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 72963 invoked from network); 17 Oct 2000 03:52:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 03:52:30 -0000
Received: by athena.chebucto.ns.ca id <S92751AbQJQDy2>; Tue, 17 Oct 2000 00:54:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ploc@bigfoot.com, bugs@horde.org
Message-Id: <20001017035441Z92751-31430+91@athena.chebucto.ns.ca>
Date: Tue, 17 Oct 2000 00:54:28 -0300
Subject: [Bug 499] Changed - Adding an export function for the addressbook
http://bugs.horde.org/show_bug.cgi?id=499
>From bugs@bugs.horde.org Date: Tue, 17 Oct 2000 00:54:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 73031 invoked from network); 17 Oct 2000 03:52:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 03:52:50 -0000
Received: by athena.chebucto.ns.ca id <S92750AbQJQDyv>; Tue, 17 Oct 2000 00:54:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ploc@bigfoot.com, bugs@horde.org
Message-Id: <20001017035456Z92750-31431+72@athena.chebucto.ns.ca>
Date: Tue, 17 Oct 2000 00:54:51 -0300
Subject: [Bug 499] Changed - Adding an export function for the addressbook
http://bugs.horde.org/show_bug.cgi?id=499
>From bugs@bugs.horde.org Date: Tue, 17 Oct 2000 16:43:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 8681 invoked from network); 17 Oct 2000 19:42:00 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Oct 2000 19:42:00 -0000
Received: by athena.chebucto.ns.ca id <S92672AbQJQTnx>; Tue, 17 Oct 2000 16:43:53 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001017194353Z92672-31430+130@athena.chebucto.ns.ca>
Date: Tue, 17 Oct 2000 16:43:53 -0300
Subject: [Bug 498] Changed - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 07:23:22 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34796 invoked from network); 18 Oct 2000 10:21:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 10:21:32 -0000
Received: by athena.chebucto.ns.ca id <S92672AbQJRKXW>; Wed, 18 Oct 2000 07:23:22 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001018102332Z92672-31431+155@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 07:23:22 -0300
Subject: [Bug 500] New - A minor correction to IMP fi-locale fixing confusing error message
http://bugs.horde.org/show_bug.cgi?id=500
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 11:33:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47172 invoked from network); 18 Oct 2000 14:32:02 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 14:32:02 -0000
Received: by athena.chebucto.ns.ca id <S92672AbQJROdv>; Wed, 18 Oct 2000 11:33:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001018143358Z92672-31431+167@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 11:33:51 -0300
Subject: [Bug 500] Changed - A minor correction to IMP fi-locale fixing confusing error message
http://bugs.horde.org/show_bug.cgi?id=500
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 11:33:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47190 invoked from network); 18 Oct 2000 14:32:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 14:32:04 -0000
Received: by athena.chebucto.ns.ca id <S92713AbQJROd4>; Wed, 18 Oct 2000 11:33:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001018143358Z92713-31426+189@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 11:33:56 -0300
Subject: [Bug 500] Changed - A minor correction to IMP fi-locale fixing confusing error message
http://bugs.horde.org/show_bug.cgi?id=500
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 11:51:45 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 48917 invoked from network); 18 Oct 2000 14:49:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 14:49:58 -0000
Received: by athena.chebucto.ns.ca id <S92713AbQJROvp>; Wed, 18 Oct 2000 11:51:45 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001018145159Z92713-31430+170@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 11:51:45 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 12:19:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51191 invoked from network); 18 Oct 2000 15:17:42 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 15:17:42 -0000
Received: by athena.chebucto.ns.ca id <S92672AbQJRPTZ>; Wed, 18 Oct 2000 12:19:25 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001018151930Z92672-31431+169@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 12:19:25 -0300
Subject: [Bug 498] Changed - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 12:19:48 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51246 invoked from network); 18 Oct 2000 15:17:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 15:17:55 -0000
Received: by athena.chebucto.ns.ca id <S92730AbQJRPTs>; Wed, 18 Oct 2000 12:19:48 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001018152001Z92730-31426+192@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 12:19:48 -0300
Subject: [Bug 498] Changed - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 12:20:26 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51306 invoked from network); 18 Oct 2000 15:18:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 15:18:24 -0000
Received: by athena.chebucto.ns.ca id <S92672AbQJRPU0>; Wed, 18 Oct 2000 12:20:26 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, demian@coretech.co.nz, bugs@horde.org
Message-Id: <20001018152031Z92672-31430+174@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 12:20:26 -0300
Subject: [Bug 498] Changed - New Zealand Daylight Time is currently 13hrs ahead of GMT, IMP does not handle
http://bugs.horde.org/show_bug.cgi?id=498
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 13:35:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 62381 invoked from network); 18 Oct 2000 16:33:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 16:33:39 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJRQfZ>; Wed, 18 Oct 2000 13:35:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001018163534Z92715-31432+181@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 13:35:25 -0300
Subject: [Bug 501] New - Compose bug on Apache 1.3.14 w/ PHP 3.0.17
http://bugs.horde.org/show_bug.cgi?id=501
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 14:18:01 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 64495 invoked from network); 18 Oct 2000 17:15:57 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 17:15:57 -0000
Received: by athena.chebucto.ns.ca id <S92751AbQJRRSB>; Wed, 18 Oct 2000 14:18:01 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001018171806Z92751-31430+184@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 14:18:01 -0300
Subject: [Bug 501] Changed - Compose bug on Apache 1.3.14 w/ PHP 3.0.17
http://bugs.horde.org/show_bug.cgi?id=501
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 14:17:55 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 64546 invoked from network); 18 Oct 2000 17:16:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 17:16:05 -0000
Received: by athena.chebucto.ns.ca id <S92736AbQJRRRz>; Wed, 18 Oct 2000 14:17:55 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001018171806Z92736-31431+174@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 14:17:55 -0300
Subject: [Bug 501] Changed - Compose bug on Apache 1.3.14 w/ PHP 3.0.17
http://bugs.horde.org/show_bug.cgi?id=501
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 17:16:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 77595 invoked from network); 18 Oct 2000 20:15:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 18 Oct 2000 20:15:09 -0000
Received: by athena.chebucto.ns.ca id <S92753AbQJRUQt>; Wed, 18 Oct 2000 17:16:49 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001018201700Z92753-31432+196@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 17:16:49 -0300
Subject: [Bug 502] New -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Wed, 18 Oct 2000 23:29:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 7310 invoked from network); 19 Oct 2000 02:27:40 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 02:27:40 -0000
Received: by athena.chebucto.ns.ca id <S92713AbQJSC3c>; Wed, 18 Oct 2000 23:29:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001019022932Z92713-31430+221@athena.chebucto.ns.ca>
Date: Wed, 18 Oct 2000 23:29:32 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 05:20:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18017 invoked from network); 19 Oct 2000 08:18:28 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 08:18:28 -0000
Received: by athena.chebucto.ns.ca id <S92713AbQJSIUb>; Thu, 19 Oct 2000 05:20:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001019082032Z92713-31432+217@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 05:20:31 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 06:18:01 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 19431 invoked from network); 19 Oct 2000 09:15:59 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 09:15:58 -0000
Received: by athena.chebucto.ns.ca id <S92713AbQJSJSB>; Thu, 19 Oct 2000 06:18:01 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fredrik.westermarck@mdh.se, bugs@horde.org
Message-Id: <20001019091804Z92713-31426+242@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 06:18:01 -0300
Subject: [Bug 503] New - Mailstatus not changed from unread to read if messagebody is empty
http://bugs.horde.org/show_bug.cgi?id=503
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:27:19 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 30671 invoked from network); 19 Oct 2000 13:25:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:25:39 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSN1T>; Thu, 19 Oct 2000 10:27:19 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001019132731Z92718-31430+249@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:27:19 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:35:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31188 invoked from network); 19 Oct 2000 13:33:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:33:19 -0000
Received: by athena.chebucto.ns.ca id <S92723AbQJSNf2>; Thu, 19 Oct 2000 10:35:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fredrik.westermarck@mdh.se, bugs@horde.org
Message-Id: <20001019133532Z92723-31431+215@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:35:28 -0300
Subject: [Bug 503] Changed - Mailstatus not changed from unread to read if messagebody is empty
http://bugs.horde.org/show_bug.cgi?id=503
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:35:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31189 invoked from network); 19 Oct 2000 13:33:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:33:20 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNfS>; Thu, 19 Oct 2000 10:35:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fredrik.westermarck@mdh.se, bugs@horde.org
Message-Id: <20001019133531Z92718-31426+253@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:35:18 -0300
Subject: [Bug 503] Changed - Mailstatus not changed from unread to read if messagebody is empty
http://bugs.horde.org/show_bug.cgi?id=503
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:35:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31262 invoked from network); 19 Oct 2000 13:33:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:33:26 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJSNfS>; Thu, 19 Oct 2000 10:35:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, frank.richter@hrz.tu-chemnitz.de, bugs@horde.org
Message-Id: <20001019133531Z92715-31432+242@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:35:18 -0300
Subject: [Bug 456] Changed - Msg with attachemnt only not markes as read
http://bugs.horde.org/show_bug.cgi?id=456
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:37:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31498 invoked from network); 19 Oct 2000 13:34:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:34:46 -0000
Received: by athena.chebucto.ns.ca id <S92723AbQJSNhC>; Thu, 19 Oct 2000 10:37:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jakes@blastnet.com, bugs@horde.org
Message-Id: <20001019133702Z92723-31426+254@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:37:02 -0300
Subject: [Bug 439] Changed - Help Files Bug Fix
http://bugs.horde.org/show_bug.cgi?id=439
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:36:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31512 invoked from network); 19 Oct 2000 13:34:48 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:34:48 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJSNgv>; Thu, 19 Oct 2000 10:36:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jds@aixulsa.ulsa.mx, bugs@horde.org
Message-Id: <20001019133702Z92715-31431+216@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:36:51 -0300
Subject: [Bug 419] Changed - Recive error when execute http://myhost/horde/imp.php3 "Database error (HordeDB): Invalid SQL:insert into active_sessions ( sid, name, val,changed ) values"
http://bugs.horde.org/show_bug.cgi?id=419
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:36:55 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31531 invoked from network); 19 Oct 2000 13:34:49 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:34:49 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNgz>; Thu, 19 Oct 2000 10:36:55 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, eddieho@elinkinter.net, bugs@horde.org
Message-Id: <20001019133702Z92718-31430+252@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:36:55 -0300
Subject: [Bug 423] Changed - question about muilt-user login
http://bugs.horde.org/show_bug.cgi?id=423
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:37:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31720 invoked from network); 19 Oct 2000 13:35:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:35:06 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNhQ>; Thu, 19 Oct 2000 10:37:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stodge@sympatico.ca, bugs@horde.org
Message-Id: <20001019133717Z92718-31430+253@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:37:16 -0300
Subject: [Bug 425] Changed - Sometimes the login screen is not display, and I get a fatal error
http://bugs.horde.org/show_bug.cgi?id=425
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:37:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32123 invoked from network); 19 Oct 2000 13:35:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:35:46 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJSNhw>; Thu, 19 Oct 2000 10:37:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, kari.asikainen@imnetti.fi, bugs@horde.org
Message-Id: <20001019133802Z92715-31430+254@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:37:52 -0300
Subject: [Bug 270] Changed - Errors in Finnish locale
http://bugs.horde.org/show_bug.cgi?id=270
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32322 invoked from network); 19 Oct 2000 13:36:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:05 -0000
Received: by athena.chebucto.ns.ca id <S92730AbQJSNiQ>; Thu, 19 Oct 2000 10:38:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@eclipse.net.uk, bugs@horde.org
Message-Id: <20001019133817Z92730-31431+217@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:16 -0300
Subject: [Bug 321] Changed - session.inc typo line 122
http://bugs.horde.org/show_bug.cgi?id=321
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32329 invoked from network); 19 Oct 2000 13:36:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:07 -0000
Received: by athena.chebucto.ns.ca id <S92723AbQJSNiC>; Thu, 19 Oct 2000 10:38:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, wahle@addell.com, bugs@horde.org
Message-Id: <20001019133817Z92723-31430+255@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:02 -0300
Subject: [Bug 292] Changed - page open error
http://bugs.horde.org/show_bug.cgi?id=292
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:30 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32412 invoked from network); 19 Oct 2000 13:36:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:15 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNia>; Thu, 19 Oct 2000 10:38:30 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019133832Z92718-31430+256@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:30 -0300
Subject: [Bug 362] Changed - Lynx compose template submits wrong ActionID
http://bugs.horde.org/show_bug.cgi?id=362
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32426 invoked from network); 19 Oct 2000 13:36:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:16 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJSNiZ>; Thu, 19 Oct 2000 10:38:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019133832Z92715-31431+218@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:25 -0300
Subject: [Bug 352] Changed - config/scripts directory missing in IMP-2.2.0_pre12 tarball
http://bugs.horde.org/show_bug.cgi?id=352
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32557 invoked from network); 19 Oct 2000 13:36:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:35 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNij>; Thu, 19 Oct 2000 10:38:39 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, krauso@barr.cz, bugs@horde.org
Message-Id: <20001019133847Z92718-31426+255@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:39 -0300
Subject: [Bug 370] Changed - names of folders are not filtered
http://bugs.horde.org/show_bug.cgi?id=370
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32608 invoked from network); 19 Oct 2000 13:36:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:46 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNix>; Thu, 19 Oct 2000 10:38:53 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, igor.brezac@howstuffworks.com, bugs@horde.org
Message-Id: <20001019133902Z92734-31431+219@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:53 -0300
Subject: [Bug 395] Changed - IMP session timeout
http://bugs.horde.org/show_bug.cgi?id=395
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:38:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32623 invoked from network); 19 Oct 2000 13:36:47 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:36:47 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNi6>; Thu, 19 Oct 2000 10:38:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lannet@lannet.com.au, bugs@horde.org
Message-Id: <20001019133902Z92738-31430+257@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:38:58 -0300
Subject: [Bug 421] Changed - IMP accessing the wrong user mail account
http://bugs.horde.org/show_bug.cgi?id=421
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:39:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32723 invoked from network); 19 Oct 2000 13:37:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:37:06 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNjG>; Thu, 19 Oct 2000 10:39:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, doug@eng.auburn.edu, bugs@horde.org
Message-Id: <20001019133917Z92734-31426+256@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:39:06 -0300
Subject: [Bug 430] Changed - error line 477 of lib/horde.lib
http://bugs.horde.org/show_bug.cgi?id=430
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:39:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32783 invoked from network); 19 Oct 2000 13:37:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:37:36 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNjq>; Thu, 19 Oct 2000 10:39:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019133947Z92738-31426+258@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:39:46 -0300
Subject: [Bug 140] Changed - Qmail doesn't like getting the receipients specified with comma between
http://bugs.horde.org/show_bug.cgi?id=140
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:39:33 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32785 invoked from network); 19 Oct 2000 13:37:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:37:37 -0000
Received: by athena.chebucto.ns.ca id <S92723AbQJSNjd>; Thu, 19 Oct 2000 10:39:33 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019133947Z92723-31426+257@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:39:33 -0300
Subject: [Bug 139] Changed - duplicate messages when using qmail as MTA
http://bugs.horde.org/show_bug.cgi?id=139
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:39:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32904 invoked from network); 19 Oct 2000 13:37:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:37:46 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJSNjx>; Thu, 19 Oct 2000 10:39:53 -0300
From: bugs@bugs.horde.org
To: rkrusty@tdyc.com, daniel-wittenberg@dellmac.com, bugs@horde.org
Message-Id: <20001019134002Z92718-31432+244@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:39:53 -0300
Subject: [Bug 151] Changed - "from" not showing up correctly
http://bugs.horde.org/show_bug.cgi?id=151
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:40:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32952 invoked from network); 19 Oct 2000 13:38:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:38:06 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNkQ>; Thu, 19 Oct 2000 10:40:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@cybermail.net, bugs@horde.org
Message-Id: <20001019134018Z92734-31426+259@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:40:16 -0300
Subject: [Bug 153] Changed - sort problem with 2.2.0-pre3
http://bugs.horde.org/show_bug.cgi?id=153
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:40:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33003 invoked from network); 19 Oct 2000 13:38:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:38:15 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJSNkY>; Thu, 19 Oct 2000 10:40:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@cybermail.net, bugs@horde.org
Message-Id: <20001019134033Z92739-31426+260@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:40:24 -0300
Subject: [Bug 154] Changed - delete link with 2.2.0-pre3 gives new window.
http://bugs.horde.org/show_bug.cgi?id=154
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:40:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33016 invoked from network); 19 Oct 2000 13:38:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:38:16 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNkc>; Thu, 19 Oct 2000 10:40:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, giannici@neomedia.it, bugs@horde.org
Message-Id: <20001019134033Z92740-31430+258@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:40:32 -0300
Subject: [Bug 156] Changed - Warnings when password start with a '$'
http://bugs.horde.org/show_bug.cgi?id=156
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:40:43 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33118 invoked from network); 19 Oct 2000 13:38:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:38:35 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNkn>; Thu, 19 Oct 2000 10:40:43 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019134048Z92759-31426+261@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:40:43 -0300
Subject: [Bug 158] Changed - IMP doesn't show images tagged as image/pjpeg correctly
http://bugs.horde.org/show_bug.cgi?id=158
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:40:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33176 invoked from network); 19 Oct 2000 13:38:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:38:46 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNkw>; Thu, 19 Oct 2000 10:40:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019134103Z92738-31431+220@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:40:52 -0300
Subject: [Bug 159] Changed - Resizing a windows in netscape makes IMP stop working
http://bugs.horde.org/show_bug.cgi?id=159
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:41:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33228 invoked from network); 19 Oct 2000 13:39:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:39:46 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNlw>; Thu, 19 Oct 2000 10:41:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019134203Z92734-31426+262@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:41:52 -0300
Subject: [Bug 160] Changed - Inlined BASE64-attachments doesn't get display properly
http://bugs.horde.org/show_bug.cgi?id=160
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33229 invoked from network); 19 Oct 2000 13:39:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:39:46 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJSNmC>; Thu, 19 Oct 2000 10:42:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019134203Z92739-31432+245@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:02 -0300
Subject: [Bug 162] Changed - warning when you have no more than INBOX folder on IMAP-server
http://bugs.horde.org/show_bug.cgi?id=162
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:41:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33244 invoked from network); 19 Oct 2000 13:39:47 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:39:47 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNl6>; Thu, 19 Oct 2000 10:41:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rmo@www.hivolda.no, bugs@horde.org
Message-Id: <20001019134203Z92738-31431+221@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:41:58 -0300
Subject: [Bug 161] Changed - Folder name get showed with the full cyrus-name in IMP
http://bugs.horde.org/show_bug.cgi?id=161
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:27 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33419 invoked from network); 19 Oct 2000 13:40:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:40:16 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNm1>; Thu, 19 Oct 2000 10:42:27 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@cybermail.net, bugs@horde.org
Message-Id: <20001019134233Z92738-31432+246@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:27 -0300
Subject: [Bug 176] Changed - Incorrect handling of email address for reply/send
http://bugs.horde.org/show_bug.cgi?id=176
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33420 invoked from network); 19 Oct 2000 13:40:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:40:16 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNmV>; Thu, 19 Oct 2000 10:42:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, nhasan@nadmm.com, bugs@horde.org
Message-Id: <20001019134233Z92734-31431+222@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:21 -0300
Subject: [Bug 163] Changed - IMP fails on large messages or large attachments.
http://bugs.horde.org/show_bug.cgi?id=163
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:40 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33536 invoked from network); 19 Oct 2000 13:40:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:40:36 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNmk>; Thu, 19 Oct 2000 10:42:40 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019134248Z92738-31430+259@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:40 -0300
Subject: [Bug 180] Changed - unable to rename folder
http://bugs.horde.org/show_bug.cgi?id=180
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33589 invoked from network); 19 Oct 2000 13:40:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:40:45 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNm6>; Thu, 19 Oct 2000 10:42:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@cybermail.net, bugs@horde.org
Message-Id: <20001019134303Z92734-31426+263@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:58 -0300
Subject: [Bug 197] Changed - javascript error in 2.2.0-pre5 with Contacts page
http://bugs.horde.org/show_bug.cgi?id=197
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:42:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33590 invoked from network); 19 Oct 2000 13:40:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:40:46 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQJSNmv>; Thu, 19 Oct 2000 10:42:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, Chris.Tilbury@warwick.ac.uk, bugs@horde.org
Message-Id: <20001019134303Z92757-31430+260@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:42:51 -0300
Subject: [Bug 194] Changed - LDAP/contacts.php3 doesn't seem to work in imp-2.3.1-dev/horde-1.3.0-dev
http://bugs.horde.org/show_bug.cgi?id=194
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:15 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33694 invoked from network); 19 Oct 2000 13:41:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:06 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNnP>; Thu, 19 Oct 2000 10:43:15 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, michael@csuite.ns.ca, bugs@horde.org
Message-Id: <20001019134318Z92734-31426+264@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:15 -0300
Subject: [Bug 203] Changed - imp/index.php3 needs to define $need_horde_db
http://bugs.horde.org/show_bug.cgi?id=203
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33748 invoked from network); 19 Oct 2000 13:41:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:15 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNn2>; Thu, 19 Oct 2000 10:43:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ser@hyperreal.art.pl, bugs@horde.org
Message-Id: <20001019134333Z92734-31431+223@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:28 -0300
Subject: [Bug 205] Changed - there is no 2.2 version in bugzilla
http://bugs.horde.org/show_bug.cgi?id=205
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:22 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33749 invoked from network); 19 Oct 2000 13:41:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:16 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNnW>; Thu, 19 Oct 2000 10:43:22 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ser@hyperreal.art.pl, bugs@horde.org
Message-Id: <20001019134333Z92740-31426+265@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:22 -0300
Subject: [Bug 204] Changed - lang problems
http://bugs.horde.org/show_bug.cgi?id=204
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:37 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33861 invoked from network); 19 Oct 2000 13:41:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:36 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNnh>; Thu, 19 Oct 2000 10:43:37 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ser@hyperreal.art.pl, bugs@horde.org
Message-Id: <20001019134348Z92759-31431+224@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:37 -0300
Subject: [Bug 206] Changed - no profiles in bugzilla
http://bugs.horde.org/show_bug.cgi?id=206
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33862 invoked from network); 19 Oct 2000 13:41:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:37 -0000
Received: by athena.chebucto.ns.ca id <S92760AbQJSNno>; Thu, 19 Oct 2000 10:43:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, chojin@chojin.net, bugs@horde.org
Message-Id: <20001019134348Z92760-31426+266@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:44 -0300
Subject: [Bug 302] Changed - Security warning message in IE when clicking "BACK" on browser.
http://bugs.horde.org/show_bug.cgi?id=302
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:43:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 33963 invoked from network); 19 Oct 2000 13:41:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:41:46 -0000
Received: by athena.chebucto.ns.ca id <S92763AbQJSNn7>; Thu, 19 Oct 2000 10:43:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, administrator@nederweb.com, bugs@horde.org
Message-Id: <20001019134403Z92763-31432+247@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:43:59 -0300
Subject: [Bug 319] Changed - Error MySQL
http://bugs.horde.org/show_bug.cgi?id=319
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:44:11 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34015 invoked from network); 19 Oct 2000 13:42:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:42:06 -0000
Received: by athena.chebucto.ns.ca id <S92765AbQJSNoL>; Thu, 19 Oct 2000 10:44:11 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ron@rlt.com, bugs@horde.org
Message-Id: <20001019134418Z92765-31430+261@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:44:11 -0300
Subject: [Bug 332] Changed - error sending to multiple recipients.
http://bugs.horde.org/show_bug.cgi?id=332
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:44:22 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34073 invoked from network); 19 Oct 2000 13:42:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:42:16 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNoW>; Thu, 19 Oct 2000 10:44:22 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001019134433Z92740-31431+225@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:44:22 -0300
Subject: [Bug 345] Changed - base-64 encoded HTML attachments not decoded
http://bugs.horde.org/show_bug.cgi?id=345
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:44:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34074 invoked from network); 19 Oct 2000 13:42:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:42:16 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNo2>; Thu, 19 Oct 2000 10:44:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001019134433Z92738-31426+267@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:44:28 -0300
Subject: [Bug 346] Changed - top frame in imp/index.php3 too short
http://bugs.horde.org/show_bug.cgi?id=346
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:44:37 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34191 invoked from network); 19 Oct 2000 13:42:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:42:36 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNoh>; Thu, 19 Oct 2000 10:44:37 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001019134449Z92761-31432+248@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:44:37 -0300
Subject: [Bug 347] Changed - attachments awkward to view
http://bugs.horde.org/show_bug.cgi?id=347
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:44:55 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34249 invoked from network); 19 Oct 2000 13:42:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:42:56 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJSNoz>; Thu, 19 Oct 2000 10:44:55 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, t.takeda@planetlingo.com, bugs@horde.org
Message-Id: <20001019134504Z92739-31432+249@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:44:55 -0300
Subject: [Bug 381] Changed - Inquiry: Japanese Lungage Support
http://bugs.horde.org/show_bug.cgi?id=381
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:13 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34300 invoked from network); 19 Oct 2000 13:43:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:06 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQJSNpN>; Thu, 19 Oct 2000 10:45:13 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lepianf@free.fr, bugs@horde.org
Message-Id: <20001019134519Z92757-31432+250@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:13 -0300
Subject: [Bug 178] Changed - Language not stored in preferences
http://bugs.horde.org/show_bug.cgi?id=178
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34302 invoked from network); 19 Oct 2000 13:43:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:06 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNpG>; Thu, 19 Oct 2000 10:45:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, j.weller@bssgroup.com, bugs@horde.org
Message-Id: <20001019134519Z92740-31426+268@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:06 -0300
Subject: [Bug 400] Changed - your demo web site appears to be down
http://bugs.horde.org/show_bug.cgi?id=400
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:23 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34426 invoked from network); 19 Oct 2000 13:43:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:16 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNpX>; Thu, 19 Oct 2000 10:45:23 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rodriguez@fingo.net, bugs@horde.org
Message-Id: <20001019134534Z92761-31430+263@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:23 -0300
Subject: [Bug 290] Changed -
http://bugs.horde.org/show_bug.cgi?id=290
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34427 invoked from network); 19 Oct 2000 13:43:17 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:17 -0000
Received: by athena.chebucto.ns.ca id <S92765AbQJSNp2>; Thu, 19 Oct 2000 10:45:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ken@point0.net, bugs@horde.org
Message-Id: <20001019134534Z92765-31432+251@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:28 -0300
Subject: [Bug 295] Changed - cannot delete messages; imap_delete() failure
http://bugs.horde.org/show_bug.cgi?id=295
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:40 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34545 invoked from network); 19 Oct 2000 13:43:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:36 -0000
Received: by athena.chebucto.ns.ca id <S92766AbQJSNpk>; Thu, 19 Oct 2000 10:45:40 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, daniel-wittenberg@dellmac.com, bugs@horde.org
Message-Id: <20001019134549Z92766-31431+226@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:40 -0300
Subject: [Bug 133] Changed - problem going back to inbox
http://bugs.horde.org/show_bug.cgi?id=133
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:45:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34546 invoked from network); 19 Oct 2000 13:43:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:43:37 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQJSNpq>; Thu, 19 Oct 2000 10:45:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, daniel-wittenberg@dellmac.com, bugs@horde.org
Message-Id: <20001019134549Z92757-31430+264@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:45:46 -0300
Subject: [Bug 134] Changed - can't submit "problem"
http://bugs.horde.org/show_bug.cgi?id=134
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:46:14 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34657 invoked from network); 19 Oct 2000 13:44:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:44:06 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNqO>; Thu, 19 Oct 2000 10:46:14 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean2@biol.sc.edu, bugs@horde.org
Message-Id: <20001019134619Z92740-31432+252@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:46:14 -0300
Subject: [Bug 144] Changed - Full names from preferences aren't quoted properly in addresses.
http://bugs.horde.org/show_bug.cgi?id=144
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:46:29 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34715 invoked from network); 19 Oct 2000 13:44:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:44:26 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNq3>; Thu, 19 Oct 2000 10:46:29 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, francus@yossi.com, bugs@horde.org
Message-Id: <20001019134634Z92759-31426+269@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:46:29 -0300
Subject: [Bug 152] Changed - problem with top SendMessage button in Compose
http://bugs.horde.org/show_bug.cgi?id=152
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:46:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34776 invoked from network); 19 Oct 2000 13:44:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:44:36 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNqo>; Thu, 19 Oct 2000 10:46:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, wahle@innercite.com, bugs@horde.org
Message-Id: <20001019134649Z92740-31430+265@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:46:44 -0300
Subject: [Bug 165] Changed - Composer Text Box too small
http://bugs.horde.org/show_bug.cgi?id=165
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:46:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34859 invoked from network); 19 Oct 2000 13:45:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:05 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSNq4>; Thu, 19 Oct 2000 10:46:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, andrew@fernandes.org, bugs@horde.org
Message-Id: <20001019134704Z92768-31430+266@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:46:56 -0300
Subject: [Bug 167] Changed - cannot open nested mime attachments
http://bugs.horde.org/show_bug.cgi?id=167
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34860 invoked from network); 19 Oct 2000 13:45:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:05 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNrF>; Thu, 19 Oct 2000 10:47:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, andersdl@plattsburgh.edu, bugs@horde.org
Message-Id: <20001019134719Z92761-31431+227@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:05 -0300
Subject: [Bug 172] Changed - Malformed date in email causes barfage
http://bugs.horde.org/show_bug.cgi?id=172
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34977 invoked from network); 19 Oct 2000 13:45:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:25 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNrb>; Thu, 19 Oct 2000 10:47:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, amontiel@mpsnet.net.mx, bugs@horde.org
Message-Id: <20001019134734Z92740-31430+268@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:31 -0300
Subject: [Bug 182] Changed - Add to Contacts under message viewing window with empty content
http://bugs.horde.org/show_bug.cgi?id=182
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34978 invoked from network); 19 Oct 2000 13:45:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:26 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSNrZ>; Thu, 19 Oct 2000 10:47:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, amontiel@mpsnet.net.mx, bugs@horde.org
Message-Id: <20001019134734Z92758-31431+228@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:25 -0300
Subject: [Bug 181] Changed - Add to Contacts under message viewing window with empty content
http://bugs.horde.org/show_bug.cgi?id=181
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34993 invoked from network); 19 Oct 2000 13:45:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:26 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSNrV>; Thu, 19 Oct 2000 10:47:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019134734Z92770-31432+253@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:21 -0300
Subject: [Bug 175] Changed - Unable to send or save draft if no message body.
http://bugs.horde.org/show_bug.cgi?id=175
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35085 invoked from network); 19 Oct 2000 13:45:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:36 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSNrl>; Thu, 19 Oct 2000 10:47:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, brad@kieser.net, bugs@horde.org
Message-Id: <20001019134749Z92768-31431+229@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:41 -0300
Subject: [Bug 199] Changed - Cannot view image attachments
http://bugs.horde.org/show_bug.cgi?id=199
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35091 invoked from network); 19 Oct 2000 13:45:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:37 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNrq>; Thu, 19 Oct 2000 10:47:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, greenjo@hiscs.org, bugs@horde.org
Message-Id: <20001019134749Z92759-31426+270@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:46 -0300
Subject: [Bug 202] Changed - Folder subscription window has an extra </TABLE> tag..
http://bugs.horde.org/show_bug.cgi?id=202
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:35 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35103 invoked from network); 19 Oct 2000 13:45:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:37 -0000
Received: by athena.chebucto.ns.ca id <S92764AbQJSNrf>; Thu, 19 Oct 2000 10:47:35 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, mkonrad@syr.edu, bugs@horde.org
Message-Id: <20001019134749Z92764-31430+269@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:35 -0300
Subject: [Bug 186] Changed - Fatal Error
http://bugs.horde.org/show_bug.cgi?id=186
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:47:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35279 invoked from network); 19 Oct 2000 13:45:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:45:56 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNr4>; Thu, 19 Oct 2000 10:47:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019134804Z92740-31432+254@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:47:56 -0300
Subject: [Bug 210] Changed - Unable to delete message when over mail quota
http://bugs.horde.org/show_bug.cgi?id=210
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:09 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35347 invoked from network); 19 Oct 2000 13:46:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:06 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNsJ>; Thu, 19 Oct 2000 10:48:09 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dlambert@infoponic.com, bugs@horde.org
Message-Id: <20001019134819Z92759-31430+270@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:09 -0300
Subject: [Bug 216] Changed - Sort headers bug out in IE
http://bugs.horde.org/show_bug.cgi?id=216
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35348 invoked from network); 19 Oct 2000 13:46:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:06 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNsQ>; Thu, 19 Oct 2000 10:48:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019134819Z92740-31432+255@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:16 -0300
Subject: [Bug 218] Changed - IMP 2.0.11 with MySQL 3.22.22
http://bugs.horde.org/show_bug.cgi?id=218
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35462 invoked from network); 19 Oct 2000 13:46:27 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:27 -0000
Received: by athena.chebucto.ns.ca id <S92763AbQJSNsZ>; Thu, 19 Oct 2000 10:48:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lucasc@keytech.com.ar, bugs@horde.org
Message-Id: <20001019134834Z92763-31431+230@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:25 -0300
Subject: [Bug 226] Changed - Problem with Read Emails
http://bugs.horde.org/show_bug.cgi?id=226
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35463 invoked from network); 19 Oct 2000 13:46:28 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:28 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNsb>; Thu, 19 Oct 2000 10:48:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rigacci@iname.com, bugs@horde.org
Message-Id: <20001019134834Z92740-31430+271@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:31 -0300
Subject: [Bug 233] Changed - Better Italian translation
http://bugs.horde.org/show_bug.cgi?id=233
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35552 invoked from network); 19 Oct 2000 13:46:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:35 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNsq>; Thu, 19 Oct 2000 10:48:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@itu.dk, bugs@horde.org
Message-Id: <20001019134850Z92759-31431+231@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:46 -0300
Subject: [Bug 235] Changed - Cookies and Y2K in IMP
http://bugs.horde.org/show_bug.cgi?id=235
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:48:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35637 invoked from network); 19 Oct 2000 13:46:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:46:56 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNs6>; Thu, 19 Oct 2000 10:48:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rigacci@iname.com, bugs@horde.org
Message-Id: <20001019134905Z92761-31431+232@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:48:58 -0300
Subject: [Bug 236] Changed - IMP/PostgreSQL: user www-data doesn't work
http://bugs.horde.org/show_bug.cgi?id=236
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:49:13 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35691 invoked from network); 19 Oct 2000 13:47:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:06 -0000
Received: by athena.chebucto.ns.ca id <S92740AbQJSNtN>; Thu, 19 Oct 2000 10:49:13 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, b.labonte@ttu.edu, bugs@horde.org
Message-Id: <20001019134920Z92740-31426+273@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:49:13 -0300
Subject: [Bug 256] Changed - Contact List Problem
http://bugs.horde.org/show_bug.cgi?id=256
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:49:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35764 invoked from network); 19 Oct 2000 13:47:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:25 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNtc>; Thu, 19 Oct 2000 10:49:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019134935Z92734-31430+272@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:49:32 -0300
Subject: [Bug 350] Changed - impsetup.pl script fails at mysql database creation
http://bugs.horde.org/show_bug.cgi?id=350
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:49:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35779 invoked from network); 19 Oct 2000 13:47:27 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:27 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNtY>; Thu, 19 Oct 2000 10:49:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rigacci@iname.com, bugs@horde.org
Message-Id: <20001019134935Z92761-31432+256@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:49:24 -0300
Subject: [Bug 276] Changed - setup.php3: back button doesn't work in German
http://bugs.horde.org/show_bug.cgi?id=276
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:49:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35786 invoked from network); 19 Oct 2000 13:47:28 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:28 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSNtU>; Thu, 19 Oct 2000 10:49:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, garth.herbert@yale.edu, bugs@horde.org
Message-Id: <20001019134935Z92758-31426+274@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:49:20 -0300
Subject: [Bug 274] Changed -
http://bugs.horde.org/show_bug.cgi?id=274
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:49:42 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35875 invoked from network); 19 Oct 2000 13:47:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:36 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJSNtm>; Thu, 19 Oct 2000 10:49:42 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, riza@informatika.org, bugs@horde.org
Message-Id: <20001019134950Z92738-31432+257@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:49:42 -0300
Subject: [Bug 353] Changed - patch for message_summaries.inc
http://bugs.horde.org/show_bug.cgi?id=353
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:50:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35992 invoked from network); 19 Oct 2000 13:47:57 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:47:57 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNuE>; Thu, 19 Oct 2000 10:50:04 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, rbs@bu.edu, bugs@horde.org
Cc: rbs@bu.edu
Message-Id: <20001019135005Z92734-31431+233@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:50:04 -0300
Subject: [Bug 389] Changed - Bogus "IMP LIB NOT CONFIGURED" error message instructions
http://bugs.horde.org/show_bug.cgi?id=389
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:50:15 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36044 invoked from network); 19 Oct 2000 13:48:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:48:07 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSNuP>; Thu, 19 Oct 2000 10:50:15 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, robert@tapestry.net, bugs@horde.org
Message-Id: <20001019135020Z92759-31426+275@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:50:15 -0300
Subject: [Bug 196] Changed - The "you have mail" window keeps popping up until you refresh your view
http://bugs.horde.org/show_bug.cgi?id=196
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:50:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36100 invoked from network); 19 Oct 2000 13:48:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:48:26 -0000
Received: by athena.chebucto.ns.ca id <S92734AbQJSNuY>; Thu, 19 Oct 2000 10:50:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, denny@chuang.com, bugs@horde.org
Message-Id: <20001019135035Z92734-31432+258@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:50:24 -0300
Subject: [Bug 224] Changed - 8bit High ASCII Character unable to save as the profile's user name
http://bugs.horde.org/show_bug.cgi?id=224
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:50:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36152 invoked from network); 19 Oct 2000 13:48:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:48:36 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJSNuq>; Thu, 19 Oct 2000 10:50:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@eclipse.net.uk, bugs@horde.org
Message-Id: <20001019135050Z92739-31430+274@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:50:46 -0300
Subject: [Bug 212] Changed - fscking IE javascript incompatibility
http://bugs.horde.org/show_bug.cgi?id=212
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:51:00 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36207 invoked from network); 19 Oct 2000 13:48:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:48:56 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSNvA>; Thu, 19 Oct 2000 10:51:00 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, yds@dppl.com, bugs@horde.org
Message-Id: <20001019135105Z92758-31430+275@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:51:00 -0300
Subject: [Bug 223] Changed - Compose window contains no data.
http://bugs.horde.org/show_bug.cgi?id=223
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:51:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36270 invoked from network); 19 Oct 2000 13:49:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:49:06 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJSNvQ>; Thu, 19 Oct 2000 10:51:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, daniel-wittenberg@dellmac.com, bugs@horde.org
Message-Id: <20001019135120Z92739-31430+276@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:51:16 -0300
Subject: [Bug 239] Changed - Warning: Uninitialized variable or array index or property (tmsg) in ./lib/mimetypes.lib on line 348
http://bugs.horde.org/show_bug.cgi?id=239
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 10:51:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36271 invoked from network); 19 Oct 2000 13:49:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 13:49:07 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSNvG>; Thu, 19 Oct 2000 10:51:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019135120Z92761-31432+259@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 10:51:06 -0300
Subject: [Bug 231] Changed - html sanitation too aggressive.
http://bugs.horde.org/show_bug.cgi?id=231
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:17:25 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46520 invoked from network); 19 Oct 2000 18:15:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:15:34 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSSRZ>; Thu, 19 Oct 2000 15:17:25 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001019181732Z92758-31432+277@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:17:25 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:30:54 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46883 invoked from network); 19 Oct 2000 18:29:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:29:04 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSSay>; Thu, 19 Oct 2000 15:30:54 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001019183103Z92761-31430+296@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:30:54 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:31:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46884 invoked from network); 19 Oct 2000 18:29:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:29:04 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSSbS>; Thu, 19 Oct 2000 15:31:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@eclipse.net.uk, bugs@horde.org
Message-Id: <20001019183118Z92769-31430+297@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:31:18 -0300
Subject: [Bug 241] Changed - LDAP search always uses CN attribute
http://bugs.horde.org/show_bug.cgi?id=241
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:31:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46899 invoked from network); 19 Oct 2000 18:29:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:29:05 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSSbE>; Thu, 19 Oct 2000 15:31:04 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019183118Z92768-31426+295@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:31:04 -0300
Subject: [Bug 240] Changed - incorrect url conversion in text messages.
http://bugs.horde.org/show_bug.cgi?id=240
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:31:27 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47041 invoked from network); 19 Oct 2000 18:29:23 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:29:23 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSSb1>; Thu, 19 Oct 2000 15:31:27 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, drel@hotmail.com, bugs@horde.org
Message-Id: <20001019183133Z92761-31432+279@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:31:27 -0300
Subject: [Bug 247] Changed - Imp 2.2.0-pre8 Graphics in body frame do not show up.
http://bugs.horde.org/show_bug.cgi?id=247
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:31:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47103 invoked from network); 19 Oct 2000 18:29:53 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:29:53 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSSbx>; Thu, 19 Oct 2000 15:31:53 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, drel@hotmail.com, bugs@horde.org
Message-Id: <20001019183203Z92768-31430+298@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:31:53 -0300
Subject: [Bug 248] Changed - Imp 2.2.0-pre8 Mime error displaying messages.
http://bugs.horde.org/show_bug.cgi?id=248
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:32:08 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47160 invoked from network); 19 Oct 2000 18:30:03 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:30:03 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJSScI>; Thu, 19 Oct 2000 15:32:08 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019183218Z92761-31426+296@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:32:08 -0300
Subject: [Bug 252] Changed - Object sess not found in ./templates/newuser/intro.inc
http://bugs.horde.org/show_bug.cgi?id=252
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 15:32:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 47167 invoked from network); 19 Oct 2000 18:30:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 18:30:04 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSScE>; Thu, 19 Oct 2000 15:32:04 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019183218Z92770-31431+249@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 15:32:04 -0300
Subject: [Bug 249] Changed -
http://bugs.horde.org/show_bug.cgi?id=249
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:26:07 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49296 invoked from network); 19 Oct 2000 19:24:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:04 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJST0H>; Thu, 19 Oct 2000 16:26:07 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019192621Z92769-31426+305@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:26:07 -0300
Subject: [Bug 253] Changed - Problem with function htmlspecialchars and Brazilian Portuguese charset.
http://bugs.horde.org/show_bug.cgi?id=253
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:26:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49352 invoked from network); 19 Oct 2000 19:24:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:14 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJST0S>; Thu, 19 Oct 2000 16:26:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019192621Z92770-31432+282@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:26:18 -0300
Subject: [Bug 255] Changed - Problem with background images.
http://bugs.horde.org/show_bug.cgi?id=255
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:26:34 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49404 invoked from network); 19 Oct 2000 19:24:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:24 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJST0e>; Thu, 19 Oct 2000 16:26:34 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lauri.tischler@efore.fi, bugs@horde.org
Message-Id: <20001019192636Z92770-31426+306@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:26:34 -0300
Subject: [Bug 262] Changed - Signup error
http://bugs.horde.org/show_bug.cgi?id=262
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:26:26 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49405 invoked from network); 19 Oct 2000 19:24:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:24 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJST00>; Thu, 19 Oct 2000 16:26:26 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lauri.tischler@efore.fi, bugs@horde.org
Message-Id: <20001019192636Z92773-31432+283@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:26:26 -0300
Subject: [Bug 261] Changed - Error in help screen
http://bugs.horde.org/show_bug.cgi?id=261
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:26:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49508 invoked from network); 19 Oct 2000 19:24:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:34 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJST0o>; Thu, 19 Oct 2000 16:26:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lauri.tischler@efore.fi, bugs@horde.org
Message-Id: <20001019192651Z92769-31426+307@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:26:44 -0300
Subject: [Bug 263] Changed - logout from imp allways gives following error
http://bugs.horde.org/show_bug.cgi?id=263
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49560 invoked from network); 19 Oct 2000 19:24:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:24:54 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJST1F>; Thu, 19 Oct 2000 16:27:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@mrecic.gov.ar, bugs@horde.org
Cc: chuck@horde.org
Message-Id: <20001019192706Z92775-31430+301@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:05 -0300
Subject: [Bug 272] Changed - text loss in compose window when resizing
http://bugs.horde.org/show_bug.cgi?id=272
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49620 invoked from network); 19 Oct 2000 19:25:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:04 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJST1Q>; Thu, 19 Oct 2000 16:27:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, samuli.karkkainen@hut.fi, bugs@horde.org
Message-Id: <20001019192721Z92769-31431+255@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:16 -0300
Subject: [Bug 282] Changed - JS function tr() broken
http://bugs.horde.org/show_bug.cgi?id=282
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49621 invoked from network); 19 Oct 2000 19:25:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:04 -0000
Received: by athena.chebucto.ns.ca id <S92777AbQJST1K>; Thu, 19 Oct 2000 16:27:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fredrik.westermarck@mdh.se, bugs@horde.org
Message-Id: <20001019192721Z92777-31430+302@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:10 -0300
Subject: [Bug 275] Changed - If no path_to_sendmail exists some of the headers are duplicated
http://bugs.horde.org/show_bug.cgi?id=275
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49737 invoked from network); 19 Oct 2000 19:25:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:24 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJST12>; Thu, 19 Oct 2000 16:27:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, weblord@ceti.mx, bugs@horde.org
Message-Id: <20001019192736Z92769-31431+256@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:28 -0300
Subject: [Bug 287] Changed - Variable problem
http://bugs.horde.org/show_bug.cgi?id=287
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49750 invoked from network); 19 Oct 2000 19:25:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:25 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJST1Y>; Thu, 19 Oct 2000 16:27:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jaeger@ou.edu, bugs@horde.org
Message-Id: <20001019192736Z92773-31426+308@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:24 -0300
Subject: [Bug 286] Changed - Error message when connecting to IMP pages
http://bugs.horde.org/show_bug.cgi?id=286
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49843 invoked from network); 19 Oct 2000 19:25:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:34 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJST1l>; Thu, 19 Oct 2000 16:27:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lqhieu74@hotmail.com, bugs@horde.org
Message-Id: <20001019192751Z92771-31431+257@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:41 -0300
Subject: [Bug 288] Changed - Problem with (IMP 2.2.0-pre10 and POP3)
http://bugs.horde.org/show_bug.cgi?id=288
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49910 invoked from network); 19 Oct 2000 19:25:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:54 -0000
Received: by athena.chebucto.ns.ca id <S92777AbQJST1x>; Thu, 19 Oct 2000 16:27:53 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, thyu@ck.tp.edu.tw, bugs@horde.org
Message-Id: <20001019192806Z92777-31430+303@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:53 -0300
Subject: [Bug 291] Changed - Browser detect error
http://bugs.horde.org/show_bug.cgi?id=291
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:27:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49911 invoked from network); 19 Oct 2000 19:25:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:25:55 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJST16>; Thu, 19 Oct 2000 16:27:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bigdog@dogpound.vnet.net, bugs@horde.org
Message-Id: <20001019192806Z92770-31431+258@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:27:58 -0300
Subject: [Bug 298] Changed - $default->drafts vs. $default->postponed
http://bugs.horde.org/show_bug.cgi?id=298
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:28:07 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50017 invoked from network); 19 Oct 2000 19:26:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:26:04 -0000
Received: by athena.chebucto.ns.ca id <S92778AbQJST2H>; Thu, 19 Oct 2000 16:28:07 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, hvillatte@free.fr, bugs@horde.org
Message-Id: <20001019192822Z92778-31426+309@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:28:07 -0300
Subject: [Bug 300] Changed - Attachement not work properly
http://bugs.horde.org/show_bug.cgi?id=300
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:28:23 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50074 invoked from network); 19 Oct 2000 19:26:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:26:24 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJST2X>; Thu, 19 Oct 2000 16:28:23 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019192837Z92771-31432+284@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:28:23 -0300
Subject: [Bug 301] Changed - multiple windows and sorting confusion
http://bugs.horde.org/show_bug.cgi?id=301
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:28:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50134 invoked from network); 19 Oct 2000 19:26:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:26:33 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJST2q>; Thu, 19 Oct 2000 16:28:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019192852Z92759-31432+285@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:28:46 -0300
Subject: [Bug 304] Changed - Subject not QP decoded when resuming a message
http://bugs.horde.org/show_bug.cgi?id=304
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:29:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50189 invoked from network); 19 Oct 2000 19:27:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:27:24 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJST3Y>; Thu, 19 Oct 2000 16:29:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019192937Z92758-31426+310@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:29:24 -0300
Subject: [Bug 305] Changed - User interface change suggestions
http://bugs.horde.org/show_bug.cgi?id=305
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:29:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50202 invoked from network); 19 Oct 2000 19:27:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:27:26 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJST3c>; Thu, 19 Oct 2000 16:29:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019192937Z92759-31432+286@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:29:32 -0300
Subject: [Bug 309] Changed - PHPLIB fails using dbm authentication
http://bugs.horde.org/show_bug.cgi?id=309
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:29:50 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50291 invoked from network); 19 Oct 2000 19:27:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:27:34 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJST3u>; Thu, 19 Oct 2000 16:29:50 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019192952Z92758-31432+287@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:29:50 -0300
Subject: [Bug 311] Changed - Can't create a folder with international characters in the name
http://bugs.horde.org/show_bug.cgi?id=311
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:29:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50294 invoked from network); 19 Oct 2000 19:27:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:27:35 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJST3l>; Thu, 19 Oct 2000 16:29:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019192952Z92773-31426+311@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:29:41 -0300
Subject: [Bug 310] Changed - Subjects with international characters encoded incorrectly
http://bugs.horde.org/show_bug.cgi?id=310
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:00 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50395 invoked from network); 19 Oct 2000 19:27:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:27:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTaA>; Thu, 19 Oct 2000 16:30:00 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, erich.schubert@gmx.de, bugs@horde.org
Message-Id: <20001019193007Z92758-31431+259@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:00 -0300
Subject: [Bug 312] Changed - POP Problems? Function using IMAP even when POP selected?
http://bugs.horde.org/show_bug.cgi?id=312
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:11 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50446 invoked from network); 19 Oct 2000 19:28:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:04 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTaL>; Thu, 19 Oct 2000 16:30:11 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, davidhj@mail.com, bugs@horde.org
Message-Id: <20001019193022Z92770-31430+304@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:11 -0300
Subject: [Bug 315] Changed - adding a contact gives error:
http://bugs.horde.org/show_bug.cgi?id=315
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50447 invoked from network); 19 Oct 2000 19:28:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:05 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTaU>; Thu, 19 Oct 2000 16:30:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, pmana@admu.edu.ph, bugs@horde.org
Message-Id: <20001019193022Z92771-31432+288@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:20 -0300
Subject: [Bug 318] Changed - 1. Error on window resize, 2. [Next] button desired
http://bugs.horde.org/show_bug.cgi?id=318
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:29 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50548 invoked from network); 19 Oct 2000 19:28:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:24 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTa3>; Thu, 19 Oct 2000 16:30:29 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rafan@ck.tp.edu.tw, bugs@horde.org
Message-Id: <20001019193037Z92770-31426+312@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:29 -0300
Subject: [Bug 322] Changed - No $lang->resume in zh-tw
http://bugs.horde.org/show_bug.cgi?id=322
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:33 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50549 invoked from network); 19 Oct 2000 19:28:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:24 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTad>; Thu, 19 Oct 2000 16:30:33 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, g.assofi@sdv.com, bugs@horde.org
Message-Id: <20001019193037Z92771-31430+305@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:33 -0300
Subject: [Bug 323] Changed - Escape char missing in French Locale setup.lang
http://bugs.horde.org/show_bug.cgi?id=323
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50676 invoked from network); 19 Oct 2000 19:28:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:34 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSTaq>; Thu, 19 Oct 2000 16:30:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, g.assofi@sdv.com, bugs@horde.org
Message-Id: <20001019193052Z92775-31431+260@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:46 -0300
Subject: [Bug 324] Changed - French localized setup.php3 uninitialized variable 'of'
http://bugs.horde.org/show_bug.cgi?id=324
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:30:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50728 invoked from network); 19 Oct 2000 19:28:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:28:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTa5>; Thu, 19 Oct 2000 16:30:57 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, g.assofi@sdv.com, bugs@horde.org
Message-Id: <20001019193107Z92758-31431+261@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:30:57 -0300
Subject: [Bug 326] Changed - Fatal error: Cannot extend non existant class HordeCookies in ./lib/imp.lib on line 124
http://bugs.horde.org/show_bug.cgi?id=326
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:31:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50779 invoked from network); 19 Oct 2000 19:29:04 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:29:04 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTbV>; Thu, 19 Oct 2000 16:31:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019193122Z92758-31426+313@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:31:21 -0300
Subject: [Bug 329] Changed - Incomplete locale support in IMP
http://bugs.horde.org/show_bug.cgi?id=329
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:31:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51000 invoked from network); 19 Oct 2000 19:29:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:29:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTbc>; Thu, 19 Oct 2000 16:31:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019193137Z92768-31430+306@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:31:32 -0300
Subject: [Bug 330] Changed - inproper session handling
http://bugs.horde.org/show_bug.cgi?id=330
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:31:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51305 invoked from network); 19 Oct 2000 19:29:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:29:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTb6>; Thu, 19 Oct 2000 16:31:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, v_hula@advisbbdo.cz, bugs@horde.org
Message-Id: <20001019193207Z92758-31426+314@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:31:58 -0300
Subject: [Bug 335] Changed - Incorect encoding for Czech translation
http://bugs.horde.org/show_bug.cgi?id=335
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:39:42 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51889 invoked from network); 19 Oct 2000 19:37:51 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:37:51 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTjm>; Thu, 19 Oct 2000 16:39:42 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, digulla@hepe.com, bugs@horde.org
Cc: digulla@hepe.com
Message-Id: <20001019193953Z92758-31426+315@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:39:42 -0300
Subject: [Bug 337] Changed - IMP prints wrong message when mail cannot be stored in $default->sent_mail
http://bugs.horde.org/show_bug.cgi?id=337
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:39:48 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51907 invoked from network); 19 Oct 2000 19:37:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:37:54 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTjs>; Thu, 19 Oct 2000 16:39:48 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019193953Z92759-31431+262@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:39:48 -0300
Subject: [Bug 338] Changed - Problem with signup
http://bugs.horde.org/show_bug.cgi?id=338
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51931 invoked from network); 19 Oct 2000 19:37:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:37:54 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTkE>; Thu, 19 Oct 2000 16:40:04 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019194008Z92771-31431+263@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:04 -0300
Subject: [Bug 348] Changed - bug fixes to finish locale
http://bugs.horde.org/show_bug.cgi?id=348
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:39:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51940 invoked from network); 19 Oct 2000 19:37:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:37:55 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTj5>; Thu, 19 Oct 2000 16:39:57 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bergi@rhiz.org, bugs@horde.org
Message-Id: <20001019194008Z92770-31430+309@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:39:57 -0300
Subject: [Bug 344] Changed - imp-pre12
http://bugs.horde.org/show_bug.cgi?id=344
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52109 invoked from network); 19 Oct 2000 19:38:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:14 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTkV>; Thu, 19 Oct 2000 16:40:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019194023Z92758-31430+310@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:21 -0300
Subject: [Bug 351] Changed - impsetup.pl script fails at creation of mysql database
http://bugs.horde.org/show_bug.cgi?id=351
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:11 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52110 invoked from network); 19 Oct 2000 19:38:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:16 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSTkL>; Thu, 19 Oct 2000 16:40:11 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019194023Z92774-31431+264@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:11 -0300
Subject: [Bug 349] Changed - add correct language name to fi-locale in horde 1.2
http://bugs.horde.org/show_bug.cgi?id=349
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52212 invoked from network); 19 Oct 2000 19:38:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:32 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTkb>; Thu, 19 Oct 2000 16:40:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, greenjo@hiscs.org, bugs@horde.org
Message-Id: <20001019194038Z92771-31426+316@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:31 -0300
Subject: [Bug 355] Changed - From link in mailbox.php3 has incorrect array_index value
http://bugs.horde.org/show_bug.cgi?id=355
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52263 invoked from network); 19 Oct 2000 19:38:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:44 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTkw>; Thu, 19 Oct 2000 16:40:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019194053Z92768-31430+311@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:52 -0300
Subject: [Bug 358] Changed - Attachment icons not defined
http://bugs.horde.org/show_bug.cgi?id=358
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:40:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52264 invoked from network); 19 Oct 2000 19:38:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:44 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTkj>; Thu, 19 Oct 2000 16:40:39 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, riza@informatika.org, bugs@horde.org
Message-Id: <20001019194053Z92759-31432+292@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:40:39 -0300
Subject: [Bug 357] Changed - Show deleted error
http://bugs.horde.org/show_bug.cgi?id=357
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:41:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52370 invoked from network); 19 Oct 2000 19:38:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:38:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSTlC>; Thu, 19 Oct 2000 16:41:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019194108Z92758-31431+265@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:41:02 -0300
Subject: [Bug 359] Changed - IMP kicks user out randomly
http://bugs.horde.org/show_bug.cgi?id=359
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:41:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52574 invoked from network); 19 Oct 2000 19:39:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:39:14 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTlK>; Thu, 19 Oct 2000 16:41:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, marcelo@ucongreso.edu.ar, bugs@horde.org
Cc: marcelo@ucongreso.edu.ar
Message-Id: <20001019194123Z92770-31431+266@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:41:10 -0300
Subject: [Bug 360] Changed - function mime_view_msword doesn't detect mime type
http://bugs.horde.org/show_bug.cgi?id=360
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:41:33 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52689 invoked from network); 19 Oct 2000 19:39:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:39:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTld>; Thu, 19 Oct 2000 16:41:33 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019194138Z92768-31431+267@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:41:33 -0300
Subject: [Bug 368] Changed - Incorrect MIME type in user-contributed mime.php3 entry
http://bugs.horde.org/show_bug.cgi?id=368
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:41:38 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52704 invoked from network); 19 Oct 2000 19:39:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:39:25 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTli>; Thu, 19 Oct 2000 16:41:38 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, krauso@barr.cz, bugs@horde.org
Message-Id: <20001019194138Z92769-31426+318@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:41:38 -0300
Subject: [Bug 371] Changed - SQL
http://bugs.horde.org/show_bug.cgi?id=371
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:41:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52960 invoked from network); 19 Oct 2000 19:39:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:39:46 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTlv>; Thu, 19 Oct 2000 16:41:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, riza@informatika.org, bugs@horde.org
Message-Id: <20001019194153Z92759-31432+293@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:41:51 -0300
Subject: [Bug 373] Changed - status string not change
http://bugs.horde.org/show_bug.cgi?id=373
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:42:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53064 invoked from network); 19 Oct 2000 19:39:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:39:54 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTmE>; Thu, 19 Oct 2000 16:42:04 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, blauvelt@olg.com, bugs@horde.org
Message-Id: <20001019194208Z92769-31432+294@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:42:04 -0300
Subject: [Bug 376] Changed - Hide Deleted / Show Deleted Link does not function.
http://bugs.horde.org/show_bug.cgi?id=376
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:45:40 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 54565 invoked from network); 19 Oct 2000 19:43:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:43:35 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTpk>; Thu, 19 Oct 2000 16:45:40 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fjo@nada.kth.se, bugs@horde.org
Message-Id: <20001019194554Z92759-31432+295@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:45:40 -0300
Subject: [Bug 377] Changed - Problem with FT_UID in view.php3
http://bugs.horde.org/show_bug.cgi?id=377
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:03 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 54778 invoked from network); 19 Oct 2000 19:43:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:43:55 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTqD>; Thu, 19 Oct 2000 16:46:03 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, steveh@eecs.umich.edu, bugs@horde.org
Message-Id: <20001019194609Z92769-31432+296@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:03 -0300
Subject: [Bug 380] Changed - Wrong left frame menu if I leave IMP page and come back
http://bugs.horde.org/show_bug.cgi?id=380
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 54965 invoked from network); 19 Oct 2000 19:44:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:15 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTqU>; Thu, 19 Oct 2000 16:46:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ah@sportsfan.dk, bugs@horde.org
Message-Id: <20001019194624Z92768-31431+268@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:20 -0300
Subject: [Bug 384] Changed - Contact problem in different language.
http://bugs.horde.org/show_bug.cgi?id=384
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:16 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 54971 invoked from network); 19 Oct 2000 19:44:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:16 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTqQ>; Thu, 19 Oct 2000 16:46:16 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carls2000@home.com, bugs@horde.org
Message-Id: <20001019194624Z92759-31432+297@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:16 -0300
Subject: [Bug 383] Changed - Something about $sess not being an object and one more thing..
http://bugs.horde.org/show_bug.cgi?id=383
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55062 invoked from network); 19 Oct 2000 19:44:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:24 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSTqY>; Thu, 19 Oct 2000 16:46:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, frank@student.rug.ac.be, bugs@horde.org
Message-Id: <20001019194639Z92775-31430+312@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:24 -0300
Subject: [Bug 386] Changed - Incorrect language for help files
http://bugs.horde.org/show_bug.cgi?id=386
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:37 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55071 invoked from network); 19 Oct 2000 19:44:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:25 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTqh>; Thu, 19 Oct 2000 16:46:37 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dearman@buffalo.edu, bugs@horde.org
Message-Id: <20001019194639Z92769-31431+269@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:37 -0300
Subject: [Bug 387] Changed - Failed opening required 'local.inc' (include_path='.:/home/horde/htdocs/stable/phplib') in prepend.php3 on line 26
http://bugs.horde.org/show_bug.cgi?id=387
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:46:54 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55379 invoked from network); 19 Oct 2000 19:44:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:54 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTqy>; Thu, 19 Oct 2000 16:46:54 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, selsky@columbia.edu, bugs@horde.org
Message-Id: <20001019194709Z92768-31432+298@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:46:54 -0300
Subject: [Bug 390] Changed - regular expression for mailbox not bounded properly
http://bugs.horde.org/show_bug.cgi?id=390
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55385 invoked from network); 19 Oct 2000 19:44:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:44:55 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTrE>; Thu, 19 Oct 2000 16:47:04 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bjn@horde.org, bugs@horde.org
Message-Id: <20001019194709Z92759-31431+270@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:04 -0300
Subject: [Bug 396] Changed - Auto-detected binaries don't show in setup.php3 drop-downs
http://bugs.horde.org/show_bug.cgi?id=396
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55607 invoked from network); 19 Oct 2000 19:45:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:45:14 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTrK>; Thu, 19 Oct 2000 16:47:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019194724Z92771-31426+320@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:10 -0300
Subject: [Bug 398] Changed - Accounting for netscape's newline in empty submitted textarea
http://bugs.horde.org/show_bug.cgi?id=398
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55615 invoked from network); 19 Oct 2000 19:45:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:45:15 -0000
Received: by athena.chebucto.ns.ca id <S92759AbQJSTrU>; Thu, 19 Oct 2000 16:47:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, trevor@tarms.com, bugs@horde.org
Message-Id: <20001019194724Z92759-31432+299@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:20 -0300
Subject: [Bug 399] Changed - Oracle Database errors when inbox is large
http://bugs.horde.org/show_bug.cgi?id=399
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:38 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55730 invoked from network); 19 Oct 2000 19:45:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:45:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTri>; Thu, 19 Oct 2000 16:47:38 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, barryp@medicine.nodak.edu, bugs@horde.org
Message-Id: <20001019194739Z92768-31430+313@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:38 -0300
Subject: [Bug 402] Changed - Add contact from message fails under PHP 4.0.1
http://bugs.horde.org/show_bug.cgi?id=402
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55943 invoked from network); 19 Oct 2000 19:45:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:45:44 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTrv>; Thu, 19 Oct 2000 16:47:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, kraven@kraven.org, bugs@horde.org
Message-Id: <20001019194754Z92770-31431+272@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:51 -0300
Subject: [Bug 411] Changed - LDAP search does not work with any but bigfoot
http://bugs.horde.org/show_bug.cgi?id=411
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:47:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56055 invoked from network); 19 Oct 2000 19:45:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:45:54 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTr7>; Thu, 19 Oct 2000 16:47:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001019194809Z92769-31426+321@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:47:59 -0300
Subject: [Bug 414] Changed - Wordview gets garbage when viewing an attachement
http://bugs.horde.org/show_bug.cgi?id=414
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:48:23 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56277 invoked from network); 19 Oct 2000 19:46:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:46:15 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTsX>; Thu, 19 Oct 2000 16:48:23 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001019194824Z92771-31426+322@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:48:23 -0300
Subject: [Bug 416] Changed - Inline text display (and formatting) does not enforce time limit
http://bugs.horde.org/show_bug.cgi?id=416
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:48:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56283 invoked from network); 19 Oct 2000 19:46:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:46:15 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSTsM>; Thu, 19 Oct 2000 16:48:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001019194824Z92775-31430+314@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:48:12 -0300
Subject: [Bug 415] Changed - Attachments disappear when displaying message body
http://bugs.horde.org/show_bug.cgi?id=415
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:48:38 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56366 invoked from network); 19 Oct 2000 19:46:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:46:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTsi>; Thu, 19 Oct 2000 16:48:38 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019194839Z92768-31432+300@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:48:38 -0300
Subject: [Bug 434] Changed - test.php3 fails with compilation errors
http://bugs.horde.org/show_bug.cgi?id=434
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:48:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56577 invoked from network); 19 Oct 2000 19:46:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:46:44 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTso>; Thu, 19 Oct 2000 16:48:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, tom@kofler.eu.org, bugs@horde.org
Message-Id: <20001019194854Z92771-31431+274@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:48:44 -0300
Subject: [Bug 438] Changed - horde - test.php3 - fatal Bug
http://bugs.horde.org/show_bug.cgi?id=438
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56747 invoked from network); 19 Oct 2000 19:47:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:14 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTtM>; Thu, 19 Oct 2000 16:49:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paolo.morandi@consulteque.com, bugs@horde.org
Message-Id: <20001019194924Z92768-31426+323@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:12 -0300
Subject: [Bug 467] Changed - temprary word document file is empty
http://bugs.horde.org/show_bug.cgi?id=467
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:29 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56802 invoked from network); 19 Oct 2000 19:47:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:24 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSTt3>; Thu, 19 Oct 2000 16:49:29 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019194939Z92773-31430+316@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:29 -0300
Subject: [Bug 483] Changed - contacts.php3 wrong escape sequence
http://bugs.horde.org/show_bug.cgi?id=483
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56856 invoked from network); 19 Oct 2000 19:47:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:44 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTtl>; Thu, 19 Oct 2000 16:49:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, kevin_myer@iu13.k12.pa.us, bugs@horde.org
Message-Id: <20001019194954Z92768-31432+302@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:41 -0300
Subject: [Bug 379] Changed - Inbox number summary only goes up to 1000
http://bugs.horde.org/show_bug.cgi?id=379
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56857 invoked from network); 19 Oct 2000 19:47:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:45 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTtw>; Thu, 19 Oct 2000 16:49:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, max@the-triumvirate.net, bugs@horde.org
Message-Id: <20001019194955Z92770-31431+276@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:52 -0300
Subject: [Bug 433] Changed - spell checking makes attatchments disappear
http://bugs.horde.org/show_bug.cgi?id=433
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:48 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56872 invoked from network); 19 Oct 2000 19:47:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:45 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTts>; Thu, 19 Oct 2000 16:49:48 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rbraun@helixsystems.com, bugs@horde.org
Message-Id: <20001019194955Z92769-31430+317@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:48 -0300
Subject: [Bug 429] Changed - in folder navigator, plus icons don't point to correct URL
http://bugs.horde.org/show_bug.cgi?id=429
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:49:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56977 invoked from network); 19 Oct 2000 19:47:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:54 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSTt7>; Thu, 19 Oct 2000 16:49:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019195010Z92775-31426+324@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:49:59 -0300
Subject: [Bug 184] Changed - extraneous output in message composition
http://bugs.horde.org/show_bug.cgi?id=184
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:50:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56997 invoked from network); 19 Oct 2000 19:47:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:47:55 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQJSTuF>; Thu, 19 Oct 2000 16:50:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, T.Schallar@AVALON.at, bugs@horde.org
Message-Id: <20001019195010Z92776-31432+303@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:50:05 -0300
Subject: [Bug 424] Changed - syntax error in test script
http://bugs.horde.org/show_bug.cgi?id=424
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:50:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57144 invoked from network); 19 Oct 2000 19:48:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:48:14 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTuV>; Thu, 19 Oct 2000 16:50:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019195025Z92770-31426+325@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:50:21 -0300
Subject: [Bug 329] Changed - Incomplete locale support in IMP
http://bugs.horde.org/show_bug.cgi?id=329
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:50:17 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57145 invoked from network); 19 Oct 2000 19:48:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:48:15 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTuR>; Thu, 19 Oct 2000 16:50:17 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ouch@lmt.lv, bugs@horde.org
Message-Id: <20001019195025Z92769-31430+318@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:50:17 -0300
Subject: [Bug 149] Changed - Bounce problems
http://bugs.horde.org/show_bug.cgi?id=149
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:50:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57246 invoked from network); 19 Oct 2000 19:48:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:48:24 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSTu2>; Thu, 19 Oct 2000 16:50:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, aaron@waite.dhs.org, bugs@horde.org
Message-Id: <20001019195040Z92774-31431+277@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:50:28 -0300
Subject: [Bug 177] Changed - inbox doesn't update when new mail arrives.
http://bugs.horde.org/show_bug.cgi?id=177
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:50:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57320 invoked from network); 19 Oct 2000 19:48:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:48:44 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSTul>; Thu, 19 Oct 2000 16:50:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, brad@kieser.net, bugs@horde.org
Message-Id: <20001019195055Z92773-31430+319@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:50:41 -0300
Subject: [Bug 190] Changed - Uninitialised variable warnings
http://bugs.horde.org/show_bug.cgi?id=190
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:51:01 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57376 invoked from network); 19 Oct 2000 19:48:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:48:54 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTvB>; Thu, 19 Oct 2000 16:51:01 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019195110Z92771-31432+304@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:51:01 -0300
Subject: [Bug 209] Changed - Contacts not giving warning if information is missing
http://bugs.horde.org/show_bug.cgi?id=209
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:51:15 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57429 invoked from network); 19 Oct 2000 19:49:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:49:14 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTvP>; Thu, 19 Oct 2000 16:51:15 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dan@recycled.net, bugs@horde.org
Message-Id: <20001019195125Z92768-31431+278@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:51:15 -0300
Subject: [Bug 268] Changed - Having multiple mailboxes open confuses IMP
http://bugs.horde.org/show_bug.cgi?id=268
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:51:26 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57499 invoked from network); 19 Oct 2000 19:49:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:49:24 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTv0>; Thu, 19 Oct 2000 16:51:26 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, robert@tapestry.net, bugs@horde.org
Message-Id: <20001019195140Z92770-31430+320@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:51:26 -0300
Subject: [Bug 195] Changed - reply uses same window even if there is already a reply started
http://bugs.horde.org/show_bug.cgi?id=195
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:51:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57551 invoked from network); 19 Oct 2000 19:49:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:49:44 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSTvv>; Thu, 19 Oct 2000 16:51:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bigdog@dogpound.vnet.net, bugs@horde.org
Message-Id: <20001019195155Z92774-31432+305@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:51:51 -0300
Subject: [Bug 238] Changed - Problem.php3 problems.
http://bugs.horde.org/show_bug.cgi?id=238
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:51:45 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57552 invoked from network); 19 Oct 2000 19:49:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:49:44 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSTvp>; Thu, 19 Oct 2000 16:51:45 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, fredrik.westermarck@mdh.se, bugs@horde.org
Message-Id: <20001019195155Z92773-31426+328@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:51:45 -0300
Subject: [Bug 221] Changed - $default->show_dotfiles is ignored
http://bugs.horde.org/show_bug.cgi?id=221
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57654 invoked from network); 19 Oct 2000 19:49:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:49:54 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTwK>; Thu, 19 Oct 2000 16:52:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rav@tecoman.ucol.mx, bugs@horde.org
Message-Id: <20001019195210Z92769-31432+306@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:10 -0300
Subject: [Bug 245] Changed - A real problem.php3 problem?
http://bugs.horde.org/show_bug.cgi?id=245
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57708 invoked from network); 19 Oct 2000 19:50:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:14 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTwU>; Thu, 19 Oct 2000 16:52:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, gilberto@visaonet.com.br, bugs@horde.org
Message-Id: <20001019195225Z92768-31432+307@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:20 -0300
Subject: [Bug 258] Changed - Compose window size small for Brazilian Portuguese
http://bugs.horde.org/show_bug.cgi?id=258
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57759 invoked from network); 19 Oct 2000 19:50:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:24 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTwj>; Thu, 19 Oct 2000 16:52:39 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@eclipse.net.uk, bugs@horde.org
Message-Id: <20001019195240Z92770-31432+308@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:39 -0300
Subject: [Bug 320] Changed - Multipart/alternative messages show with an attachment icon
http://bugs.horde.org/show_bug.cgi?id=320
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57760 invoked from network); 19 Oct 2000 19:50:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:25 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTw2>; Thu, 19 Oct 2000 16:52:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, erich.schubert@gmx.de, bugs@horde.org
Message-Id: <20001019195240Z92769-31426+329@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:28 -0300
Subject: [Bug 284] Changed - JavaScript error message when folders disabled
http://bugs.horde.org/show_bug.cgi?id=284
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:48 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57873 invoked from network); 19 Oct 2000 19:50:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:45 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSTws>; Thu, 19 Oct 2000 16:52:48 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001019195255Z92775-31431+279@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:48 -0300
Subject: [Bug 356] Changed - IMP process crashes if a message disappers under it
http://bugs.horde.org/show_bug.cgi?id=356
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:52:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57926 invoked from network); 19 Oct 2000 19:50:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:54 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSTw5>; Thu, 19 Oct 2000 16:52:57 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, costan@uno.amg.it, bugs@horde.org
Message-Id: <20001019195310Z92774-31426+330@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:52:57 -0300
Subject: [Bug 365] Changed - Wrong message number in message.php3
http://bugs.horde.org/show_bug.cgi?id=365
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:53:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57938 invoked from network); 19 Oct 2000 19:50:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:50:54 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSTxF>; Thu, 19 Oct 2000 16:53:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jim@jipo.com, bugs@horde.org
Message-Id: <20001019195310Z92771-31431+280@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:53:05 -0300
Subject: [Bug 385] Changed - IMAP login fails
http://bugs.horde.org/show_bug.cgi?id=385
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:53:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58152 invoked from network); 19 Oct 2000 19:51:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:51:14 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTxS>; Thu, 19 Oct 2000 16:53:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019195325Z92769-31432+309@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:53:18 -0300
Subject: [Bug 393] Changed - Problem-reporting screen doesn't use locale
http://bugs.horde.org/show_bug.cgi?id=393
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:53:23 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58153 invoked from network); 19 Oct 2000 19:51:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:51:15 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTxX>; Thu, 19 Oct 2000 16:53:23 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019195325Z92768-31426+331@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:53:23 -0300
Subject: [Bug 397] Changed - Missing French translations
http://bugs.horde.org/show_bug.cgi?id=397
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:53:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58258 invoked from network); 19 Oct 2000 19:51:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:51:24 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSTxb>; Thu, 19 Oct 2000 16:53:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rbraun@helixsystems.com, bugs@horde.org
Message-Id: <20001019195340Z92773-31430+322@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:53:31 -0300
Subject: [Bug 428] Changed - non-stylesheet font tag in compose window should be changed
http://bugs.horde.org/show_bug.cgi?id=428
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:53:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58316 invoked from network); 19 Oct 2000 19:51:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:51:44 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTxt>; Thu, 19 Oct 2000 16:53:49 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, s.moritz@oxidizer.de, bugs@horde.org
Message-Id: <20001019195355Z92768-31431+281@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:53:49 -0300
Subject: [Bug 412] Changed - change the name of the MOTD-file to MOTD.php3
http://bugs.horde.org/show_bug.cgi?id=412
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:54:17 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58376 invoked from network); 19 Oct 2000 19:52:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:52:15 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTyR>; Thu, 19 Oct 2000 16:54:17 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, erich.schubert@gmx.de, bugs@horde.org
Message-Id: <20001019195426Z92768-31431+282@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:54:17 -0300
Subject: [Bug 280] Changed - select.php3 generates incomplete HTML if folders disabled
http://bugs.horde.org/show_bug.cgi?id=280
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:54:11 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58389 invoked from network); 19 Oct 2000 19:52:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:52:16 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSTyL>; Thu, 19 Oct 2000 16:54:11 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, hquest@fesppr.br, bugs@horde.org
Message-Id: <20001019195425Z92770-31430+323@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:54:11 -0300
Subject: [Bug 200] Changed -
http://bugs.horde.org/show_bug.cgi?id=200
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:54:40 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58479 invoked from network); 19 Oct 2000 19:52:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:52:24 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSTyk>; Thu, 19 Oct 2000 16:54:40 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, reidand@gihs.sa.edu.au, bugs@horde.org
Message-Id: <20001019195441Z92774-31431+283@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:54:40 -0300
Subject: [Bug 213] Changed - Compose window does not use languages
http://bugs.horde.org/show_bug.cgi?id=213
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:54:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58534 invoked from network); 19 Oct 2000 19:52:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:52:55 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSTy4>; Thu, 19 Oct 2000 16:54:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bilodeau@cmm.ensmp.fr, bugs@horde.org
Cc: bilodeau@cmm.ensmp.fr
Message-Id: <20001019195511Z92768-31430+324@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:54:56 -0300
Subject: [Bug 299] Changed - Wrong directories names for postgres in db.lib
http://bugs.horde.org/show_bug.cgi?id=299
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:55:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58535 invoked from network); 19 Oct 2000 19:52:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:52:55 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSTzG>; Thu, 19 Oct 2000 16:55:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, b.tostain@cogema.co.jp, bugs@horde.org
Message-Id: <20001019195511Z92769-31432+311@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:55:06 -0300
Subject: [Bug 303] Changed - Demand for Japanese Language Support
http://bugs.horde.org/show_bug.cgi?id=303
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:55:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58660 invoked from network); 19 Oct 2000 19:53:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:53:14 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSTzM>; Thu, 19 Oct 2000 16:55:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, vegard@engen.priv.no, bugs@horde.org
Message-Id: <20001019195526Z92773-31426+332@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:55:12 -0300
Subject: [Bug 333] Changed - New mail-popup as user preference.
http://bugs.horde.org/show_bug.cgi?id=333
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:56:01 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58735 invoked from network); 19 Oct 2000 19:53:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:53:54 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJST4B>; Thu, 19 Oct 2000 16:56:01 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, borgulya@pons.sote.hu, bugs@horde.org
Cc: borgulya@pons.sote.hu
Message-Id: <20001019195611Z92768-31432+313@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:56:01 -0300
Subject: [Bug 341] Changed - idea for getting translations
http://bugs.horde.org/show_bug.cgi?id=341
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:56:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58789 invoked from network); 19 Oct 2000 19:54:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:54:24 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJST4c>; Thu, 19 Oct 2000 16:56:32 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, diget@unix.cc.wmich.edu, bugs@horde.org
Cc: diget@unix.cc.wmich.edu
Message-Id: <20001019195641Z92758-31431+285@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:56:32 -0300
Subject: [Bug 106] Changed - Autoload of next message does not follow sort_dir setting
http://bugs.horde.org/show_bug.cgi?id=106
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:56:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58843 invoked from network); 19 Oct 2000 19:54:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:54:44 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJST4w>; Thu, 19 Oct 2000 16:56:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, mech@swix.net, bugs@horde.org
Message-Id: <20001019195656Z92769-31426+334@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:56:52 -0300
Subject: [Bug 185] Changed - no "organisation" field
http://bugs.horde.org/show_bug.cgi?id=185
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:57:00 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58894 invoked from network); 19 Oct 2000 19:54:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:54:54 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJST5A>; Thu, 19 Oct 2000 16:57:00 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019195711Z92771-31432+314@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:57:00 -0300
Subject: [Bug 188] Changed - Import Address Book
http://bugs.horde.org/show_bug.cgi?id=188
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 16:59:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 59789 invoked from network); 19 Oct 2000 19:57:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:57:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJST75>; Thu, 19 Oct 2000 16:59:57 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, liinu@uta.fi, bugs@horde.org
Message-Id: <20001019200011Z92758-31432+315@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 16:59:57 -0300
Subject: [Bug 392] Changed - IMP does not show IMAP warning messages
http://bugs.horde.org/show_bug.cgi?id=392
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:00:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 59853 invoked from network); 19 Oct 2000 19:58:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:58:14 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSUAY>; Thu, 19 Oct 2000 17:00:24 -0300
From: bugs@bugs.horde.org
To: mike@itsprojects.com, bugs@horde.org
Message-Id: <20001019200026Z92769-31430+325@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:00:24 -0300
Subject: [Bug 29] Changed - HTML stripping security code should do positive matching
http://bugs.horde.org/show_bug.cgi?id=29
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:00:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 59902 invoked from network); 19 Oct 2000 19:58:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:58:24 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSUAl>; Thu, 19 Oct 2000 17:00:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019200041Z92771-31426+336@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:00:41 -0300
Subject: [Bug 279] Changed - Adding Mailing Lists in Contacts
http://bugs.horde.org/show_bug.cgi?id=279
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:00:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 59903 invoked from network); 19 Oct 2000 19:58:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:58:25 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUAb>; Thu, 19 Oct 2000 17:00:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, surcouf@neptune.fr, bugs@horde.org
Message-Id: <20001019200041Z92758-31430+326@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:00:31 -0300
Subject: [Bug 217] Changed - Refresh problems with Netscape 4.7
http://bugs.horde.org/show_bug.cgi?id=217
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:01:15 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60024 invoked from network); 19 Oct 2000 19:59:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:59:14 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUBP>; Thu, 19 Oct 2000 17:01:15 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jack@cybermail.net, bugs@horde.org
Message-Id: <20001019200126Z92758-31430+327@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:01:15 -0300
Subject: [Bug 336] Changed - folder list confusion
http://bugs.horde.org/show_bug.cgi?id=336
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:01:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60076 invoked from network); 19 Oct 2000 19:59:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:59:44 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUBo>; Thu, 19 Oct 2000 17:01:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019200156Z92758-31426+338@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:01:44 -0300
Subject: [Bug 375] Changed - Received: header for first hop
http://bugs.horde.org/show_bug.cgi?id=375
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:01:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60128 invoked from network); 19 Oct 2000 19:59:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:59:54 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSUB7>; Thu, 19 Oct 2000 17:01:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stmk@reason.marist.edu, bugs@horde.org
Message-Id: <20001019200211Z92769-31431+287@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:01:59 -0300
Subject: [Bug 378] Changed - (very) slight modification to phplib to make it behave better
http://bugs.horde.org/show_bug.cgi?id=378
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:02:08 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60129 invoked from network); 19 Oct 2000 19:59:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 19:59:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUCI>; Thu, 19 Oct 2000 17:02:08 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, steveh@eecs.umich.edu, bugs@horde.org
Message-Id: <20001019200211Z92758-31426+339@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:02:08 -0300
Subject: [Bug 382] Changed - add strikethru to deleted messages
http://bugs.horde.org/show_bug.cgi?id=382
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:02:21 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60257 invoked from network); 19 Oct 2000 20:00:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:00:14 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSUCV>; Thu, 19 Oct 2000 17:02:21 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rob@valinux.com, bugs@horde.org
Message-Id: <20001019200227Z92771-31430+328@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:02:21 -0300
Subject: [Bug 404] Changed - ability to deal with .gz files
http://bugs.horde.org/show_bug.cgi?id=404
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:02:40 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60316 invoked from network); 19 Oct 2000 20:00:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:00:24 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUCk>; Thu, 19 Oct 2000 17:02:40 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, doug@eng.auburn.edu, bugs@horde.org
Message-Id: <20001019200242Z92758-31426+340@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:02:40 -0300
Subject: [Bug 431] Changed - enhancement to Problem Report form
http://bugs.horde.org/show_bug.cgi?id=431
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:02:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60368 invoked from network); 19 Oct 2000 20:00:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:00:44 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUCt>; Thu, 19 Oct 2000 17:02:49 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, doug@eng.auburn.edu, bugs@horde.org
Message-Id: <20001019200257Z92758-31431+288@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:02:49 -0300
Subject: [Bug 432] Changed - enhancement to Problem Report form
http://bugs.horde.org/show_bug.cgi?id=432
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:02:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60381 invoked from network); 19 Oct 2000 20:00:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:00:45 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUC4>; Thu, 19 Oct 2000 17:02:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, d.mcfadyen@e-secure.com.au, bugs@horde.org
Message-Id: <20001019200257Z92768-31426+341@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:02:56 -0300
Subject: [Bug 277] Changed - IMP password error when \ in pswd
http://bugs.horde.org/show_bug.cgi?id=277
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:03:08 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60471 invoked from network); 19 Oct 2000 20:00:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:00:54 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUDI>; Thu, 19 Oct 2000 17:03:08 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, ubabiak@gmx.de, bugs@horde.org
Message-Id: <20001019200312Z92758-31430+329@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:03:08 -0300
Subject: [Bug 405] Changed - wrong usage of isset causes hide_deleted to fail in 22pre13
http://bugs.horde.org/show_bug.cgi?id=405
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:03:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60536 invoked from network); 19 Oct 2000 20:01:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:01:44 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUD4>; Thu, 19 Oct 2000 17:03:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@eclipse.net.uk, bugs@horde.org
Message-Id: <20001019200357Z92768-31430+330@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:03:56 -0300
Subject: [Bug 117] Changed - behaviour of mailbox.php3 arrows
http://bugs.horde.org/show_bug.cgi?id=117
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:04:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60588 invoked from network); 19 Oct 2000 20:01:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:01:54 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSUEM>; Thu, 19 Oct 2000 17:04:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, richmond@it.net.au, bugs@horde.org
Message-Id: <20001019200412Z92771-31432+316@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:04:12 -0300
Subject: [Bug 294] Changed - Metachars in passwds fail
http://bugs.horde.org/show_bug.cgi?id=294
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:04:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60603 invoked from network); 19 Oct 2000 20:01:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:01:55 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUEG>; Thu, 19 Oct 2000 17:04:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dave@istream.net, bugs@horde.org
Message-Id: <20001019200412Z92758-31426+343@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:04:06 -0300
Subject: [Bug 259] Changed - PostgreSQL errors
http://bugs.horde.org/show_bug.cgi?id=259
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:04:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60694 invoked from network); 19 Oct 2000 20:02:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:02:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUEj>; Thu, 19 Oct 2000 17:04:39 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, Chris.Tilbury@warwick.ac.uk, bugs@horde.org
Message-Id: <20001019200442Z92768-31431+291@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:04:39 -0300
Subject: [Bug 191] Changed - Incorrect label displayed for folder name under certain conditions
http://bugs.horde.org/show_bug.cgi?id=191
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:04:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60752 invoked from network); 19 Oct 2000 20:02:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:02:45 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJSUEt>; Thu, 19 Oct 2000 17:04:49 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, lannet@lannet.com.au, bugs@horde.org
Message-Id: <20001019200457Z92771-31431+292@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:04:49 -0300
Subject: [Bug 198] Changed - Cannot select from addressbook
http://bugs.horde.org/show_bug.cgi?id=198
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:05:09 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60803 invoked from network); 19 Oct 2000 20:02:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:02:55 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUFJ>; Thu, 19 Oct 2000 17:05:09 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019200512Z92768-31431+293@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:05:09 -0300
Subject: [Bug 183] Changed - Enhancement request - no javascript option
http://bugs.horde.org/show_bug.cgi?id=183
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:05:03 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60804 invoked from network); 19 Oct 2000 20:02:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:02:55 -0000
Received: by athena.chebucto.ns.ca id <S92758AbQJSUFD>; Thu, 19 Oct 2000 17:05:03 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bjn@horde.org, bugs@horde.org
Message-Id: <20001019200512Z92758-31426+344@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:05:03 -0300
Subject: [Bug 394] Changed - red.gif ALT text is "All is well"
http://bugs.horde.org/show_bug.cgi?id=394
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:05:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60912 invoked from network); 19 Oct 2000 20:03:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:03:24 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUFb>; Thu, 19 Oct 2000 17:05:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, simon@surf.org.uk, bugs@horde.org
Cc: simon@surf.org.uk
Message-Id: <20001019200542Z92768-31430+331@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:05:31 -0300
Subject: [Bug 211] Changed - Reply , add to contacts in sent-mail
http://bugs.horde.org/show_bug.cgi?id=211
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61001 invoked from network); 19 Oct 2000 20:03:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:03:54 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQJSUGC>; Thu, 19 Oct 2000 17:06:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, jkohan@cyberware.com.ar, bugs@horde.org
Message-Id: <20001019200612Z92770-31430+332@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:02 -0300
Subject: [Bug 354] Changed - Just a Wish: Secure login without SSL.
http://bugs.horde.org/show_bug.cgi?id=354
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:14 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61052 invoked from network); 19 Oct 2000 20:04:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:15 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSUGO>; Thu, 19 Oct 2000 17:06:14 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, niddle@linuxbe.org, bugs@horde.org
Message-Id: <20001019200627Z92769-31431+294@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:14 -0300
Subject: [Bug 372] Changed - Problem with sequences when a user delete more than one email at once
http://bugs.horde.org/show_bug.cgi?id=372
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:36 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61103 invoked from network); 19 Oct 2000 20:04:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:24 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQJSUGg>; Thu, 19 Oct 2000 17:06:36 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oddrune+bugs@itea.ntnu.no, bugs@horde.org
Message-Id: <20001019200642Z92775-31430+333@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:36 -0300
Subject: [Bug 285] Changed - IMP compose.php3 problem with MSIE 5
http://bugs.horde.org/show_bug.cgi?id=285
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61104 invoked from network); 19 Oct 2000 20:04:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:25 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSUG2>; Thu, 19 Oct 2000 17:06:28 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019200642Z92773-31431+295@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:28 -0300
Subject: [Bug 403] Changed - Headers lost (incl. MIME!) with "Save Draft"
http://bugs.horde.org/show_bug.cgi?id=403
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:51 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61214 invoked from network); 19 Oct 2000 20:04:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:45 -0000
Received: by athena.chebucto.ns.ca id <S92777AbQJSUGv>; Thu, 19 Oct 2000 17:06:51 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, joseph@dcsquared.com, bugs@horde.org
Message-Id: <20001019200657Z92777-31426+346@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:51 -0300
Subject: [Bug 169] Changed - Delete deletes but fails to increment message number
http://bugs.horde.org/show_bug.cgi?id=169
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:47 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61215 invoked from network); 19 Oct 2000 20:04:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:45 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSUGr>; Thu, 19 Oct 2000 17:06:47 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, joseph@dcsquared.com, bugs@horde.org
Message-Id: <20001019200657Z92774-31430+334@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:47 -0300
Subject: [Bug 166] Changed - "Resume" gives warning message
http://bugs.horde.org/show_bug.cgi?id=166
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:06:43 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61231 invoked from network); 19 Oct 2000 20:04:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:46 -0000
Received: by athena.chebucto.ns.ca id <S92779AbQJSUGn>; Thu, 19 Oct 2000 17:06:43 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, topher@bsn.net, bugs@horde.org
Message-Id: <20001019200657Z92779-31431+296@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:06:43 -0300
Subject: [Bug 119] Changed - Error on signup
http://bugs.horde.org/show_bug.cgi?id=119
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:09 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61321 invoked from network); 19 Oct 2000 20:04:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:55 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQJSUHJ>; Thu, 19 Oct 2000 17:07:09 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, burton@gozoom.com, bugs@horde.org
Message-Id: <20001019200713Z92780-31432+318@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:09 -0300
Subject: [Bug 179] Changed - folders.help has typo
http://bugs.horde.org/show_bug.cgi?id=179
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:03 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61337 invoked from network); 19 Oct 2000 20:04:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:04:56 -0000
Received: by athena.chebucto.ns.ca id <S92778AbQJSUHD>; Thu, 19 Oct 2000 17:07:03 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, joseph@dcsquared.com, bugs@horde.org
Message-Id: <20001019200713Z92778-31432+317@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:03 -0300
Subject: [Bug 173] Changed - Message parsing doesn't appear to differentiate between header and body
http://bugs.horde.org/show_bug.cgi?id=173
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:20 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61473 invoked from network); 19 Oct 2000 20:05:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:14 -0000
Received: by athena.chebucto.ns.ca id <S92774AbQJSUHU>; Thu, 19 Oct 2000 17:07:20 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, etch@ginto.chem.admu.edu.ph, bugs@horde.org
Message-Id: <20001019200728Z92774-31431+297@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:20 -0300
Subject: [Bug 343] Changed - Test disappears upon resize of window
http://bugs.horde.org/show_bug.cgi?id=343
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61488 invoked from network); 19 Oct 2000 20:05:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:15 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJSUHY>; Thu, 19 Oct 2000 17:07:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, peter@webbing.com, bugs@horde.org
Message-Id: <20001019200728Z92769-31432+319@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:24 -0300
Subject: [Bug 128] Changed - Does not remember sort order (ascending/descending)
http://bugs.horde.org/show_bug.cgi?id=128
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61575 invoked from network); 19 Oct 2000 20:05:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:25 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQJSUHb>; Thu, 19 Oct 2000 17:07:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rich@alcor.concordia.ca, bugs@horde.org
Message-Id: <20001019200743Z92776-31430+335@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:31 -0300
Subject: [Bug 364] Changed - Means to track senders
http://bugs.horde.org/show_bug.cgi?id=364
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:36 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61588 invoked from network); 19 Oct 2000 20:05:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:26 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJSUHg>; Thu, 19 Oct 2000 17:07:36 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, clevelas@net.orst.edu, bugs@horde.org
Message-Id: <20001019200743Z92773-31431+298@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:36 -0300
Subject: [Bug 147] Changed - Tab order doesn't work as expected if using a server list on login screen
http://bugs.horde.org/show_bug.cgi?id=147
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61679 invoked from network); 19 Oct 2000 20:05:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:44 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQJSUHq>; Thu, 19 Oct 2000 17:07:46 -0300
From: bugs@bugs.horde.org
To: mikeh@spark.com, bugs@horde.org
Message-Id: <20001019200758Z92776-31426+347@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:46 -0300
Subject: [Bug 135] Changed - some people want a separate reading mail window
http://bugs.horde.org/show_bug.cgi?id=135
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:07:55 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61681 invoked from network); 19 Oct 2000 20:05:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:05:45 -0000
Received: by athena.chebucto.ns.ca id <S92768AbQJSUHz>; Thu, 19 Oct 2000 17:07:55 -0300
From: bugs@bugs.horde.org
To: mikeh@spark.com, bugs@horde.org
Cc: chuck@horde.org
Message-Id: <20001019200758Z92768-31430+336@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:07:55 -0300
Subject: [Bug 137] Changed - the contacts window doesn't show error messages well
http://bugs.horde.org/show_bug.cgi?id=137
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:10:43 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 62495 invoked from network); 19 Oct 2000 20:08:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:08:25 -0000
Received: by athena.chebucto.ns.ca id <S92746AbQJSUKn>; Thu, 19 Oct 2000 17:10:43 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019201043Z92746-31430+337@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:10:43 -0300
Subject: [Bug 329] Changed - Incomplete locale support in IMP
http://bugs.horde.org/show_bug.cgi?id=329
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:10:38 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 62506 invoked from network); 19 Oct 2000 20:08:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:08:26 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQJSUKi>; Thu, 19 Oct 2000 17:10:38 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019201043Z92745-31432+321@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:10:38 -0300
Subject: [Bug 329] Changed - Incomplete locale support in IMP
http://bugs.horde.org/show_bug.cgi?id=329
>From bugs@bugs.horde.org Date: Thu, 19 Oct 2000 17:21:00 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 63877 invoked from network); 19 Oct 2000 20:19:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 19 Oct 2000 20:19:09 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQJSUVA>; Thu, 19 Oct 2000 17:21:00 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, carlos@amiga.com.pl, bugs@horde.org
Message-Id: <20001019202113Z92745-31426+349@athena.chebucto.ns.ca>
Date: Thu, 19 Oct 2000 17:21:00 -0300
Subject: [Bug 329] Changed - Incomplete locale support in IMP
http://bugs.horde.org/show_bug.cgi?id=329
>From bugs@bugs.horde.org Date: Fri, 20 Oct 2000 05:52:00 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 90106 invoked from network); 20 Oct 2000 08:50:00 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 20 Oct 2000 08:50:00 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJTIwA>; Fri, 20 Oct 2000 05:52:00 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001020085202Z92738-31431+334@athena.chebucto.ns.ca>
Date: Fri, 20 Oct 2000 05:52:00 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Fri, 20 Oct 2000 09:24:23 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 94712 invoked from network); 20 Oct 2000 12:22:23 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 20 Oct 2000 12:22:23 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJTMYX>; Fri, 20 Oct 2000 09:24:23 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001020122426Z92738-31431+340@athena.chebucto.ns.ca>
Date: Fri, 20 Oct 2000 09:24:23 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Fri, 20 Oct 2000 09:24:33 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 94713 invoked from network); 20 Oct 2000 12:22:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 20 Oct 2000 12:22:24 -0000
Received: by athena.chebucto.ns.ca id <S92746AbQJTMYd>; Fri, 20 Oct 2000 09:24:33 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, bad-vibes@angelfire.com, bugs@horde.org
Message-Id: <20001020122441Z92746-31432+348@athena.chebucto.ns.ca>
Date: Fri, 20 Oct 2000 09:24:33 -0300
Subject: [Bug 502] Changed -
http://bugs.horde.org/show_bug.cgi?id=502
>From bugs@bugs.horde.org Date: Sun, 22 Oct 2000 02:25:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60048 invoked from network); 22 Oct 2000 05:23:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 22 Oct 2000 05:23:32 -0000
Received: by athena.chebucto.ns.ca id <S92752AbQJVFZj>; Sun, 22 Oct 2000 02:25:39 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001022052545Z92752-31432+437@athena.chebucto.ns.ca>
Date: Sun, 22 Oct 2000 02:25:39 -0300
Subject: [Bug 504] New - Not logging in to the IMAP server under PHP 4.0.3pl1
http://bugs.horde.org/show_bug.cgi?id=504
>From bugs@bugs.horde.org Date: Sun, 22 Oct 2000 02:39:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60239 invoked from network); 22 Oct 2000 05:37:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 22 Oct 2000 05:37:50 -0000
Received: by athena.chebucto.ns.ca id <S92736AbQJVFj7>; Sun, 22 Oct 2000 02:39:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001022054001Z92736-31432+438@athena.chebucto.ns.ca>
Date: Sun, 22 Oct 2000 02:39:59 -0300
Subject: [Bug 504] Changed - Not logging in to the IMAP server under PHP 4.0.3pl1
http://bugs.horde.org/show_bug.cgi?id=504
>From bugs@bugs.horde.org Date: Sun, 22 Oct 2000 02:40:06 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60240 invoked from network); 22 Oct 2000 05:37:51 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 22 Oct 2000 05:37:51 -0000
Received: by athena.chebucto.ns.ca id <S92754AbQJVFkG>; Sun, 22 Oct 2000 02:40:06 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rival@novia.net, bugs@horde.org
Message-Id: <20001022054016Z92754-31432+439@athena.chebucto.ns.ca>
Date: Sun, 22 Oct 2000 02:40:06 -0300
Subject: [Bug 504] Changed - Not logging in to the IMAP server under PHP 4.0.3pl1
http://bugs.horde.org/show_bug.cgi?id=504
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 01:56:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 24938 invoked from network); 24 Oct 2000 04:54:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 04:54:06 -0000
Received: by athena.chebucto.ns.ca id <S92730AbQJXE4K>; Tue, 24 Oct 2000 01:56:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024045621Z92730-31432+563@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 01:56:10 -0300
Subject: [Bug 505] New - Sybase SQL File Does Not Match the Code
http://bugs.horde.org/show_bug.cgi?id=505
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 01:58:28 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 25023 invoked from network); 24 Oct 2000 04:56:13 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 04:56:13 -0000
Received: by athena.chebucto.ns.ca id <S92730AbQJXE62>; Tue, 24 Oct 2000 01:58:28 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024045837Z92730-31426+614@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 01:58:28 -0300
Subject: [Bug 506] New - Typo in horde/imp/lib/db.sybase
http://bugs.horde.org/show_bug.cgi?id=506
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 02:03:56 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 25962 invoked from network); 24 Oct 2000 05:01:53 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 05:01:53 -0000
Received: by athena.chebucto.ns.ca id <S92730AbQJXFD4>; Tue, 24 Oct 2000 02:03:56 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024050407Z92730-31432+564@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 02:03:56 -0300
Subject: [Bug 507] New - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 10:22:50 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42249 invoked from network); 24 Oct 2000 13:20:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 13:20:39 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJXNWu>; Tue, 24 Oct 2000 10:22:50 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024132258Z92738-31430+567@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 10:22:50 -0300
Subject: [Bug 505] Changed - Sybase SQL File Does Not Match the Code
http://bugs.horde.org/show_bug.cgi?id=505
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 10:23:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42364 invoked from network); 24 Oct 2000 13:20:48 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 13:20:48 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQJXNXC>; Tue, 24 Oct 2000 10:23:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024132313Z92745-31432+588@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 10:23:02 -0300
Subject: [Bug 505] Changed - Sybase SQL File Does Not Match the Code
http://bugs.horde.org/show_bug.cgi?id=505
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 10:25:19 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42803 invoked from network); 24 Oct 2000 13:22:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 13:22:58 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJXNZT>; Tue, 24 Oct 2000 10:25:19 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024132528Z92742-31432+589@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 10:25:19 -0300
Subject: [Bug 506] Changed - Typo in horde/imp/lib/db.sybase
http://bugs.horde.org/show_bug.cgi?id=506
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 10:25:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 43108 invoked from network); 24 Oct 2000 13:23:28 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 13:23:28 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJXNZq>; Tue, 24 Oct 2000 10:25:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024132558Z92742-31431+557@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 10:25:46 -0300
Subject: [Bug 506] Changed - Typo in horde/imp/lib/db.sybase
http://bugs.horde.org/show_bug.cgi?id=506
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 10:30:02 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 43837 invoked from network); 24 Oct 2000 13:27:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 13:27:58 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJXNaC>; Tue, 24 Oct 2000 10:30:02 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001024133014Z92738-31432+591@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 10:30:02 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 12:21:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53751 invoked from network); 24 Oct 2000 15:19:00 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 15:19:00 -0000
Received: by athena.chebucto.ns.ca id <S92754AbQJXPVK>; Tue, 24 Oct 2000 12:21:10 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paul@lanifex.com, bugs@horde.org
Message-Id: <20001024152119Z92754-31431+573@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 12:21:10 -0300
Subject: [Bug 508] New - IMP Javascript pop-ups crash Netscape on Windows 2000
http://bugs.horde.org/show_bug.cgi?id=508
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 14:41:36 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65987 invoked from network); 24 Oct 2000 17:39:18 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 17:39:18 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJXRlg>; Tue, 24 Oct 2000 14:41:36 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paul@lanifex.com, bugs@horde.org
Message-Id: <20001024174141Z92738-31432+614@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 14:41:36 -0300
Subject: [Bug 508] Changed - IMP Javascript pop-ups crash Netscape on Windows 2000
http://bugs.horde.org/show_bug.cgi?id=508
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 17:11:55 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 78245 invoked from network); 24 Oct 2000 20:09:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 20:09:41 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJXULz>; Tue, 24 Oct 2000 17:11:55 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paul@lanifex.com, bugs@horde.org
Message-Id: <20001024201203Z92739-31432+630@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 17:11:55 -0300
Subject: [Bug 508] Changed - IMP Javascript pop-ups crash Netscape on Windows 2000
http://bugs.horde.org/show_bug.cgi?id=508
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 20:07:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 89610 invoked from network); 24 Oct 2000 23:05:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 23:05:32 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJXXHo>; Tue, 24 Oct 2000 20:07:44 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paul@lanifex.com, bugs@horde.org
Message-Id: <20001024230756Z92738-31430+604@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 20:07:44 -0300
Subject: [Bug 508] Changed - IMP Javascript pop-ups crash Netscape on Windows 2000
http://bugs.horde.org/show_bug.cgi?id=508
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 20:07:54 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 89662 invoked from network); 24 Oct 2000 23:05:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 24 Oct 2000 23:05:37 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJXXHy>; Tue, 24 Oct 2000 20:07:54 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, paul@lanifex.com, bugs@horde.org
Message-Id: <20001024230756Z92739-31431+607@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 20:07:54 -0300
Subject: [Bug 508] Changed - IMP Javascript pop-ups crash Netscape on Windows 2000
http://bugs.horde.org/show_bug.cgi?id=508
>From bugs@bugs.horde.org Date: Tue, 24 Oct 2000 22:57:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 95802 invoked from network); 25 Oct 2000 01:54:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 01:54:58 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJYB5F>; Tue, 24 Oct 2000 22:57:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001025015718Z92738-31431+613@athena.chebucto.ns.ca>
Date: Tue, 24 Oct 2000 22:57:05 -0300
Subject: [Bug 509] New - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 02:10:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 1978 invoked from network); 25 Oct 2000 05:08:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 05:08:41 -0000
Received: by athena.chebucto.ns.ca id <S92738AbQJYFKw>; Wed, 25 Oct 2000 02:10:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001025051058Z92738-31432+648@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 02:10:52 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 08:41:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 12046 invoked from network); 25 Oct 2000 11:39:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 11:39:05 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJYLlY>; Wed, 25 Oct 2000 08:41:24 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001025114129Z92739-31432+657@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 08:41:24 -0300
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 08:41:32 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 12097 invoked from network); 25 Oct 2000 11:39:12 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 11:39:12 -0000
Received: by athena.chebucto.ns.ca id <S92744AbQJYLlc>; Wed, 25 Oct 2000 08:41:32 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001025114144Z92744-31432+658@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 08:41:32 -0300
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 08:49:39 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 12367 invoked from network); 25 Oct 2000 11:47:23 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 11:47:23 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJYLtj>; Wed, 25 Oct 2000 08:49:39 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001025114944Z92739-31431+631@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 08:49:39 -0300
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 09:59:01 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14305 invoked from network); 25 Oct 2000 12:56:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 12:56:44 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJYM7B>; Wed, 25 Oct 2000 09:59:01 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001025125903Z92739-31426+684@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 09:59:01 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 09:59:13 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14306 invoked from network); 25 Oct 2000 12:56:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 12:56:45 -0000
Received: by athena.chebucto.ns.ca id <S92744AbQJYM7N>; Wed, 25 Oct 2000 09:59:13 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001025125918Z92744-31426+685@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 09:59:13 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 10:00:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14426 invoked from network); 25 Oct 2000 12:57:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 12:57:44 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJYNAS>; Wed, 25 Oct 2000 10:00:18 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001025130018Z92742-31431+637@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 10:00:18 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 10:00:10 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14436 invoked from network); 25 Oct 2000 12:57:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 12:57:45 -0000
Received: by athena.chebucto.ns.ca id <S92739AbQJYNAK>; Wed, 25 Oct 2000 10:00:10 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, oberon@home.com, bugs@horde.org
Message-Id: <20001025130018Z92739-31430+638@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 10:00:10 -0300
Subject: [Bug 507] Changed - Sybase Messages Cause Header Problems
http://bugs.horde.org/show_bug.cgi?id=507
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 17:47:46 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 41246 invoked from network); 25 Oct 2000 20:45:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 20:45:32 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQJYUrq>; Wed, 25 Oct 2000 17:47:46 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, mkb@ele.uri.edu, bugs@horde.org
Message-Id: <20001025204755Z92745-31432+692@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 17:47:46 -0300
Subject: [Bug 510] New - spell check button doesn't disappear
http://bugs.horde.org/show_bug.cgi?id=510
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 17:54:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 41496 invoked from network); 25 Oct 2000 20:52:02 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 20:52:02 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJYUyM>; Wed, 25 Oct 2000 17:54:12 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, mkb@ele.uri.edu, bugs@horde.org
Message-Id: <20001025205425Z92742-31431+683@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 17:54:12 -0300
Subject: [Bug 510] Changed - spell check button doesn't disappear
http://bugs.horde.org/show_bug.cgi?id=510
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 18:21:44 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42163 invoked from network); 25 Oct 2000 21:19:31 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 21:19:31 -0000
Received: by athena.chebucto.ns.ca id <S92750AbQJYVVo>; Wed, 25 Oct 2000 18:21:44 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, mkb@ele.uri.edu, bugs@horde.org
Message-Id: <20001025212157Z92750-31430+674@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 18:21:44 -0300
Subject: [Bug 510] Changed - spell check button doesn't disappear
http://bugs.horde.org/show_bug.cgi?id=510
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 18:22:04 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42225 invoked from network); 25 Oct 2000 21:19:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 21:19:41 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJYVWE>; Wed, 25 Oct 2000 18:22:04 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, mkb@ele.uri.edu, bugs@horde.org
Message-Id: <20001025212212Z92749-31430+675@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 18:22:04 -0300
Subject: [Bug 510] Changed - spell check button doesn't disappear
http://bugs.horde.org/show_bug.cgi?id=510
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 18:35:37 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 42624 invoked from network); 25 Oct 2000 21:33:21 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 25 Oct 2000 21:33:21 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQJYVfh>; Wed, 25 Oct 2000 18:35:37 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001025213542Z92749-31426+727@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 18:35:37 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Wed, 25 Oct 2000 23:49:49 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53448 invoked from network); 26 Oct 2000 02:47:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 26 Oct 2000 02:47:36 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJZCtt>; Wed, 25 Oct 2000 23:49:49 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001026024957Z92742-31432+711@athena.chebucto.ns.ca>
Date: Wed, 25 Oct 2000 23:49:49 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Thu, 26 Oct 2000 10:44:14 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65753 invoked from network); 26 Oct 2000 13:42:00 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 26 Oct 2000 13:42:00 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQJZNoO>; Thu, 26 Oct 2000 10:44:14 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001026134425Z92745-31432+739@athena.chebucto.ns.ca>
Date: Thu, 26 Oct 2000 10:44:14 -0300
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Thu, 26 Oct 2000 17:08:05 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14441 invoked from network); 26 Oct 2000 20:05:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 26 Oct 2000 20:05:55 -0000
Received: by athena.chebucto.ns.ca id <S92762AbQJZUIF>; Thu, 26 Oct 2000 17:08:05 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, janc@iplink.net, bugs@horde.org
Cc: janc@iplink.net
Message-Id: <20001026200814Z92762-31426+793@athena.chebucto.ns.ca>
Date: Thu, 26 Oct 2000 17:08:05 -0300
Subject: [Bug 511] New - Compose window displays incorrect From default
http://bugs.horde.org/show_bug.cgi?id=511
>From bugs@bugs.horde.org Date: Thu, 26 Oct 2000 17:11:52 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14518 invoked from network); 26 Oct 2000 20:09:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 26 Oct 2000 20:09:19 -0000
Received: by athena.chebucto.ns.ca id <S92762AbQJZULw>; Thu, 26 Oct 2000 17:11:52 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, janc@iplink.net, bugs@horde.org
Cc: janc@iplink.net
Message-Id: <20001026201159Z92762-31431+741@athena.chebucto.ns.ca>
Date: Thu, 26 Oct 2000 17:11:52 -0300
Subject: [Bug 511] Changed - Compose window displays incorrect From default
http://bugs.horde.org/show_bug.cgi?id=511
>From bugs@bugs.horde.org Date: Thu, 26 Oct 2000 17:11:59 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 14570 invoked from network); 26 Oct 2000 20:09:40 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 26 Oct 2000 20:09:40 -0000
Received: by athena.chebucto.ns.ca id <S92763AbQJZUL7>; Thu, 26 Oct 2000 17:11:59 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, janc@iplink.net, bugs@horde.org
Cc: janc@iplink.net
Message-Id: <20001026201214Z92763-31426+794@athena.chebucto.ns.ca>
Date: Thu, 26 Oct 2000 17:11:59 -0300
Subject: [Bug 511] Changed - Compose window displays incorrect From default
http://bugs.horde.org/show_bug.cgi?id=511
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 06:19:12 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28322 invoked from network); 27 Oct 2000 09:16:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 09:16:55 -0000
Received: by athena.chebucto.ns.ca id <S92760AbQJ0JTM>; Fri, 27 Oct 2000 06:19:12 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Cc: jon@horde.org, chuck@horde.org
Message-Id: <20001027091918Z92760-31431+759@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 06:19:12 -0300
Subject: [Bug 512] New - Error when forwarding a bounced email notice
http://bugs.horde.org/show_bug.cgi?id=512
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 06:25:34 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28522 invoked from network); 27 Oct 2000 09:23:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 09:23:24 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJ0JZe>; Fri, 27 Oct 2000 06:25:34 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Cc: jon@horde.org, chuck@horde.org
Message-Id: <20001027092549Z92761-31431+760@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 06:25:34 -0300
Subject: [Bug 513] New - Page 0 Error
http://bugs.horde.org/show_bug.cgi?id=513
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 06:32:14 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28661 invoked from network); 27 Oct 2000 09:29:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 09:29:54 -0000
Received: by athena.chebucto.ns.ca id <S92760AbQJ0JcO>; Fri, 27 Oct 2000 06:32:14 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Cc: jon@horde.org, chuck@horde.org
Message-Id: <20001027093219Z92760-31432+815@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 06:32:14 -0300
Subject: [Bug 514] New - Erratic Paging when returning from Compose to INBOX
http://bugs.horde.org/show_bug.cgi?id=514
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 10:37:53 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31636 invoked from network); 27 Oct 2000 13:35:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 13:35:35 -0000
Received: by athena.chebucto.ns.ca id <S92760AbQJ0Nhx>; Fri, 27 Oct 2000 10:37:53 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027133800Z92760-31432+833@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 10:37:53 -0300
Subject: [Bug 512] Changed - Error when forwarding a bounced email notice
http://bugs.horde.org/show_bug.cgi?id=512
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 10:46:41 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31860 invoked from network); 27 Oct 2000 13:44:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 13:44:15 -0000
Received: by athena.chebucto.ns.ca id <S92764AbQJ0Nql>; Fri, 27 Oct 2000 10:46:41 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027134645Z92764-31430+783@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 10:46:41 -0300
Subject: [Bug 513] Changed - Page 0 Error
http://bugs.horde.org/show_bug.cgi?id=513
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 10:46:47 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 31911 invoked from network); 27 Oct 2000 13:44:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 13:44:24 -0000
Received: by athena.chebucto.ns.ca id <S92767AbQJ0Nqr>; Fri, 27 Oct 2000 10:46:47 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027134700Z92767-31431+778@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 10:46:47 -0300
Subject: [Bug 513] Changed - Page 0 Error
http://bugs.horde.org/show_bug.cgi?id=513
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 10:47:26 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32180 invoked from network); 27 Oct 2000 13:44:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 13:44:54 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQJ0Nr0>; Fri, 27 Oct 2000 10:47:26 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027134731Z92761-31432+836@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 10:47:26 -0300
Subject: [Bug 514] Changed - Erratic Paging when returning from Compose to INBOX
http://bugs.horde.org/show_bug.cgi?id=514
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 18:26:31 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49693 invoked from network); 27 Oct 2000 21:24:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 21:24:26 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQJ0V0b>; Fri, 27 Oct 2000 18:26:31 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027212637Z92769-31430+806@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 18:26:31 -0300
Subject: [Bug 514] Changed - Erratic Paging when returning from Compose to INBOX
http://bugs.horde.org/show_bug.cgi?id=514
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 18:26:42 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49695 invoked from network); 27 Oct 2000 21:24:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 27 Oct 2000 21:24:26 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJ0V0m>; Fri, 27 Oct 2000 18:26:42 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001027212652Z92771-31430+807@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 18:26:42 -0300
Subject: [Bug 514] Changed - Erratic Paging when returning from Compose to INBOX
http://bugs.horde.org/show_bug.cgi?id=514
>From bugs@bugs.horde.org Date: Fri, 27 Oct 2000 23:21:18 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53416 invoked from network); 28 Oct 2000 02:18:57 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 02:18:57 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJ1CVS>; Fri, 27 Oct 2000 23:21:18 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028022120Z92771-31431+819@athena.chebucto.ns.ca>
Date: Fri, 27 Oct 2000 23:21:18 -0300
Subject: [Bug 515] New - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 01:18:57 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 54974 invoked from network); 28 Oct 2000 04:16:38 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 04:16:38 -0000
Received: by athena.chebucto.ns.ca id <S92771AbQJ1ES5>; Sat, 28 Oct 2000 01:18:57 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028041910Z92771-31432+873@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 01:18:57 -0300
Subject: [Bug 515] Changed - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 01:19:17 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55036 invoked from network); 28 Oct 2000 04:16:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 04:16:46 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQJ1ETR>; Sat, 28 Oct 2000 01:19:17 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028041925Z92773-31426+869@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 01:19:17 -0300
Subject: [Bug 515] Changed - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 17:05:58 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 71892 invoked from network); 28 Oct 2000 20:03:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 20:03:37 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJ1UF6>; Sat, 28 Oct 2000 17:05:58 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028200605Z92715-31432+891@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 17:05:58 -0300
Subject: [Bug 515] Changed - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 17:06:13 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 71893 invoked from network); 28 Oct 2000 20:03:38 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 20:03:38 -0000
Received: by athena.chebucto.ns.ca id <S92778AbQJ1UGN>; Sat, 28 Oct 2000 17:06:13 -0300
From: bugs@bugs.horde.org
To: bjn@horde.org, mkb@ele.uri.edu, bugs@horde.org
Message-Id: <20001028200620Z92778-31431+855@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 17:06:13 -0300
Subject: [Bug 510] Changed - spell check button doesn't disappear
http://bugs.horde.org/show_bug.cgi?id=510
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 17:06:13 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 71908 invoked from network); 28 Oct 2000 20:03:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 20:03:39 -0000
Received: by athena.chebucto.ns.ca id <S92777AbQJ1UGN>; Sat, 28 Oct 2000 17:06:13 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028200620Z92777-31426+890@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 17:06:13 -0300
Subject: [Bug 515] Changed - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sat, 28 Oct 2000 17:06:24 -0300
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 72047 invoked from network); 28 Oct 2000 20:03:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 28 Oct 2000 20:03:55 -0000
Received: by athena.chebucto.ns.ca id <S92782AbQJ1UGY>; Sat, 28 Oct 2000 17:06:24 -0300
From: bugs@bugs.horde.org
To: chuck@horde.org, callum@passport.ca, bugs@horde.org
Message-Id: <20001028200635Z92782-31432+892@athena.chebucto.ns.ca>
Date: Sat, 28 Oct 2000 17:06:24 -0300
Subject: [Bug 515] Changed - Snipping out SpellCheck
http://bugs.horde.org/show_bug.cgi?id=515
>From bugs@bugs.horde.org Date: Sun, 29 Oct 2000 14:26:18 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 87359 invoked from network); 29 Oct 2000 18:24:01 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 29 Oct 2000 18:24:01 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJ2S0S>; Sun, 29 Oct 2000 14:26:18 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, steveh@eecs.umich.edu, bugs@horde.org
Message-Id: <20001029182633Z92715-31431+901@athena.chebucto.ns.ca>
Date: Sun, 29 Oct 2000 14:26:18 -0400
Subject: [Bug 516] New - Traditional Chinese option should be sorted by 'C' and not 'T'
http://bugs.horde.org/show_bug.cgi?id=516
>From bugs@bugs.horde.org Date: Sun, 29 Oct 2000 18:09:02 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 91306 invoked from network); 29 Oct 2000 22:06:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 29 Oct 2000 22:06:32 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJ2WJC>; Sun, 29 Oct 2000 18:09:02 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, steveh@eecs.umich.edu, bugs@horde.org
Message-Id: <20001029220913Z92718-31430+894@athena.chebucto.ns.ca>
Date: Sun, 29 Oct 2000 18:09:02 -0400
Subject: [Bug 516] Changed - Traditional Chinese option should be sorted by 'C' and not 'T'
http://bugs.horde.org/show_bug.cgi?id=516
>From bugs@bugs.horde.org Date: Sun, 29 Oct 2000 18:09:12 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 91354 invoked from network); 29 Oct 2000 22:06:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 29 Oct 2000 22:06:36 -0000
Received: by athena.chebucto.ns.ca id <S92742AbQJ2WJM>; Sun, 29 Oct 2000 18:09:12 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, steveh@eecs.umich.edu, bugs@horde.org
Message-Id: <20001029220913Z92742-31432+938@athena.chebucto.ns.ca>
Date: Sun, 29 Oct 2000 18:09:12 -0400
Subject: [Bug 516] Changed - Traditional Chinese option should be sorted by 'C' and not 'T'
http://bugs.horde.org/show_bug.cgi?id=516
>From bugs@bugs.horde.org Date: Sun, 29 Oct 2000 18:43:44 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 92697 invoked from network); 29 Oct 2000 22:41:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 29 Oct 2000 22:41:16 -0000
Received: by athena.chebucto.ns.ca id <S92715AbQJ2Wno>; Sun, 29 Oct 2000 18:43:44 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001029224359Z92715-31426+939@athena.chebucto.ns.ca>
Date: Sun, 29 Oct 2000 18:43:44 -0400
Subject: [Bug 512] Changed - Error when forwarding a bounced email notice
http://bugs.horde.org/show_bug.cgi?id=512
>From bugs@bugs.horde.org Date: Sun, 29 Oct 2000 18:43:57 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 92749 invoked from network); 29 Oct 2000 22:41:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 29 Oct 2000 22:41:26 -0000
Received: by athena.chebucto.ns.ca id <S92718AbQJ2Wn5>; Sun, 29 Oct 2000 18:43:57 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, stuart@gaiamail.com, bugs@horde.org
Message-Id: <20001029224359Z92718-31431+912@athena.chebucto.ns.ca>
Date: Sun, 29 Oct 2000 18:43:57 -0400
Subject: [Bug 512] Changed - Error when forwarding a bounced email notice
http://bugs.horde.org/show_bug.cgi?id=512
>From bugs@bugs.horde.org Date: Wed, 1 Nov 2000 08:47:32 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 40295 invoked from network); 1 Nov 2000 12:44:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 1 Nov 2000 12:44:56 -0000
Received: by athena.chebucto.ns.ca id <S92763AbQKAMrc>; Wed, 1 Nov 2000 08:47:32 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001101124733Z92763-31431+1063@athena.chebucto.ns.ca>
Date: Wed, 1 Nov 2000 08:47:32 -0400
Subject: [Bug 517] New - LDAP fixes 2.2->2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Wed, 1 Nov 2000 08:48:53 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 40378 invoked from network); 1 Nov 2000 12:46:06 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 1 Nov 2000 12:46:06 -0000
Received: by athena.chebucto.ns.ca id <S92762AbQKAMsx>; Wed, 1 Nov 2000 08:48:53 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001101124900Z92762-31432+1098@athena.chebucto.ns.ca>
Date: Wed, 1 Nov 2000 08:48:53 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Wed, 1 Nov 2000 09:17:56 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 41193 invoked from network); 1 Nov 2000 13:15:22 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 1 Nov 2000 13:15:22 -0000
Received: by athena.chebucto.ns.ca id <S92762AbQKANR4>; Wed, 1 Nov 2000 09:17:56 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001101131802Z92762-31426+1086@athena.chebucto.ns.ca>
Date: Wed, 1 Nov 2000 09:17:56 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Wed, 1 Nov 2000 20:01:34 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 92674 invoked from network); 1 Nov 2000 23:59:02 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 1 Nov 2000 23:59:02 -0000
Received: by athena.chebucto.ns.ca id <S92762AbQKBABe>; Wed, 1 Nov 2000 20:01:34 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001102000147Z92762-31426+1156@athena.chebucto.ns.ca>
Date: Wed, 1 Nov 2000 20:01:34 -0400
Subject: [Bug 518] New - Moving messages to folders fails
http://bugs.horde.org/show_bug.cgi?id=518
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 13:01:16 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 30717 invoked from network); 2 Nov 2000 16:58:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 2 Nov 2000 16:58:33 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKBRBQ>; Thu, 2 Nov 2000 13:01:16 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001102170118Z92770-31431+1122@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 13:01:16 -0400
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 13:01:22 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 30770 invoked from network); 2 Nov 2000 16:58:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 2 Nov 2000 16:58:41 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKBRBW>; Thu, 2 Nov 2000 13:01:22 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001102170133Z92773-31432+1199@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 13:01:22 -0400
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 18:34:24 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57185 invoked from network); 2 Nov 2000 22:31:43 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 2 Nov 2000 22:31:43 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKBWeY>; Thu, 2 Nov 2000 18:34:24 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001102223433Z92735-31426+1217@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 18:34:24 -0400
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 18:34:29 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 57236 invoked from network); 2 Nov 2000 22:31:49 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 2 Nov 2000 22:31:49 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQKBWe3>; Thu, 2 Nov 2000 18:34:29 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001102223433Z92769-31430+1166@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 18:34:29 -0400
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 19:04:20 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58789 invoked from network); 2 Nov 2000 23:01:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 2 Nov 2000 23:01:50 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQKBXEU>; Thu, 2 Nov 2000 19:04:20 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, dean@odyssey.apana.org.au, bugs@horde.org
Message-Id: <20001102230435Z92749-31432+1221@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 19:04:20 -0400
Subject: [Bug 497] Changed - compose.php3 is returning 'file not found' errors on attachments
http://bugs.horde.org/show_bug.cgi?id=497
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 20:56:15 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 75275 invoked from network); 3 Nov 2000 00:53:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 00:53:33 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKCA4P>; Thu, 2 Nov 2000 20:56:15 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001103005625Z92735-31432+1227@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 20:56:15 -0400
Subject: [Bug 518] Changed - Moving messages to folders fails
http://bugs.horde.org/show_bug.cgi?id=518
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 20:56:22 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 75333 invoked from network); 3 Nov 2000 00:53:38 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 00:53:38 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQKCA4W>; Thu, 2 Nov 2000 20:56:22 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001103005625Z92749-31426+1223@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 20:56:22 -0400
Subject: [Bug 518] Changed - Moving messages to folders fails
http://bugs.horde.org/show_bug.cgi?id=518
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 22:35:03 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 82211 invoked from network); 3 Nov 2000 02:32:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 02:32:30 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKCCfD>; Thu, 2 Nov 2000 22:35:03 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jakes@blastnet.com, bugs@horde.org
Cc: jakes@blastnet.com
Message-Id: <20001103023514Z92735-31431+1156@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 22:35:03 -0400
Subject: [Bug 519] New - Support for folders in POP3 external accounts
http://bugs.horde.org/show_bug.cgi?id=519
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 22:42:28 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 82468 invoked from network); 3 Nov 2000 02:39:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 02:39:33 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQKCCm2>; Thu, 2 Nov 2000 22:42:28 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jakes@blastnet.com, bugs@horde.org
Cc: jakes@blastnet.com
Message-Id: <20001103024229Z92749-31431+1157@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 22:42:28 -0400
Subject: [Bug 519] Changed - Support for folders in POP3 external accounts
http://bugs.horde.org/show_bug.cgi?id=519
>From bugs@bugs.horde.org Date: Thu, 2 Nov 2000 22:42:21 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 82519 invoked from network); 3 Nov 2000 02:39:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 02:39:39 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKCCmV>; Thu, 2 Nov 2000 22:42:21 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jakes@blastnet.com, bugs@horde.org
Cc: jakes@blastnet.com
Message-Id: <20001103024229Z92735-31430+1178@athena.chebucto.ns.ca>
Date: Thu, 2 Nov 2000 22:42:21 -0400
Subject: [Bug 519] Changed - Support for folders in POP3 external accounts
http://bugs.horde.org/show_bug.cgi?id=519
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 10:09:26 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 2700 invoked from network); 3 Nov 2000 14:06:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 14:06:56 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQKCOJ0>; Fri, 3 Nov 2000 10:09:26 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001103140929Z92749-31432+1257@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 10:09:26 -0400
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 10:09:35 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 2701 invoked from network); 3 Nov 2000 14:06:56 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 14:06:56 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKCOJf>; Fri, 3 Nov 2000 10:09:35 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001103140944Z92770-31431+1179@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 10:09:35 -0400
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 10:09:46 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 2747 invoked from network); 3 Nov 2000 14:06:59 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 14:06:59 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKCOJq>; Fri, 3 Nov 2000 10:09:46 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, rcgraves@brandeis.edu, bugs@horde.org
Message-Id: <20001103140959Z92773-31431+1180@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 10:09:46 -0400
Subject: [Bug 509] Changed - prefs never display $errormsg!
http://bugs.horde.org/show_bug.cgi?id=509
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 12:23:25 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18230 invoked from network); 3 Nov 2000 16:20:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 16:20:44 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKCQXZ>; Fri, 3 Nov 2000 12:23:25 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001103162335Z92772-31431+1190@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 12:23:25 -0400
Subject: [Bug 520] New - imap_utf7_encode() is missing for "postphoned" and "sent" folders
http://bugs.horde.org/show_bug.cgi?id=520
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 16:27:58 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 29965 invoked from network); 3 Nov 2000 20:25:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 20:25:19 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQKCU16>; Fri, 3 Nov 2000 16:27:58 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001103202803Z92775-31430+1220@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 16:27:58 -0400
Subject: [Bug 520] Changed - imap_utf7_encode() is missing for "postphoned" and "sent" folders
http://bugs.horde.org/show_bug.cgi?id=520
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 16:28:07 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 29966 invoked from network); 3 Nov 2000 20:25:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 3 Nov 2000 20:25:19 -0000
Received: by athena.chebucto.ns.ca id <S92777AbQKCU2H>; Fri, 3 Nov 2000 16:28:07 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001103202818Z92777-31426+1288@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 16:28:07 -0400
Subject: [Bug 520] Changed - imap_utf7_encode() is missing for "postphoned" and "sent" folders
http://bugs.horde.org/show_bug.cgi?id=520
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 20:35:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 45844 invoked from network); 4 Nov 2000 00:32:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 4 Nov 2000 00:32:39 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQKDAf1>; Fri, 3 Nov 2000 20:35:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, chowes@mls-inter.net, bugs@horde.org
Message-Id: <20001104003528Z92775-31432+1299@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 20:35:27 -0400
Subject: [Bug 521] New - rpms have a dependency problem
http://bugs.horde.org/show_bug.cgi?id=521
>From bugs@bugs.horde.org Date: Fri, 3 Nov 2000 20:43:45 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46146 invoked from network); 4 Nov 2000 00:41:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 4 Nov 2000 00:41:05 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQKDAnp>; Fri, 3 Nov 2000 20:43:45 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, chowes@mls-inter.net, bugs@horde.org
Message-Id: <20001104004359Z92775-31432+1300@athena.chebucto.ns.ca>
Date: Fri, 3 Nov 2000 20:43:45 -0400
Subject: [Bug 521] Changed - rpms have a dependency problem
http://bugs.horde.org/show_bug.cgi?id=521
>From bugs@bugs.horde.org Date: Sat, 4 Nov 2000 02:38:45 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 59727 invoked from network); 4 Nov 2000 06:36:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 4 Nov 2000 06:36:09 -0000
Received: by athena.chebucto.ns.ca id <S92756AbQKDGip>; Sat, 4 Nov 2000 02:38:45 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, chowes@mls-inter.net, bugs@horde.org
Message-Id: <20001104063859Z92756-31430+1234@athena.chebucto.ns.ca>
Date: Sat, 4 Nov 2000 02:38:45 -0400
Subject: [Bug 521] Changed - rpms have a dependency problem
http://bugs.horde.org/show_bug.cgi?id=521
>From bugs@bugs.horde.org Date: Sat, 4 Nov 2000 09:16:34 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 69247 invoked from network); 4 Nov 2000 13:13:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 4 Nov 2000 13:13:41 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQKDNQe>; Sat, 4 Nov 2000 09:16:34 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, chowes@mls-inter.net, bugs@horde.org
Message-Id: <20001104131645Z92757-31432+1324@athena.chebucto.ns.ca>
Date: Sat, 4 Nov 2000 09:16:34 -0400
Subject: [Bug 521] Changed - rpms have a dependency problem
http://bugs.horde.org/show_bug.cgi?id=521
>From bugs@bugs.horde.org Date: Sat, 4 Nov 2000 09:16:45 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 69297 invoked from network); 4 Nov 2000 13:13:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 4 Nov 2000 13:13:50 -0000
Received: by athena.chebucto.ns.ca id <S92760AbQKDNQp>; Sat, 4 Nov 2000 09:16:45 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, chowes@mls-inter.net, bugs@horde.org
Message-Id: <20001104131645Z92760-31430+1244@athena.chebucto.ns.ca>
Date: Sat, 4 Nov 2000 09:16:45 -0400
Subject: [Bug 521] Changed - rpms have a dependency problem
http://bugs.horde.org/show_bug.cgi?id=521
>From bugs@bugs.horde.org Date: Sun, 5 Nov 2000 11:10:42 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 2629 invoked from network); 5 Nov 2000 15:08:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 5 Nov 2000 15:08:07 -0000
Received: by athena.chebucto.ns.ca id <S92765AbQKEPKm>; Sun, 5 Nov 2000 11:10:42 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001105151051Z92765-31430+1289@athena.chebucto.ns.ca>
Date: Sun, 5 Nov 2000 11:10:42 -0400
Subject: [Bug 522] New -
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Sun, 5 Nov 2000 22:36:31 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 21903 invoked from network); 6 Nov 2000 02:33:40 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 02:33:40 -0000
Received: by athena.chebucto.ns.ca id <S92779AbQKFCgb>; Sun, 5 Nov 2000 22:36:31 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001106023636Z92779-31431+1292@athena.chebucto.ns.ca>
Date: Sun, 5 Nov 2000 22:36:31 -0400
Subject: [Bug 522] Changed -
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 03:48:40 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 27900 invoked from network); 6 Nov 2000 07:45:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 07:45:55 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFHsk>; Mon, 6 Nov 2000 03:48:40 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106074850Z92780-31431+1302@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 03:48:40 -0400
Subject: [Bug 523] New - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 04:17:39 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28371 invoked from network); 6 Nov 2000 08:14:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 08:14:58 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFIRj>; Mon, 6 Nov 2000 04:17:39 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106081751Z92780-31430+1325@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 04:17:39 -0400
Subject: [Bug 524] New - spelling.php3 never finds spelling mistakes in safe_mode
http://bugs.horde.org/show_bug.cgi?id=524
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 04:22:11 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28462 invoked from network); 6 Nov 2000 08:19:29 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 08:19:29 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFIWL>; Mon, 6 Nov 2000 04:22:11 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106082221Z92780-31430+1326@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 04:22:11 -0400
Subject: [Bug 525] New -
http://bugs.horde.org/show_bug.cgi?id=525
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 04:30:49 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 28640 invoked from network); 6 Nov 2000 08:27:59 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 08:27:59 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFIat>; Mon, 6 Nov 2000 04:30:49 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106083052Z92780-31432+1413@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 04:30:49 -0400
Subject: [Bug 525] Changed - viewing zip contents through zipinfo is impossible in safe_mode
http://bugs.horde.org/show_bug.cgi?id=525
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 09:52:19 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 46984 invoked from network); 6 Nov 2000 13:49:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 13:49:20 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFNwT>; Mon, 6 Nov 2000 09:52:19 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sherpya@netfarm.it, bugs@horde.org
Message-Id: <20001106135220Z92780-31431+1310@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 09:52:19 -0400
Subject: [Bug 526] New - Imp 2.2.3 Crashes with apache 1.3.14 + php 3.0.17
http://bugs.horde.org/show_bug.cgi?id=526
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:05:14 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50494 invoked from network); 6 Nov 2000 14:02:11 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:02:11 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFOFO>; Mon, 6 Nov 2000 10:05:14 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sherpya@netfarm.it, bugs@horde.org
Message-Id: <20001106140521Z92780-31432+1423@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:05:14 -0400
Subject: [Bug 526] Changed - Imp 2.2.3 Crashes with apache 1.3.14 + php 3.0.17
http://bugs.horde.org/show_bug.cgi?id=526
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:05:18 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 50569 invoked from network); 6 Nov 2000 14:02:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:02:20 -0000
Received: by athena.chebucto.ns.ca id <S92782AbQKFOFS>; Mon, 6 Nov 2000 10:05:18 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sherpya@netfarm.it, bugs@horde.org
Message-Id: <20001106140521Z92782-31430+1335@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:05:18 -0400
Subject: [Bug 526] Changed - Imp 2.2.3 Crashes with apache 1.3.14 + php 3.0.17
http://bugs.horde.org/show_bug.cgi?id=526
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:08:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51247 invoked from network); 6 Nov 2000 14:05:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:05:30 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFOI1>; Mon, 6 Nov 2000 10:08:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106140836Z92780-31431+1312@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:08:27 -0400
Subject: [Bug 524] Changed - spelling.php3 never finds spelling mistakes in safe_mode
http://bugs.horde.org/show_bug.cgi?id=524
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:08:23 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51248 invoked from network); 6 Nov 2000 14:05:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:05:30 -0000
Received: by athena.chebucto.ns.ca id <S92784AbQKFOIX>; Mon, 6 Nov 2000 10:08:23 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106140836Z92784-31426+1409@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:08:23 -0400
Subject: [Bug 524] Changed - spelling.php3 never finds spelling mistakes in safe_mode
http://bugs.horde.org/show_bug.cgi?id=524
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:08:54 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51370 invoked from network); 6 Nov 2000 14:06:00 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:06:00 -0000
Received: by athena.chebucto.ns.ca id <S92780AbQKFOIy>; Mon, 6 Nov 2000 10:08:54 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106140906Z92780-31430+1336@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:08:54 -0400
Subject: [Bug 525] Changed - viewing zip contents through zipinfo is impossible in safe_mode
http://bugs.horde.org/show_bug.cgi?id=525
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:53:51 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55433 invoked from network); 6 Nov 2000 14:50:51 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:50:51 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFOxv>; Mon, 6 Nov 2000 10:53:51 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106145353Z92735-31432+1428@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:53:51 -0400
Subject: [Bug 523] Changed - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 10:54:13 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55513 invoked from network); 6 Nov 2000 14:51:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 14:51:19 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFOyN>; Mon, 6 Nov 2000 10:54:13 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106145423Z92735-31432+1429@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 10:54:13 -0400
Subject: [Bug 523] Changed - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 11:19:15 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60350 invoked from network); 6 Nov 2000 15:19:40 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 15:19:40 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFPTP>; Mon, 6 Nov 2000 11:19:15 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001106151925Z92735-31430+1343@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 11:19:15 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 11:24:51 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 61641 invoked from network); 6 Nov 2000 15:25:11 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 15:25:11 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFPYv>; Mon, 6 Nov 2000 11:24:51 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106152456Z92735-31431+1319@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 11:24:51 -0400
Subject: [Bug 523] Changed - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 11:35:09 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 64084 invoked from network); 6 Nov 2000 15:35:30 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 15:35:30 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQKFPfJ>; Mon, 6 Nov 2000 11:35:09 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106153511Z92769-31426+1415@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 11:35:09 -0400
Subject: [Bug 523] Changed - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 11:38:38 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65555 invoked from network); 6 Nov 2000 15:38:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 15:38:50 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFPii>; Mon, 6 Nov 2000 11:38:38 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001106153841Z92735-31430+1347@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 11:38:38 -0400
Subject: [Bug 523] Changed - set_time_limit causes an error in safe mode
http://bugs.horde.org/show_bug.cgi?id=523
>From bugs@bugs.horde.org Date: Mon, 6 Nov 2000 13:12:36 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 73180 invoked from network); 6 Nov 2000 17:13:03 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 6 Nov 2000 17:13:03 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKFRMg>; Mon, 6 Nov 2000 13:12:36 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001106171246Z92735-31430+1362@athena.chebucto.ns.ca>
Date: Mon, 6 Nov 2000 13:12:36 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 05:26:53 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 32210 invoked from network); 7 Nov 2000 09:27:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 09:27:26 -0000
Received: by athena.chebucto.ns.ca id <S92785AbQKGJ0x>; Tue, 7 Nov 2000 05:26:53 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001107092706Z92785-31432+2297@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 05:26:53 -0400
Subject: [Bug 527] New - "House" icon generates JS error when user folders are disabled
http://bugs.horde.org/show_bug.cgi?id=527
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 08:32:55 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36754 invoked from network); 7 Nov 2000 12:33:17 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 12:33:17 -0000
Received: by athena.chebucto.ns.ca id <S92749AbQKGMcz>; Tue, 7 Nov 2000 08:32:55 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001107123256Z92749-31430+2454@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 08:32:55 -0400
Subject: [Bug 527] Changed - "House" icon generates JS error when user folders are disabled
http://bugs.horde.org/show_bug.cgi?id=527
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 08:33:10 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36755 invoked from network); 7 Nov 2000 12:33:18 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 12:33:18 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKGMdK>; Tue, 7 Nov 2000 08:33:10 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001107123311Z92770-31431+2296@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 08:33:10 -0400
Subject: [Bug 527] Changed - "House" icon generates JS error when user folders are disabled
http://bugs.horde.org/show_bug.cgi?id=527
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 08:33:21 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 36858 invoked from network); 7 Nov 2000 12:33:37 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 12:33:37 -0000
Received: by athena.chebucto.ns.ca id <S92788AbQKGMdV>; Tue, 7 Nov 2000 08:33:21 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, alain@cscoms.net, bugs@horde.org
Message-Id: <20001107123326Z92788-31430+2456@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 08:33:21 -0400
Subject: [Bug 527] Changed - "House" icon generates JS error when user folders are disabled
http://bugs.horde.org/show_bug.cgi?id=527
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 08:38:11 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 37039 invoked from network); 7 Nov 2000 12:38:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 12:38:46 -0000
Received: by athena.chebucto.ns.ca id <S92784AbQKGMiL>; Tue, 7 Nov 2000 08:38:11 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107123826Z92784-31426+2564@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 08:38:11 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 12:38:00 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49293 invoked from network); 7 Nov 2000 16:38:32 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 16:38:32 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQKGQiA>; Tue, 7 Nov 2000 12:38:00 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107163809Z92757-31426+2831@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 12:38:00 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 13:02:26 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 49920 invoked from network); 7 Nov 2000 17:02:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 17:02:45 -0000
Received: by athena.chebucto.ns.ca id <S92756AbQKGRC0>; Tue, 7 Nov 2000 13:02:26 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107170227Z92756-31430+2701@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 13:02:26 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 13:13:13 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 51017 invoked from network); 7 Nov 2000 17:13:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 17:13:45 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQKGRNN>; Tue, 7 Nov 2000 13:13:13 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107171328Z92761-31431+2612@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 13:13:13 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 14:03:48 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53684 invoked from network); 7 Nov 2000 18:04:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 18:04:20 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKGSDs>; Tue, 7 Nov 2000 14:03:48 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107180403Z92770-31426+2932@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 14:03:48 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 15:21:52 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 64547 invoked from network); 7 Nov 2000 19:22:15 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 19:22:15 -0000
Received: by athena.chebucto.ns.ca id <S92757AbQKGTVw>; Tue, 7 Nov 2000 15:21:52 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107192157Z92757-31431+2764@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 15:21:52 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 15:25:47 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65644 invoked from network); 7 Nov 2000 19:25:59 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 19:25:59 -0000
Received: by athena.chebucto.ns.ca id <S92784AbQKGTZr>; Tue, 7 Nov 2000 15:25:47 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107192551Z92784-31430+2840@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 15:25:47 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Tue, 7 Nov 2000 15:26:05 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 65699 invoked from network); 7 Nov 2000 19:26:27 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 7 Nov 2000 19:26:27 -0000
Received: by athena.chebucto.ns.ca id <S92784AbQKGT0F>; Tue, 7 Nov 2000 15:26:05 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001107192609Z92784-31430+2841@athena.chebucto.ns.ca>
Date: Tue, 7 Nov 2000 15:26:05 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 13:36:04 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 34864 invoked from network); 8 Nov 2000 17:36:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 8 Nov 2000 17:36:33 -0000
Received: by athena.chebucto.ns.ca id <S92786AbQKHRgE>; Wed, 8 Nov 2000 13:36:04 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001108173613Z92786-31430+4003@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 13:36:04 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 14:13:02 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 37141 invoked from network); 8 Nov 2000 18:13:23 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 8 Nov 2000 18:13:23 -0000
Received: by athena.chebucto.ns.ca id <S92790AbQKHSNC>; Wed, 8 Nov 2000 14:13:02 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, lapolonio@minihowto.com, bugs@horde.org
Cc: lapolonio@minihowto.com
Message-Id: <20001108181303Z92790-31426+4061@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 14:13:02 -0400
Subject: [Bug 528] New - Crashes when using SSL
http://bugs.horde.org/show_bug.cgi?id=528
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 14:13:32 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 37326 invoked from network); 8 Nov 2000 18:13:42 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 8 Nov 2000 18:13:42 -0000
Received: by athena.chebucto.ns.ca id <S92788AbQKHSNc>; Wed, 8 Nov 2000 14:13:32 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, djh@intanet.com, bugs@horde.org
Message-Id: <20001108181333Z92788-31426+4062@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 14:13:32 -0400
Subject: [Bug 522] Changed - user_use_addressbook problem
http://bugs.horde.org/show_bug.cgi?id=522
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 14:16:01 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 38560 invoked from network); 8 Nov 2000 18:16:12 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 8 Nov 2000 18:16:12 -0000
Received: by athena.chebucto.ns.ca id <S92786AbQKHSQB>; Wed, 8 Nov 2000 14:16:01 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, lapolonio@minihowto.com, bugs@horde.org
Cc: lapolonio@minihowto.com
Message-Id: <20001108181603Z92786-31430+4055@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 14:16:01 -0400
Subject: [Bug 528] Changed - Crashes when using SSL
http://bugs.horde.org/show_bug.cgi?id=528
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 14:16:08 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 38619 invoked from network); 8 Nov 2000 18:16:22 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 8 Nov 2000 18:16:22 -0000
Received: by athena.chebucto.ns.ca id <S92797AbQKHSQI>; Wed, 8 Nov 2000 14:16:08 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, lapolonio@minihowto.com, bugs@horde.org
Cc: lapolonio@minihowto.com
Message-Id: <20001108181618Z92797-31430+4056@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 14:16:08 -0400
Subject: [Bug 528] Changed - Crashes when using SSL
http://bugs.horde.org/show_bug.cgi?id=528
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 20:41:56 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 80537 invoked from network); 9 Nov 2000 00:42:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 00:42:24 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQKIAl4>; Wed, 8 Nov 2000 20:41:56 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, skarkkai@woods.iki.fi, bugs@horde.org
Message-Id: <20001109004208Z92745-31430+4352@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 20:41:56 -0400
Subject: [Bug 309] Changed - PHPLIB fails using dbm authentication
http://bugs.horde.org/show_bug.cgi?id=309
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 21:44:48 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 84056 invoked from network); 9 Nov 2000 01:45:21 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 01:45:21 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQKIBos>; Wed, 8 Nov 2000 21:44:48 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001109014457Z92745-31432+4310@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 21:44:48 -0400
Subject: [Bug 529] New - gdbm databases are not created automatically with PHP4
http://bugs.horde.org/show_bug.cgi?id=529
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 22:04:32 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 85396 invoked from network); 9 Nov 2000 02:04:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 02:04:58 -0000
Received: by athena.chebucto.ns.ca id <S92767AbQKICEc>; Wed, 8 Nov 2000 22:04:32 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001109020443Z92767-31432+4332@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 22:04:32 -0400
Subject: [Bug 530] New - It isn't obvious from the login page what IMP is all about
http://bugs.horde.org/show_bug.cgi?id=530
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 22:25:11 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 86198 invoked from network); 9 Nov 2000 02:25:33 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 02:25:33 -0000
Received: by athena.chebucto.ns.ca id <S92745AbQKICZL>; Wed, 8 Nov 2000 22:25:11 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001109022516Z92745-31432+4337@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 22:25:11 -0400
Subject: [Bug 529] Changed - gdbm databases are not created automatically with PHP4
http://bugs.horde.org/show_bug.cgi?id=529
>From bugs@bugs.horde.org Date: Wed, 8 Nov 2000 22:25:18 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 86199 invoked from network); 9 Nov 2000 02:25:34 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 02:25:34 -0000
Received: by athena.chebucto.ns.ca id <S92796AbQKICZS>; Wed, 8 Nov 2000 22:25:18 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001109022531Z92796-31430+4394@athena.chebucto.ns.ca>
Date: Wed, 8 Nov 2000 22:25:18 -0400
Subject: [Bug 529] Changed - gdbm databases are not created automatically with PHP4
http://bugs.horde.org/show_bug.cgi?id=529
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 16:19:33 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 37526 invoked from network); 9 Nov 2000 20:19:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 20:19:54 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKIUTd>; Thu, 9 Nov 2000 16:19:33 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, garlic@garlic.com, bugs@horde.org
Message-Id: <20001109201933Z92773-31430+5126@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 16:19:33 -0400
Subject: [Bug 531] New - Invald SQL error
http://bugs.horde.org/show_bug.cgi?id=531
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 16:40:02 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 38954 invoked from network); 9 Nov 2000 20:40:31 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 9 Nov 2000 20:40:31 -0000
Received: by athena.chebucto.ns.ca id <S92769AbQKIUkC>; Thu, 9 Nov 2000 16:40:02 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, garlic@garlic.com, bugs@horde.org
Message-Id: <20001109204007Z92769-31431+4761@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 16:40:02 -0400
Subject: [Bug 531] Changed - Invald SQL error
http://bugs.horde.org/show_bug.cgi?id=531
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 22:08:01 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53452 invoked from network); 10 Nov 2000 02:08:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 02:08:25 -0000
Received: by athena.chebucto.ns.ca id <S92796AbQKJCIB>; Thu, 9 Nov 2000 22:08:01 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, garlic@garlic.com, bugs@horde.org
Message-Id: <20001110020810Z92796-31430+5318@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 22:08:01 -0400
Subject: [Bug 531] Changed - Invald SQL error
http://bugs.horde.org/show_bug.cgi?id=531
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 22:08:26 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53503 invoked from network); 10 Nov 2000 02:08:35 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 02:08:35 -0000
Received: by athena.chebucto.ns.ca id <S92798AbQKJCI0>; Thu, 9 Nov 2000 22:08:26 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, garlic@garlic.com, bugs@horde.org
Message-Id: <20001110020828Z92798-31430+5319@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 22:08:26 -0400
Subject: [Bug 531] Changed - Invald SQL error
http://bugs.horde.org/show_bug.cgi?id=531
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 22:43:19 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 55972 invoked from network); 10 Nov 2000 02:43:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 02:43:41 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKJCnT>; Thu, 9 Nov 2000 22:43:19 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001110024323Z92772-31426+5216@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 22:43:19 -0400
Subject: [Bug 530] Changed - It isn't obvious from the login page what IMP is all about
http://bugs.horde.org/show_bug.cgi?id=530
>From bugs@bugs.horde.org Date: Thu, 9 Nov 2000 22:44:47 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 56431 invoked from network); 10 Nov 2000 02:45:05 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 02:45:05 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKJCor>; Thu, 9 Nov 2000 22:44:47 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001110024455Z92772-31432+5266@athena.chebucto.ns.ca>
Date: Thu, 9 Nov 2000 22:44:47 -0400
Subject: [Bug 530] Changed - It isn't obvious from the login page what IMP is all about
http://bugs.horde.org/show_bug.cgi?id=530
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 04:24:28 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 69272 invoked from network); 10 Nov 2000 08:24:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 08:24:58 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKJIY2>; Fri, 10 Nov 2000 04:24:28 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001110082436Z92770-31430+5491@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 04:24:28 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 10:34:39 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 79765 invoked from network); 10 Nov 2000 14:35:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 14:35:07 -0000
Received: by athena.chebucto.ns.ca id <S92796AbQKJOej>; Fri, 10 Nov 2000 10:34:39 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001110143450Z92796-31432+5827@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 10:34:39 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 10:50:54 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 80362 invoked from network); 10 Nov 2000 14:51:27 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 14:51:27 -0000
Received: by athena.chebucto.ns.ca id <S92782AbQKJOuy>; Fri, 10 Nov 2000 10:50:54 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001110145107Z92782-31430+5759@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 10:50:54 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 11:53:45 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 83118 invoked from network); 10 Nov 2000 15:54:13 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 15:54:13 -0000
Received: by athena.chebucto.ns.ca id <S92799AbQKJPxp>; Fri, 10 Nov 2000 11:53:45 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001110155351Z92799-31430+5792@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 11:53:45 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 14:57:46 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 90041 invoked from network); 10 Nov 2000 18:58:21 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 10 Nov 2000 18:58:21 -0000
Received: by athena.chebucto.ns.ca id <S92796AbQKJS5q>; Fri, 10 Nov 2000 14:57:46 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001110185756Z92796-31430+5976@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 14:57:46 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Fri, 10 Nov 2000 22:36:44 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 3830 invoked from network); 11 Nov 2000 02:37:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Nov 2000 02:37:09 -0000
Received: by athena.chebucto.ns.ca id <S92782AbQKKCgo>; Fri, 10 Nov 2000 22:36:44 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001111023648Z92782-31432+6289@athena.chebucto.ns.ca>
Date: Fri, 10 Nov 2000 22:36:44 -0400
Subject: [Bug 530] Changed - It isn't obvious from the login page what IMP is all about
http://bugs.horde.org/show_bug.cgi?id=530
>From bugs@bugs.horde.org Date: Sat, 11 Nov 2000 13:27:59 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20597 invoked from network); 11 Nov 2000 17:28:38 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Nov 2000 17:28:38 -0000
Received: by athena.chebucto.ns.ca id <S92789AbQKKR17>; Sat, 11 Nov 2000 13:27:59 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001111172811Z92789-31431+6054@athena.chebucto.ns.ca>
Date: Sat, 11 Nov 2000 13:27:59 -0400
Subject: [Bug 532] New - password change form should point the action to itself not to a fixed url.
http://bugs.horde.org/show_bug.cgi?id=532
>From bugs@bugs.horde.org Date: Sat, 11 Nov 2000 13:31:02 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20666 invoked from network); 11 Nov 2000 17:31:13 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Nov 2000 17:31:13 -0000
Received: by athena.chebucto.ns.ca id <S92785AbQKKRbC>; Sat, 11 Nov 2000 13:31:02 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001111173111Z92785-31431+6057@athena.chebucto.ns.ca>
Date: Sat, 11 Nov 2000 13:31:02 -0400
Subject: [Bug 525] Changed - viewing zip contents through zipinfo is impossible in safe_mode
http://bugs.horde.org/show_bug.cgi?id=525
>From bugs@bugs.horde.org Date: Sat, 11 Nov 2000 13:32:58 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20837 invoked from network); 11 Nov 2000 17:33:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Nov 2000 17:33:26 -0000
Received: by athena.chebucto.ns.ca id <S92792AbQKKRc6>; Sat, 11 Nov 2000 13:32:58 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001111173312Z92792-31426+6198@athena.chebucto.ns.ca>
Date: Sat, 11 Nov 2000 13:32:58 -0400
Subject: [Bug 532] Changed - password change form should point the action to itself not to a fixed url.
http://bugs.horde.org/show_bug.cgi?id=532
>From bugs@bugs.horde.org Date: Sat, 11 Nov 2000 13:33:18 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20891 invoked from network); 11 Nov 2000 17:33:36 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 11 Nov 2000 17:33:36 -0000
Received: by athena.chebucto.ns.ca id <S92794AbQKKRdS>; Sat, 11 Nov 2000 13:33:18 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001111173327Z92794-31430+6772@athena.chebucto.ns.ca>
Date: Sat, 11 Nov 2000 13:33:18 -0400
Subject: [Bug 532] Changed - password change form should point the action to itself not to a fixed url.
http://bugs.horde.org/show_bug.cgi?id=532
>From bugs@bugs.horde.org Date: Sun, 12 Nov 2000 19:38:18 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53197 invoked from network); 12 Nov 2000 23:38:46 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 12 Nov 2000 23:38:46 -0000
Received: by athena.chebucto.ns.ca id <S92735AbQKLXiS>; Sun, 12 Nov 2000 19:38:18 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, horde@plan9.de, bugs@horde.org
Message-Id: <20001112233823Z92735-31430+8778@athena.chebucto.ns.ca>
Date: Sun, 12 Nov 2000 19:38:18 -0400
Subject: [Bug 533] New - broken urls in genearted code
http://bugs.horde.org/show_bug.cgi?id=533
>From bugs@bugs.horde.org Date: Sun, 12 Nov 2000 19:48:17 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 53441 invoked from network); 12 Nov 2000 23:48:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 12 Nov 2000 23:48:41 -0000
Received: by athena.chebucto.ns.ca id <S92785AbQKLXsR>; Sun, 12 Nov 2000 19:48:17 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, horde@plan9.de, bugs@horde.org
Message-Id: <20001112234821Z92785-31426+8210@athena.chebucto.ns.ca>
Date: Sun, 12 Nov 2000 19:48:17 -0400
Subject: [Bug 533] Changed - broken urls in generated code
http://bugs.horde.org/show_bug.cgi?id=533
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 08:57:21 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 73901 invoked from network); 13 Nov 2000 12:57:53 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 12:57:53 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQKMM5V>; Mon, 13 Nov 2000 08:57:21 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001113125722Z92775-31426+8918@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 08:57:21 -0400
Subject: [Bug 534] New - Image sizes not set in the configuration file for mailbox.php3
http://bugs.horde.org/show_bug.cgi?id=534
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 09:06:46 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 74079 invoked from network); 13 Nov 2000 13:07:14 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 13:07:14 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQKMNGq>; Mon, 13 Nov 2000 09:06:46 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, mvreijn@koha.nl, bugs@horde.org
Message-Id: <20001113130653Z92776-31431+8720@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 09:06:46 -0400
Subject: [Bug 517] Changed - LDAP fixes 2.2.2->2.2.3 not applied
http://bugs.horde.org/show_bug.cgi?id=517
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 13:30:28 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 87463 invoked from network); 13 Nov 2000 17:30:57 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 17:30:57 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKMRa2>; Mon, 13 Nov 2000 13:30:28 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, affe@kiruna.se, bugs@horde.org
Message-Id: <20001113173034Z92772-31431+8931@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 13:30:28 -0400
Subject: [Bug 535] New - Unable to handle International chars
http://bugs.horde.org/show_bug.cgi?id=535
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 14:02:28 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 88131 invoked from network); 13 Nov 2000 18:02:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 18:02:41 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKMSC2>; Mon, 13 Nov 2000 14:02:28 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, affe@kiruna.se, bugs@horde.org
Message-Id: <20001113180236Z92772-31431+8958@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 14:02:28 -0400
Subject: [Bug 535] Changed - Unable to handle International chars
http://bugs.horde.org/show_bug.cgi?id=535
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 14:02:36 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 88184 invoked from network); 13 Nov 2000 18:02:58 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 18:02:58 -0000
Received: by athena.chebucto.ns.ca id <S92782AbQKMSCg>; Mon, 13 Nov 2000 14:02:36 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, affe@kiruna.se, bugs@horde.org
Message-Id: <20001113180236Z92782-31431+8959@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 14:02:36 -0400
Subject: [Bug 535] Changed - Unable to handle International chars
http://bugs.horde.org/show_bug.cgi?id=535
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 14:20:24 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 89536 invoked from network); 13 Nov 2000 18:20:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 18:20:41 -0000
Received: by athena.chebucto.ns.ca id <S92772AbQKMSUY>; Mon, 13 Nov 2000 14:20:24 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sunday@csh.rit.edu, bugs@horde.org
Message-Id: <20001113182026Z92772-31426+9157@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 14:20:24 -0400
Subject: [Bug 536] New - compose.php after search
http://bugs.horde.org/show_bug.cgi?id=536
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 16:35:05 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 98057 invoked from network); 13 Nov 2000 20:35:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 20:35:20 -0000
Received: by athena.chebucto.ns.ca id <S92783AbQKMUfF>; Mon, 13 Nov 2000 16:35:05 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001113203507Z92783-31426+9285@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 16:35:05 -0400
Subject: [Bug 534] Changed - Image sizes not set in the configuration file for mailbox.php3
http://bugs.horde.org/show_bug.cgi?id=534
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 16:34:54 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 98114 invoked from network); 13 Nov 2000 20:35:26 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 20:35:26 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQKMUey>; Mon, 13 Nov 2000 16:34:54 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001113203507Z92776-31432+10056@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 16:34:54 -0400
Subject: [Bug 534] Changed - Image sizes not set in the configuration file for mailbox.php3
http://bugs.horde.org/show_bug.cgi?id=534
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 16:49:24 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 98925 invoked from network); 13 Nov 2000 20:49:53 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 20:49:53 -0000
Received: by athena.chebucto.ns.ca id <S92761AbQKMUtY>; Mon, 13 Nov 2000 16:49:24 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sunday@csh.rit.edu, bugs@horde.org
Message-Id: <20001113204928Z92761-31432+10065@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 16:49:24 -0400
Subject: [Bug 536] Changed - compose.php after search
http://bugs.horde.org/show_bug.cgi?id=536
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 16:49:40 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 98926 invoked from network); 13 Nov 2000 20:49:54 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 20:49:54 -0000
Received: by athena.chebucto.ns.ca id <S92788AbQKMUtk>; Mon, 13 Nov 2000 16:49:40 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sunday@csh.rit.edu, bugs@horde.org
Message-Id: <20001113204943Z92788-31430+10102@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 16:49:40 -0400
Subject: [Bug 536] Changed - compose.php after search
http://bugs.horde.org/show_bug.cgi?id=536
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 17:27:38 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 384 invoked from network); 13 Nov 2000 21:28:10 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 21:28:10 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKMV1i>; Mon, 13 Nov 2000 17:27:38 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, carter@carter.to, bugs@horde.org
Message-Id: <20001113212750Z92773-31426+9314@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 17:27:38 -0400
Subject: [Bug 537] New - error when auto-refreshing mailbox formats of the non-default type
http://bugs.horde.org/show_bug.cgi?id=537
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 17:35:45 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 682 invoked from network); 13 Nov 2000 21:36:18 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 21:36:18 -0000
Received: by athena.chebucto.ns.ca id <S92770AbQKMVfp>; Mon, 13 Nov 2000 17:35:45 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, carter@carter.to, bugs@horde.org
Message-Id: <20001113213553Z92770-31432+10094@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 17:35:45 -0400
Subject: [Bug 537] Changed - error when auto-refreshing mailbox formats of the non-default type
http://bugs.horde.org/show_bug.cgi?id=537
>From bugs@bugs.horde.org Date: Mon, 13 Nov 2000 17:35:54 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 683 invoked from network); 13 Nov 2000 21:36:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 13 Nov 2000 21:36:19 -0000
Received: by athena.chebucto.ns.ca id <S92783AbQKMVfy>; Mon, 13 Nov 2000 17:35:54 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, carter@carter.to, bugs@horde.org
Message-Id: <20001113213608Z92783-31430+10132@athena.chebucto.ns.ca>
Date: Mon, 13 Nov 2000 17:35:54 -0400
Subject: [Bug 537] Changed - error when auto-refreshing mailbox formats of the non-default type
http://bugs.horde.org/show_bug.cgi?id=537
>From bugs@bugs.horde.org Date: Tue, 14 Nov 2000 06:16:44 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 23167 invoked from network); 14 Nov 2000 10:17:07 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Nov 2000 10:17:07 -0000
Received: by athena.chebucto.ns.ca id <S92776AbQKNKQo>; Tue, 14 Nov 2000 06:16:44 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, bank@mail.popidols.net, bugs@horde.org
Message-Id: <20001114101646Z92776-31426+9937@athena.chebucto.ns.ca>
Date: Tue, 14 Nov 2000 06:16:44 -0400
Subject: [Bug 538] New - warning
http://bugs.horde.org/show_bug.cgi?id=538
>From bugs@bugs.horde.org Date: Tue, 14 Nov 2000 11:06:31 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35872 invoked from network); 14 Nov 2000 15:06:48 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Nov 2000 15:06:48 -0000
Received: by athena.chebucto.ns.ca id <S92785AbQKNPGb>; Tue, 14 Nov 2000 11:06:31 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, bank@mail.popidols.net, bugs@horde.org
Message-Id: <20001114150635Z92785-31432+10953@athena.chebucto.ns.ca>
Date: Tue, 14 Nov 2000 11:06:31 -0400
Subject: [Bug 538] Changed - warning
http://bugs.horde.org/show_bug.cgi?id=538
>From bugs@bugs.horde.org Date: Tue, 14 Nov 2000 11:06:41 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 35925 invoked from network); 14 Nov 2000 15:06:57 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Nov 2000 15:06:57 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKNPGl>; Tue, 14 Nov 2000 11:06:41 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, bank@mail.popidols.net, bugs@horde.org
Message-Id: <20001114150650Z92773-31426+10121@athena.chebucto.ns.ca>
Date: Tue, 14 Nov 2000 11:06:41 -0400
Subject: [Bug 538] Changed - warning
http://bugs.horde.org/show_bug.cgi?id=538
>From bugs@bugs.horde.org Date: Tue, 14 Nov 2000 19:31:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 79196 invoked from network); 14 Nov 2000 23:31:44 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 14 Nov 2000 23:31:44 -0000
Received: by athena.chebucto.ns.ca id <S92773AbQKNXb1>; Tue, 14 Nov 2000 19:31:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, advax@triumf.ca, bugs@horde.org
Message-Id: <20001114233132Z92773-31432+11236@athena.chebucto.ns.ca>
Date: Tue, 14 Nov 2000 19:31:27 -0400
Subject: [Bug 539] New - $default->from_server not passed to imp.lib
http://bugs.horde.org/show_bug.cgi?id=539
>From bugs@bugs.horde.org Date: Wed, 15 Nov 2000 08:30:23 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 417 invoked from network); 15 Nov 2000 12:31:08 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 15 Nov 2000 12:31:08 -0000
Received: by athena.chebucto.ns.ca id <S92842AbQKOMaX>; Wed, 15 Nov 2000 08:30:23 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001115123034Z92842-31430+11903@athena.chebucto.ns.ca>
Date: Wed, 15 Nov 2000 08:30:23 -0400
Subject: [Bug 540] New - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Wed, 15 Nov 2000 13:12:25 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 12169 invoked from network); 15 Nov 2000 17:12:59 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 15 Nov 2000 17:12:59 -0000
Received: by athena.chebucto.ns.ca id <S92852AbQKORMZ>; Wed, 15 Nov 2000 13:12:25 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001115171225Z92852-31431+10726@athena.chebucto.ns.ca>
Date: Wed, 15 Nov 2000 13:12:25 -0400
Subject: [Bug 541] New - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 10:12:56 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 52049 invoked from network); 16 Nov 2000 14:13:24 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 14:13:24 -0000
Received: by athena.chebucto.ns.ca id <S92896AbQKPOM4>; Thu, 16 Nov 2000 10:12:56 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jari@utu.fi, bugs@horde.org
Message-Id: <20001116141303Z92896-31426+11858@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 10:12:56 -0400
Subject: [Bug 542] New - Unable to unsubscribe folder with 8-bit characters in name
http://bugs.horde.org/show_bug.cgi?id=542
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 11:51:42 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58128 invoked from network); 16 Nov 2000 15:52:16 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 15:52:16 -0000
Received: by athena.chebucto.ns.ca id <S92775AbQKPPvm>; Thu, 16 Nov 2000 11:51:42 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jari@utu.fi, bugs@horde.org
Message-Id: <20001116155153Z92775-31431+11515@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 11:51:42 -0400
Subject: [Bug 542] Changed - Unable to unsubscribe folder with 8-bit characters in name
http://bugs.horde.org/show_bug.cgi?id=542
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 11:52:23 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58290 invoked from network); 16 Nov 2000 15:52:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 15:52:39 -0000
Received: by athena.chebucto.ns.ca id <S92901AbQKPPwX>; Thu, 16 Nov 2000 11:52:23 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, jari@utu.fi, bugs@horde.org
Message-Id: <20001116155225Z92901-31430+12819@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 11:52:23 -0400
Subject: [Bug 542] Changed - Unable to unsubscribe folder with 8-bit characters in name
http://bugs.horde.org/show_bug.cgi?id=542
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 11:55:33 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58444 invoked from network); 16 Nov 2000 15:55:41 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 15:55:41 -0000
Received: by athena.chebucto.ns.ca id <S92903AbQKPPzd>; Thu, 16 Nov 2000 11:55:33 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001116155538Z92903-31426+11906@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 11:55:33 -0400
Subject: [Bug 540] Changed - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 11:55:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 58505 invoked from network); 16 Nov 2000 15:55:47 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 15:55:47 -0000
Received: by athena.chebucto.ns.ca id <S92901AbQKPPz1>; Thu, 16 Nov 2000 11:55:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001116155538Z92901-31431+11518@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 11:55:27 -0400
Subject: [Bug 540] Changed - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Thu, 16 Nov 2000 12:40:24 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 60948 invoked from network); 16 Nov 2000 16:40:49 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 16 Nov 2000 16:40:49 -0000
Received: by athena.chebucto.ns.ca id <S92901AbQKPQkY>; Thu, 16 Nov 2000 12:40:24 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001116164031Z92901-31431+11549@athena.chebucto.ns.ca>
Date: Thu, 16 Nov 2000 12:40:24 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 04:17:58 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 5626 invoked from network); 17 Nov 2000 08:18:19 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 08:18:19 -0000
Received: by athena.chebucto.ns.ca id <S91828AbQKQIR6>; Fri, 17 Nov 2000 04:17:58 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001117081804Z91828-31426+12517@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 04:17:58 -0400
Subject: [Bug 540] Changed - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 07:08:01 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 12128 invoked from network); 17 Nov 2000 11:08:25 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 11:08:25 -0000
Received: by athena.chebucto.ns.ca id <S91828AbQKQLIB>; Fri, 17 Nov 2000 07:08:01 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117110803Z91828-31431+12178@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 07:08:01 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 10:56:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18597 invoked from network); 17 Nov 2000 14:56:55 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 14:56:55 -0000
Received: by athena.chebucto.ns.ca id <S91815AbQKQO41>; Fri, 17 Nov 2000 10:56:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001117145630Z91815-31426+12743@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 10:56:27 -0400
Subject: [Bug 540] Changed - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 10:59:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18695 invoked from network); 17 Nov 2000 14:59:39 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 14:59:39 -0000
Received: by athena.chebucto.ns.ca id <S91815AbQKQO71>; Fri, 17 Nov 2000 10:59:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, momchil@mail.bg, bugs@horde.org
Message-Id: <20001117145930Z91815-31426+12748@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 10:59:27 -0400
Subject: [Bug 540] Changed - in safe mode imp sends with Return-path: anonymous@domain.tld
http://bugs.horde.org/show_bug.cgi?id=540
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:01:47 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18796 invoked from network); 17 Nov 2000 15:01:50 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:01:50 -0000
Received: by athena.chebucto.ns.ca id <S91816AbQKQPBr>; Fri, 17 Nov 2000 11:01:47 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117150147Z91816-31430+13579@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:01:47 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:02:27 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18859 invoked from network); 17 Nov 2000 15:02:40 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:02:40 -0000
Received: by athena.chebucto.ns.ca id <S91815AbQKQPC1>; Fri, 17 Nov 2000 11:02:27 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117150231Z91815-31432+13415@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:02:27 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:02:57 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18911 invoked from network); 17 Nov 2000 15:03:09 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:03:09 -0000
Received: by athena.chebucto.ns.ca id <S91816AbQKQPC5>; Fri, 17 Nov 2000 11:02:57 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117150301Z91816-31432+13416@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:02:57 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:03:04 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 18912 invoked from network); 17 Nov 2000 15:03:10 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:03:10 -0000
Received: by athena.chebucto.ns.ca id <S91840AbQKQPDE>; Fri, 17 Nov 2000 11:03:04 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117150304Z91840-31431+12302@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:03:04 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:03:11 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 19015 invoked from network); 17 Nov 2000 15:03:20 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:03:20 -0000
Received: by athena.chebucto.ns.ca id <S91816AbQKQPDL>; Fri, 17 Nov 2000 11:03:11 -0400
From: bugs@bugs.horde.org
To: bjn@horde.org, sacs@mailandnews.com, bugs@horde.org
Message-Id: <20001117150316Z91816-31432+13417@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:03:11 -0400
Subject: [Bug 541] Changed - problems with forwarding mails forwarded from usa.net
http://bugs.horde.org/show_bug.cgi?id=541
>From bugs@bugs.horde.org Date: Fri, 17 Nov 2000 11:47:26 -0400
Return-Path: <bugs@bugs.horde.org>
Mailing-List: contact bugs-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list bugs@lists.horde.org
Received: (qmail 20005 invoked from network); 17 Nov 2000 15:47:45 -0000
Received: from athena.chebucto.ns.ca (192.75.95.81)
by horde.org with SMTP; 17 Nov 2000 15:47:45 -0000
Received: by athena.chebucto.ns.ca id <S91815AbQKQPr0>; Fri, 17 Nov 2000 11:47:26 -0400
From: bugs@bugs.horde.org
To: chuck@horde.org, pekkas@netcore.fi, bugs@horde.org
Message-Id: <20001117154728Z91815-31431+12305@athena.chebucto.ns.ca>
Date: Fri, 17 Nov 2000 11:47:26 -0400
Subject: [Bug 543] New - folders.php3: utf7 warnings of files with umlauts in homedir
http://bugs.horde.org/show_bug.cgi?id=543