[commits] Horde branch master updated. bd1a9b8189c68a10515c60d36a6da188e45e1b31

Michael M Slusarz slusarz at horde.org
Wed Apr 6 07:51:15 UTC 2011


The branch "master" has been updated.
The following is a summary of the commits.

from: 1f482d0b6274e42579296556bcdaf09075648e52

10581c4 Reuse variable
c6d446a Bug #9769: Make sure thread value is always an object
f371fa1 Remove cache uidvalid information if mailbox is deleted
4f634a5 Do POP3 vs. IMAP reporting in IMP_Imap instead of a session variable
cb31a34 Added Horde_Imap_Client_Data_Fetch_Pop3
a35e261 Various POP3 fixes for IMP
270db1e Fix UIDVALIDITY determination for POP3 servers that support UIDL.
bd1a9b8 The POP3 server MUST support the UIDL capability

-----------------------------------------------------------------------

commit 10581c408a454cff9b95b0995d4c52ad2e988b45
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Apr 5 16:44:31 2011 -0600

    Reuse variable

 imp/js/viewport.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/10581c408a454cff9b95b0995d4c52ad2e988b45

-----------------------------------------------------------------------

commit c6d446a0999440b566fc7d4f6ef443d4b6b4d430
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Apr 5 17:05:00 2011 -0600

    Bug #9769: Make sure thread value is always an object

 imp/lib/Views/ListMessages.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/c6d446a0999440b566fc7d4f6ef443d4b6b4d430

-----------------------------------------------------------------------

commit f371fa18ced463c62c5bc5bd25e2c560c259a43c
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Apr 5 17:32:40 2011 -0600

    Remove cache uidvalid information if mailbox is deleted

 imp/lib/Imap.php |   34 +++++++++++++++++++---------------
 1 files changed, 19 insertions(+), 15 deletions(-)

http://git.horde.org/horde-git/-/commit/f371fa18ced463c62c5bc5bd25e2c560c259a43c

-----------------------------------------------------------------------

commit 4f634a512ca1836a98d1033dc1ed654544bb6198
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Apr 5 23:30:53 2011 -0600

    Do POP3 vs. IMAP reporting in IMP_Imap instead of a session variable

 imp/lib/Api.php                        |    4 +-
 imp/lib/Application.php                |    9 ++-
 imp/lib/Auth.php                       |   14 ++--
 imp/lib/Block/Summary.php              |    3 +-
 imp/lib/Compose.php                    |    5 +-
 imp/lib/Flags.php                      |    2 +-
 imp/lib/Imap.php                       |   26 +++++++--
 imp/lib/Imap/Acl.php                   |    6 +-
 imp/lib/Imap/Tree.php                  |   98 +++++++++++++++++---------------
 imp/lib/Mailbox.php                    |    4 +-
 imp/lib/Mailbox/List.php               |    2 +-
 imp/lib/Message.php                    |   25 +-------
 imp/lib/Prefs/Ui.php                   |   15 +++--
 imp/lib/Search.php                     |    3 +-
 imp/lib/Ui/Message.php                 |    2 +-
 imp/lib/Views/ListMessages.php         |    5 +-
 imp/mailbox-mimp.php                   |    5 +-
 imp/mailbox.php                        |    4 +-
 imp/message-mimp.php                   |    7 +-
 imp/message.php                        |   16 +++---
 imp/search-basic.php                   |    2 +-
 imp/search.php                         |    6 +-
 imp/templates/dimp/index.inc           |    6 +-
 imp/templates/dimp/javascript_defs.php |    2 +-
 imp/templates/imp/javascript_defs.php  |    2 +-
 25 files changed, 143 insertions(+), 130 deletions(-)

http://git.horde.org/horde-git/-/commit/4f634a512ca1836a98d1033dc1ed654544bb6198

-----------------------------------------------------------------------

commit cb31a34c3e55331e4bc33b9548e0cbf0c96a5815
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Wed Apr 6 00:03:34 2011 -0600

    Added Horde_Imap_Client_Data_Fetch_Pop3
    
    Needed because POP3 UIDs are string values, rather than numeric values
    required by IMAP.

 framework/Imap_Client/lib/Horde/Imap/Client/Base.php            |    9 ++-
 framework/Imap_Client/lib/Horde/Imap/Client/Cclient/Pop3.php    |    7 ++
 framework/Imap_Client/lib/Horde/Imap/Client/Data/Fetch/Pop3.php |   28 +++++++
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php          |    2 +-
 framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php     |    7 ++
 framework/Imap_Client/package.xml                               |   16 +++-
 6 files changed, 62 insertions(+), 7 deletions(-)
 create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Data/Fetch/Pop3.php

http://git.horde.org/horde-git/-/commit/cb31a34c3e55331e4bc33b9548e0cbf0c96a5815

-----------------------------------------------------------------------

commit a35e261ee825d535656bc80b797309de21a71f1f
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Wed Apr 6 00:04:16 2011 -0600

    Various POP3 fixes for IMP
    
    Still not totally fixed... have some more work to do.

 imp/docs/CHANGES                                         |    1 +
 imp/js/dimpcore.js                                       |    2 +-
 imp/js/viewport.js                                       |    2 +-
 imp/lib/Ajax/Application.php                             |    4 ++
 imp/lib/Flags.php                                        |    7 ++-
 imp/lib/Imap.php                                         |    2 +-
 imp/lib/Mailbox/List.php                                 |   11 ++++-
 imp/lib/Notification/Handler/Decorator/NewmailNotify.php |   11 ++--
 imp/lib/Views/ListMessages.php                           |   40 +++++++-------
 9 files changed, 51 insertions(+), 29 deletions(-)

http://git.horde.org/horde-git/-/commit/a35e261ee825d535656bc80b797309de21a71f1f

-----------------------------------------------------------------------

commit 270db1e16a30ba04f9e078d74d1c22bf60994614
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Wed Apr 6 01:27:16 2011 -0600

    Fix UIDVALIDITY determination for POP3 servers that support UIDL.

 framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php |    4 +++-
 framework/Imap_Client/package.xml                           |    4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/270db1e16a30ba04f9e078d74d1c22bf60994614

-----------------------------------------------------------------------

commit bd1a9b8189c68a10515c60d36a6da188e45e1b31
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Wed Apr 6 01:43:34 2011 -0600

    The POP3 server MUST support the UIDL capability

 imp/docs/CHANGES |    1 +
 imp/docs/INSTALL |    8 ++++----
 imp/lib/Imap.php |    6 ++++++
 imp/lib/Test.php |   10 +++++++++-
 imp/package.xml  |    3 ++-
 5 files changed, 22 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/bd1a9b8189c68a10515c60d36a6da188e45e1b31




More information about the commits mailing list