Skip to content

Commit

Permalink
[mms] Send IMP MUA information to IMAP servers that support the ID ex…
Browse files Browse the repository at this point in the history
…tension.
  • Loading branch information
slusarz committed Mar 25, 2015
1 parent a5e5c6b commit c51a291
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions imp/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v7.0.0-git
----------

[mms] Send IMP MUA information to IMAP servers that support the ID extension.
[mms] Send S/MIME encrypted data to multiple recipients in a single outgoing
message.
[mms] Sent-mail maillog entries are now linked to a viewable representation of
Expand Down
11 changes: 10 additions & 1 deletion imp/lib/Imap/Config.php
Expand Up @@ -193,7 +193,7 @@ public function __set($name, $value)
*/
public function __get($name)
{
global $injector;
global $injector, $registry;

if (in_array($name, $this->_aoptions)) {
/* Array options. */
Expand Down Expand Up @@ -271,6 +271,15 @@ public function __get($name)
$out = array('backend' => $ob);
break;

case 'id':
$out = array_merge(array(
'name' => 'IMP',
'support-url' => 'http://www.horde.org/imp/',
'vendor' => 'Horde',
'version' => $registry->getVersion('imp')
), $out);
break;

case 'import_limit':
$out = is_null($out)
? 2500
Expand Down
1 change: 1 addition & 0 deletions imp/package.xml
Expand Up @@ -33,6 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [mms] Send IMP MUA information to IMAP servers that support the ID extension.
* [mms] Send S/MIME encrypted data to multiple recipients in a single outgoing message.
* [mms] Sent-mail maillog entries are now linked to a viewable representation of the sent message, if it still exists on the server.
* [mms] Store message ID of the sent message when saving maillog history.
Expand Down

0 comments on commit c51a291

Please sign in to comment.