Changeset 4495 in subversion
- Timestamp:
- Feb 4, 2011 11:50:05 AM (2 years ago)
- Location:
- trunk/plugins/managesieve
- Files:
-
- 2 edited
-
Changelog (modified) (1 diff)
-
lib/Net/Sieve.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/managesieve/Changelog
r4478 r4495 1 - Fix STARTTLS for timsieved < 2.3.10 2 1 3 * version 3.0 [2011-02-01] 2 4 ----------------------------------------------------------- -
trunk/plugins/managesieve/lib/Net/Sieve.php
r4471 r4495 1162 1162 // The server should be sending a CAPABILITY response after 1163 1163 // negotiating TLS. Read it, and ignore if it doesn't. 1164 $this->_doCmd(); 1164 // Doesn't work with older timsieved versions 1165 $regexp = '/^CYRUS TIMSIEVED V([0-9.]+)/'; 1166 if (!preg_match($regexp, $this->_capability['implementation'], $matches) 1167 || version_compare($matches[1], '2.3.10', '>=') 1168 ) { 1169 $this->_doCmd(); 1170 } 1165 1171 1166 1172 // RFC says we need to query the server capabilities again now that we
Note: See TracChangeset
for help on using the changeset viewer.
