[imp] Message Log reg.

2013-09-19 Thread ANANT S ATHAVALE

Dear List,

When I select multiple messages from mailbox and use Redirect option, the
multiple messages are redirected.  Under this scenario the Message Log of
each message does not get updated.  Should it have updated the message log
of each mail?
--
  Regards
   Anant
--
Confidentiality Notice: This e-mail message, including any attachments, is for
the sole use of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.
--

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org

Re: [imp] Horde/Imap/Client/Mailbox.php and ===

2013-09-19 Thread Michael M Slusarz

Quoting Bartek Krajnik :


Hi,
below patch to resolve issue with:
PHP Fatal error:  Method Horde_Imap_Client_Mailbox::__toString()  
must not throw an exception in  
/usr/lib/php/Horde/Imap/Client/Socket.php on line 0


root@a:/var/www/poczta/public_html# diff  
/usr/lib/php/Horde/Imap/Client/Mailbox.php.orig  
/usr/lib/php/Horde/Imap/Client/Mailbox.php

71c71,72
< if (strcasecmp($mbox, 'INBOX') === 0) {
---

//if (strcasecmp($mbox, 'INBOX') === 0) {
if (strcasecmp($mbox, 'INBOX') == 0) {


This is incorrect.  strcasecmp() MUST return an integer.  So === is  
appropriate here.



98c99,100
< return ($this->_utf7imap === true)
---

//return ($this->_utf7imap === true)
return ($this->_utf7imap == true)


Absolutely not.  $_utf7imap boolean true has a meaning *completely*  
different than $_utf7imap having a non-empty value.


I don't know what problem you are trying to fix, because you haven't  
provided a backtrace.


michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org


Re: [imp] Horizontal / Vertical View.

2013-09-19 Thread Michael M Slusarz

Quoting ANANT S ATHAVALE :


Some of our users are prefereing Vertical View and some are prefering
Horizontal View.  So, setting any thing default is a problem and such
option does not exist also. 

But, at least will it be possible to preserve the earlier used mode?


It is stored on the browser.

michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org

Re: [imp] Message Log reg.

2013-09-19 Thread Michael M Slusarz

Quoting ANANT S ATHAVALE :


When I select multiple messages from mailbox and use Redirect option, the
multiple messages are redirected.  Under this scenario the Message Log of
each message does not get updated.  Should it have updated the message log
of each mail?


Yes.  And it works for me fine.

michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org

Re: [imp] Message Log reg.

2013-09-19 Thread ANANT S ATHAVALE

 - Message from Michael M Slusarz  -
   Date: Thu, 19 Sep 2013 17:41:18 -0600
   From: Michael M Slusarz 
Subject: Re: [imp] Message Log reg.
     To: imp@lists.horde.org


Quoting ANANT S ATHAVALE :


When I select multiple messages from mailbox and use Redirect option,

the

multiple messages are redirected.  Under this scenario the Message Log

of

each message does not get updated.  Should it have updated the message
log
of each mail?


Yes.  And it works for me fine.

michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQTo unsubscribe,
mail: imp-unsubscr...@lists.horde.org


- End message from Michael M Slusarz  -

Oh! then why it is not happening in my setup?
--
  Regards
   Anant
--
Confidentiality Notice: This e-mail message, including any attachments, is for
the sole use of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.
--

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org

Re: [imp] Horizontal / Vertical View.

2013-09-19 Thread ANANT S ATHAVALE

 - Message from Michael M Slusarz  -
   Date: Thu, 19 Sep 2013 11:25:30 -0600
   From: Michael M Slusarz 
Subject: Re: [imp] Horizontal / Vertical View.
     To: imp@lists.horde.org


Quoting ANANT S ATHAVALE :


Some of our users are prefereing Vertical View and some are prefering
Horizontal View.  So, setting any thing default is a problem and such
option does not exist also. 

But, at least will it be possible to preserve the earlier used mode?


It is stored on the browser.

michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQTo unsubscribe,
mail: imp-unsubscr...@lists.horde.org


- End message from Michael M Slusarz  -

Browser is not storing in our setup.   How to know, why?
--
  Regards
   Anant
--
Confidentiality Notice: This e-mail message, including any attachments, is for
the sole use of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.
--

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org

Re: [imp] Horizontal / Vertical View.

2013-09-19 Thread ANANT S ATHAVALE

 - Message from ANANT S ATHAVALE  -
   Date: Fri, 20 Sep 2013 09:12:32 +0530
   From: ANANT S ATHAVALE 
Subject: Re: [imp] Horizontal / Vertical View.
     To: imp@lists.horde.org


- Message from Michael M Slusarz  -
   Date: Thu, 19 Sep 2013 11:25:30 -0600
   From: Michael M Slusarz 
Subject: Re: [imp] Horizontal / Vertical View.
     To: imp@lists.horde.org


Quoting ANANT S ATHAVALE :


Some of our users are prefereing Vertical View and some are prefering
Horizontal View.  So, setting any thing default is a problem and such
option does not exist also. 

But, at least will it be possible to preserve the earlier used mode?


It is stored on the browser.

michael

___
Michael Slusarz [slus...@horde.org]

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQTo unsubscribe,
mail: imp-unsubscr...@lists.horde.org


- End message from Michael M Slusarz  -

Browser is not storing in our setup.   How to know, why?
--
         Regards
          Anant


--

Confidentiality Notice: This e-mail message, including any attachments,
is for
the sole use of the intended recipient(s) and may contain confidential

and

privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.


--


--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQTo unsubscribe,
mail: imp-unsubscr...@lists.horde.org


Sorry, it remembers.  Browser is remembering.

- End message from ANANT S ATHAVALE  -
--
  Regards
   Anant
--
Confidentiality Notice: This e-mail message, including any attachments, is for
the sole use of the intended recipient(s) and may contain confidential and
privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the original
message.
--

--
imp mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: imp-unsubscr...@lists.horde.org