aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc
Commit message (Collapse)AuthorAge
* Fix superclass for MCONNTPDisconnectOperationHEADmasterGravatar Benjamin Barenblat2019-12-12
| | | | | | | If MCONNTPDisconnectOperation inherits from NSObject, MCONNTPDisconnectOperation+mco_objectWithMCObject: will call a method that doesn’t exist (-initWithMCOperation:). Set it to extend MCONNTPOperation instead.
* Fix few memory leaks (#1804)Gravatar Alexander Belyavskiy2019-03-25
| | | * Fix memory leaks
* Add type annotation to MCOIMAPFetchFoldersOperation (#1784)Gravatar Jesse Tipton2018-09-23
|
* A few type/nullability annotations (#1782)Gravatar Jesse Tipton2018-09-19
|
* Make MCOAccountValidator init method available (#1736)Gravatar Alexander Belyavskiy2018-05-14
|
* Move unavailable initializers out of categories, so they’ll be properly ↵Gravatar Tom Harrington2017-12-29
| | | | | handled in Swift. (#1698) If NS_UNAVAILABLE is used in a category, Swift doesn’t notice, and these initializers are permitted even though they don’t work.
* Fix MCOAccountValidator to work with arbitrary services (#1602)Gravatar Conrad Kramer2017-01-23
|
* Revert "Type annotations (#1530)"Gravatar Hoa V. DINH2016-11-19
| | | | This reverts commit abedd87bb02f975b0b1ee9c4cf2f0e6adde31366.
* Revert "Add type annotations to some operations and MCPIMAPSession (#1531)"Gravatar Hoa V. DINH2016-11-19
| | | | This reverts commit efce413258a838818a39a12f0f86d563c8488468.
* Add type annotations to some operations and MCPIMAPSession (#1531)Gravatar Romain Pouclet2016-10-13
| | | | | * Add type annotations to MCOIMAPSession * Add type annotations to some operations
* Type annotations (#1530)Gravatar Romain Pouclet2016-10-13
| | | | | | | | * Add type annotations on MCOMessageBuilder * Add type annotations on MCOAbstractMessage * Add Type annotations on MCOAbstractPart * Add type annotations to MCOMessageHeader * Add type annotatins to MCOAddress
* Smtp error: 535 5.7.0 on Tiscali smtp server (#1520)Gravatar andreapz2016-09-29
| | | | | | * adding simple password alert message for smtp error: 535 5.7.0 authentication rejected: your password is too simple. * fixing error simple password
* fix missing search by read/unread flag (#1465)Gravatar raduraducu2016-07-06
| | | | | * fix missing search my read/unread flag * added more flag-like searches
* idleEnabled exposedGravatar Hoa V. DINH2016-06-06
|
* Add possibility of fetching message attachment by chunks and store it to ↵Gravatar Dmitry Isaikin2016-06-05
| | | | file. (#1438)
* Use different naming for delegate methods for more compatiblity with SwiftGravatar Hoa V. DINH2016-06-03
|
* Store last server response on login command in case of parse error (#1436)Gravatar Dmitry Isaikin2016-05-19
|
* Fix permission access of source files that was executable .i.e. chmod 744 to ↵Gravatar Kevin Lefèvre2016-05-17
| | | | 644 (#1435)
* Fixed potential crash and memory leaksGravatar Hoa V. DINH2016-05-14
|
* Added error codeGravatar Hoa V. DINH2016-05-11
|
* Fix for high memory usage during loggin of large request (#1396)Gravatar NIkita-Ruzanov2016-04-07
|
* Expose SMTP response and response code to Objective-C APIGravatar Nikolay Morev2016-04-05
| | | * Expose SMTP response and response code to Objective-C API
* Move string to constantGravatar Hoa V. DINH2016-04-01
|
* Do not lose localizedDescription of error in MCOIMAPCheckAccountOperationGravatar Dmitry Isaikin2016-03-17
|
* Improved error managementGravatar Hoa V. DINH2016-03-07
|
* Thread safety on loggerGravatar Hoa V. DINH2016-03-03
|
* Replace NNTP "send" with "post".Gravatar Daryle Walker2016-02-25
|
* Move a common type to a common header.Gravatar Daryle Walker2016-02-25
|
* Add upload functionality to NNTP sessions.Gravatar Daryle Walker2016-02-22
| | | | | | Add new methods to core, async, and objc NNTP sessions to upload message data. For the async and objc sessions, add classes to wrap upload operations.
* Added ability to customize the identity of IMAP client in the time of ↵Gravatar Dmitry Isaikin2016-02-15
| | | | session initialization.
* Merge pull request #1359 from kolyuchiy/mark-unavailable-initializersGravatar Hoà V. DINH2016-02-12
|\ | | | | Mark non-designated initializers and new as unavailable
| * Don't mark MCOAbstractMessage init as unavailableGravatar Nikolay Morev2016-02-09
| | | | | | | | | | It's used in subclass and there's no way to reenable previously disabled method in subclass.
* | Merge pull request #1355 from disaykin/reduce-memory-on-send-messageGravatar Hoà V. DINH2016-02-09
|\ \ | | | | | | Add low-memory interface for building, sending and appending messages
| | * Mark non-designated initializers and new as unavailableGravatar Nikolay Morev2016-02-09
| |/ |/|
| * Add file-based interface for sending messages via SMTP (reduce memory usage)Gravatar Dmitry Isaikin2016-02-09
| |
| * Add method for building message rfc822 body directly to file.Gravatar Dmitry Isaikin2016-02-09
| |
* | Add constant for IMAP MOVE capabilityGravatar Nikolay Morev2016-02-08
|/
* Add IMAP MOVE command supportGravatar Nikolay Morev2016-02-05
|
* id -> instancetypeGravatar Robert Widmann2016-02-02
|
* Merge pull request #1343 from serjepatoff/masterGravatar Hoà V. DINH2016-02-01
|\ | | | | 2 new error codes
| * Change error prefix to RSMErrorYahoo, change error msg substring to 'over ↵Gravatar Sergei Epatov2016-02-01
| | | | | | | | the limit'
| * New errors detected and returned: ErrorSendMessageSpamSuspected, ↵Gravatar Sergei Epatov2016-01-26
| | | | | | | | ErrorSendMessageDailyLimitExceeded
* | Mark more initializers unavailableGravatar Robert Widmann2016-01-20
| |
* | Make -init unavailableGravatar Robert Widmann2016-01-19
|/
* Fixed warningsGravatar Hoa V. DINH2016-01-03
|
* Follow suggestions from @dinhviethoa.Gravatar Daryle Walker2015-12-29
| | | | | Follow suggestions to remove one unnecessary overload and to mark other as depreciated. (A third suggestion was covered by another commit.)
* Remove extraneous group parameter from fetch-article-by-message-ID methods.Gravatar Daryle Walker2015-12-29
|
* Fixed error handling in custom commandGravatar Hoa V. Dinh2015-11-09
|
* Adds error code to IMAPSession::customCommand. Renames sendCustomCommand to ↵Gravatar libec2015-11-07
| | | | customCommand.
* Comment with usage of custom IMAP operationGravatar libec2015-11-06
|