attachment problem
steven tam
steven_tam@aelhk.com.hk
Sat, 6 Jan 2001 08:26:32 +0800
When I tried to attach a file in the mail, after I clicked the "attach"
button, it gave me the error message: "Boundary length excess". What's the
problem and how can I solve it? Thanks
Yours,
Tam Hon Kit Steven
>From chuck@horde.org Date: Sat, 6 Jan 2001 15:30:22 -0500
Return-Path: <chuck@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 37343 invoked from network); 6 Jan 2001 20:31:16 -0000
Received: from r93aag000369.sbo-smr.ma.cable.rcn.com (HELO marina.horde.org) (209.6.192.126)
by horde.org with SMTP; 6 Jan 2001 20:31:16 -0000
Received: by marina.horde.org (Postfix, from userid 33)
id 8D2AA39F9; Sat, 6 Jan 2001 15:30:22 -0500 (EST)
Received: from 192.168.0.159 ( [192.168.0.159])
as user chuck@marina by marina.your.mom with HTTP;
Sat, 6 Jan 2001 15:30:22 -0500
Message-ID: <978813022.3a57805e75261@marina.your.mom>
Date: Sat, 6 Jan 2001 15:30:22 -0500
From: Chuck Hagenbuch <chuck@horde.org>
To: imp@lists.horde.org
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.6-cvs
Subject: Re: [imp] upgrade info for v 2.3
Quoting Tracy Bost <tbost@ifarm.com>:
> Have tried the demo site for version 2.3... I looks great. I think I would
> like to the process of migrating from 2.2 to 2.3.. I haven't been
> able to find the installation/upgrade documentation on the horde site. Could
> someone kindly point me to that URL ?
If you need the documentation, 2.3 may not be for you yet. It's the development
branch, and still fairly bleeding edge at times.
-chuck
--
Charles Hagenbuch, <chuck@horde.org>
"If you can't stand the heat, get out of the chicken!" - Baby Blues
>From anil@recoil.org Date: Sun, 7 Jan 2001 09:48:43 +0000
Return-Path: <anil@recoil.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 43023 invoked from network); 7 Jan 2001 09:48:45 -0000
Received: from total.recoil.org (212.25.240.40)
by horde.org with SMTP; 7 Jan 2001 09:48:45 -0000
Received: (qmail 19067 invoked by uid 99); 7 Jan 2001 09:48:43 -0000
Received: from dsl-212-135-236-198.dsl.easynet.co.uk ( [dsl-212-135-236-198.dsl.easynet.co.uk])
as user avsm@localhost by horde.recoil.org with HTTP;
Sun, 7 Jan 2001 09:48:43 +0000
Message-ID: <978860923.3a583b7bd2434@horde.recoil.org>
Date: Sun, 7 Jan 2001 09:48:43 +0000
From: Anil Madhavapeddy <anil@recoil.org>
To: imp@lists.horde.org
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.6-cvs
Subject: Fwd: [PHP-CVS] cvs: php4 /ext/imap php_imap.c
Some people were having problems with the navigator crashing on
them, and multiple spurious login attempts being sent to their
IMAP server.
The following commit to PHP-4.0.5-dev appears to fix the problem;
interested parties should try to upgrade to php-cvs and see if the
problem goes away.
----- Forwarded message from Jani Taskinen <sniper@iki.fi> -----
Date: Sun, 07 Jan 2001 07:47:48 -0000
From: Jani Taskinen <sniper@iki.fi>
Reply-To: Jani Taskinen <sniper@iki.fi>
Subject: [PHP-CVS] cvs: php4 /ext/imap php_imap.c
To: php-cvs@lists.php.net
sniper Sat Jan 6 23:47:48 2001 EDT
Modified files:
/php4/ext/imap php_imap.c
Log:
imap_user and imap_password were freed too early.
PR: 8424
Index: php4/ext/imap/php_imap.c
diff -u php4/ext/imap/php_imap.c:1.52 php4/ext/imap/php_imap.c:1.53
--- php4/ext/imap/php_imap.c:1.52 Fri Dec 22 04:57:06 2000
+++ php4/ext/imap/php_imap.c Sat Jan 6 23:47:46 2001
@@ -25,7 +25,7 @@
| PHP 4.0 updates: Zeev Suraski <zeev@zend.com>
|
+----------------------------------------------------------------------+
*/
-/* $Id: php_imap.c,v 1.52 2000/12/22 12:57:06 zeev Exp $ */
+/* $Id: php_imap.c,v 1.53 2001/01/07 07:47:46 sniper Exp $ */
#define IMAP41
@@ -71,7 +71,7 @@
int imap_mail(char *to, char *subject, char *message, char *headers,
char *cc, char *bcc, char *rpath);
-void mail_close_it(zend_rsrc_list_entry *rsrc);
+void mail_close_it (zend_rsrc_list_entry *rsrc);
#ifdef OP_RELOGIN
/* AJS: close persistent connection */
void mail_userlogout_it(zend_rsrc_list_entry *rsrc);
@@ -184,6 +184,9 @@
{
pils *imap_le_struct = (pils *)rsrc->ptr;
mail_close_full(imap_le_struct->imap_stream, imap_le_struct->flags);
+
+ efree(IMAPG(imap_user));
+ efree(IMAPG(imap_password));
efree(imap_le_struct);
}
@@ -766,8 +769,6 @@
} else {
#endif
imap_stream = mail_open(NIL, Z_STRVAL_PP(mailbox), flags);
- efree(IMAPG(imap_user));
- efree(IMAPG(imap_password));
if (imap_stream == NIL) {
php_error(E_WARNING, "Couldn't open stream %s\n",
(*mailbox)->value.str.val);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-cvs-unsubscribe@lists.php.net
For additional commands, e-mail: php-cvs-help@lists.php.net
To contact the list administrators, e-mail: php-list-admin@lists.php.net
----- End forwarded message -----
--
Anil Madhavapeddy, <anil@recoil.org>