The branch "master" has been updated. The following is a summary of the commits.
from: 4bba41a8bb1cf03251641a60d02b789ba01009b5 c61b84c Remove allow_view_source config option and replace with a user permission 0c2c659 Fix preg_quote() call 54f143a Make sure to preg quote the delimiter character also 9f3973a phpdoc dcb8f4e [mms] Fix regression in removing CBC cipher mode when encrypting data within a session (Bug #13869). 030de4d Abstract handling of maillog driver specific data into those drivers cbc516f [mms] Store message ID of the sent message when saving maillog history. 8e60c77 code wrapping 57723ab Better handling of compose windows when created via a popup link 3e1250d Link the maillog when a sent mail message ID is detected Summary: http://github.com/horde/horde/compare/4bba41a8bb1cf03251641a60d02b789ba01009b5...3e1250d6907e128a73cd75983234968c4c28f475 ----------------------------------------------------------------------- commit c61b84c1c2b75f943896a76ddaa4dc87de77bf84 Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 00:49:56 2015 -0700 Remove allow_view_source config option and replace with a user permission imp/config/conf.xml | 7 ------- imp/docs/UPGRADING | 7 +++++++ imp/lib/Dynamic/Mailbox.php | 8 +++++--- imp/lib/Dynamic/Message.php | 4 ++-- imp/lib/Perms.php | 5 +++++ 5 files changed, 19 insertions(+), 12 deletions(-) http://github.com/horde/horde/commit/c61b84c1c2b75f943896a76ddaa4dc87de77bf84 ----------------------------------------------------------------------- commit 0c2c659f80d51cd2fd2e15e7b3d04e204bd3a0bd Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 17:57:52 2015 -0700 Fix preg_quote() call framework/Mime_Viewer/lib/Horde/Mime/Viewer/Html.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/0c2c659f80d51cd2fd2e15e7b3d04e204bd3a0bd ----------------------------------------------------------------------- commit 54f143af697aed58bba62c950b45e0651958c14b Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 20:04:30 2015 -0700 Make sure to preg quote the delimiter character also imp/lib/Compose.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/54f143af697aed58bba62c950b45e0651958c14b ----------------------------------------------------------------------- commit 9f3973a3d2f342e0e37fae85f18b22ffc83de1f1 Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 21:08:16 2015 -0700 phpdoc framework/Core/lib/Horde/Core/Secret.php | 27 ++++++++++++++++++++------- 1 files changed, 20 insertions(+), 7 deletions(-) http://github.com/horde/horde/commit/9f3973a3d2f342e0e37fae85f18b22ffc83de1f1 ----------------------------------------------------------------------- commit dcb8f4e4a72e687891ba0b18a44f5a339bf953a6 Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 21:28:43 2015 -0700 [mms] Fix regression in removing CBC cipher mode when encrypting data within a session (Bug #13869). framework/Core/lib/Horde/Core/Factory/Secret/Cbc.php | 22 +++++++ framework/Core/lib/Horde/Core/Secret/Cbc.php | 54 ++++++++++++++++++ framework/Core/lib/Horde/Registry.php | 1 + framework/Core/lib/Horde/Session.php | 8 +- framework/Core/package.xml | 24 +++++--- 5 files changed, 97 insertions(+), 12 deletions(-) create mode 100644 framework/Core/lib/Horde/Core/Factory/Secret/Cbc.php create mode 100644 framework/Core/lib/Horde/Core/Secret/Cbc.php http://github.com/horde/horde/commit/dcb8f4e4a72e687891ba0b18a44f5a339bf953a6 ----------------------------------------------------------------------- commit 030de4d1d872a2cc7128c6b9fab4fcd87fc696e4 Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 22:36:57 2015 -0700 Abstract handling of maillog driver specific data into those drivers imp/lib/Maillog/Log/Base.php | 19 ++++++++++++ imp/lib/Maillog/Log/Forward.php | 18 +++++++++++- imp/lib/Maillog/Log/Redirect.php | 18 +++++++++++- imp/lib/Maillog/Storage/History.php | 53 +++++++++++----------------------- 4 files changed, 70 insertions(+), 38 deletions(-) http://github.com/horde/horde/commit/030de4d1d872a2cc7128c6b9fab4fcd87fc696e4 ----------------------------------------------------------------------- commit cbc516f0c4225542f6f2509012dcdc7d0d2569ed Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 23:00:14 2015 -0700 [mms] Store message ID of the sent message when saving maillog history. imp/docs/CHANGES | 1 + imp/lib/Api.php | 8 +++- imp/lib/Compose.php | 22 ++++++++--- imp/lib/Maillog/Log/Base.php | 18 ++++---- imp/lib/Maillog/Log/Forward.php | 24 ++++------- imp/lib/Maillog/Log/Mdn.php | 3 +- imp/lib/Maillog/Log/Redirect.php | 24 ++++------- imp/lib/Maillog/Log/Reply.php | 3 +- imp/lib/Maillog/Log/Replyall.php | 3 +- imp/lib/Maillog/Log/Replylist.php | 3 +- imp/lib/Maillog/Log/Sentmail.php | 73 +++++++++++++++++++++++++++++++++++ imp/lib/Maillog/Storage/History.php | 4 +- imp/package.xml | 5 ++- 13 files changed, 136 insertions(+), 55 deletions(-) create mode 100644 imp/lib/Maillog/Log/Sentmail.php http://github.com/horde/horde/commit/cbc516f0c4225542f6f2509012dcdc7d0d2569ed ----------------------------------------------------------------------- commit 8e60c777e893e9f510e4ea3ad5b01b871c9f75ed Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 23:13:55 2015 -0700 code wrapping imp/js/message.js | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/8e60c777e893e9f510e4ea3ad5b01b871c9f75ed ----------------------------------------------------------------------- commit 57723ab3292feb3c4d78211eab9547d94811a04a Author: Michael M Slusarz <[email protected]> Date: Thu Mar 5 23:36:29 2015 -0700 Better handling of compose windows when created via a popup link Resize after opening. Allow direct closing without prompting imp/js/compose.js | 10 +++++++++- imp/lib/Compose/Link.php | 4 +++- imp/lib/Dynamic/Compose.php | 2 ++ 3 files changed, 14 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/57723ab3292feb3c4d78211eab9547d94811a04a ----------------------------------------------------------------------- commit 3e1250d6907e128a73cd75983234968c4c28f475 Author: Michael M Slusarz <[email protected]> Date: Fri Mar 6 14:39:11 2015 -0700 Link the maillog when a sent mail message ID is detected Doesn't actually link to anything yet (but it will) imp/js/core.js | 24 ++++++++++++++---------- imp/lib/Ajax/Queue.php | 4 ++++ imp/themes/default/dynamic/screen.css | 5 ++++- 3 files changed, 22 insertions(+), 11 deletions(-) http://github.com/horde/horde/commit/3e1250d6907e128a73cd75983234968c4c28f475 -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
