[SM-USERS] fsockopen(): unable to connect | 36 : Operation now in progress

2004-03-16 Thread maarten


Hello,

Since this morning, Squirrelmail gives me the following error message when I try
to login:

fsockopen(): unable to connect
36 : Operation now in progress

Until now, I have tried the following options:

- Reinstalling Squirrelmail (the newest version, 1.5.0)
- Restarting the IMAP-server
- Configurate Squirrelmail with another IMAP-server

But all these options didn't solve the problem. When I try to access
Squirrelmail from cPanel, everything is working fine.

Please help me!


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Error Sending Mail

2005-05-26 Thread Maarten van
Hello,

I can send emails just fine using /bin/mail or
something. Sending mail through squirrel, however, 
gives me:

This is the Postfix program at host karchan.org.

I'm sorry to have to inform you that your message
could not be
be delivered to one or more recipients. It's attached
below.

For further assistance, please send mail to


If you do so, please include this problem report. You
can
delete your own text from the attached returned
message.

The Postfix program

: No recipients specified

Download this as a file


Now, I can distinctly remember entering the recipients
in the "To:" field.

Receiving of email is absolutely fine.

My current setup is:
- Fedora Core 3 Linux
- kernel 2.6.11 or something
- postfix-2.1.5-5
- dovecot-0.99.13-3.FC3
- squirrelmail-1.4.4-1.FC3

Is any more info needed?

I am sorry if it is unrelated to squirrelmail.

Regards,


Karn (Ruler of Karchan, Keeper of the Key to the Room of Lost Souls)
Maarten van Leunen
-BEGIN GEEK CODE BLOCK-
Version 3.12
GCS$ d- s+++:++ a->? C++()$ UL+++(S)$ P-- L+++> E--- W+++ N-- o? K? 
w---$ O M-- !V PS+ PE Y PGP-- t+ 5-- X++ R+ !tv b+ DI++ D++ G-- e++ h+>* 
!r>+ y>++
-END GEEK CODE BLOCK-
("If Da Vinci was alive today, he'd be eating microwave sushi, naked, in the 
back of a Cadillac with the both of us.")



__ 
Do you Yahoo!? 
Yahoo! Small Business - Try our new Resources site
http://smallbusiness.yahoo.com/resources/


---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
--
squirrelmail-users mailing list
Posting Guidelines: 
http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines
List Address: squirrelmail-users@lists.sourceforge.net
List Archives: 
http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] bug and fix in squirrelmail 1.4

2003-06-04 Thread Maarten de Boer
first of all, i am new on this list. hi all. i hope this is the correct
list to send bug fixes. if not, let me know.

some of my users experienced a bug in squirrelmail 1.4: they had a
message in their inbox with a illegal From: address, that contained a
'<' , but without the terminating '>' (god knows how that happened)

when parsing the address in imap_general.php, function parseAddress,
squirrelmail would enter an infinite loop.

adding the following simple check solved the problem. without it,
$pos would be reset to 1 every time.

case '<':  /* get email address */
  $addr_start = $pos;
  $addr_end = strpos($address,'>',$addr_start);

  /* check to prevent an infinite loop when parsing a broken address */
  if ($addr_end==0) {
$addr_end = $j;
  }

  $addr = substr($address,$addr_start+1,$addr_end-$addr_start-1);
  $pos = $addr_end+1;
  break;

i hope this fix can be incorporated in a next release.

thanks for a wonderful application.

maarten


---
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] another address parse error

2003-06-04 Thread Maarten de Boer
squirrelmail 1.4 has a problem with addresses like:

Maarten de Boer<[EMAIL PROTECTED]>

which it converts to

"Maarten de" >

on the other hand:

Maarten de Boer <[EMAIL PROTECTED]>

does get parsed correctly. I am not sure if the space between realname
and address is obligatory, but since it is possible for clients to sent
mail with such addresses, it would be nice if squirrelmail would deal
with it correctly.

maarten









---
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users