aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/smtp/MCOSMTPSession.h
blob: 286cd7c354bac552e17a0418b1a9926d92e9f266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
//
//  MCOSMTPSession.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCOSMTPSESSION_H

#define MAILCORE_MCOSMTPSESSION_H

#import <Foundation/Foundation.h>

#import <MailCore/MCOConstants.h>

/** 
 This class is used to create an SMTP connection and send messages

 After calling a method that returns an operation you must call start: on the instance
 to begin the operation.
*/

@class MCOSMTPSendOperation;
@class MCOSMTPOperation;
@class MCOAddress;

@interface MCOSMTPSession : NSObject

/** This is the hostname of the SMTP server to connect to. */
@property (nonatomic, copy) NSString * hostname;

/** This is the port of the SMTP server to connect to. */
@property (nonatomic, assign) unsigned int port;

/** This is the username of the account. */
@property (nonatomic, copy) NSString * username;

/** This is the password of the account. */
@property (nonatomic, copy) NSString * password;

/** This is the OAuth2 token. */
@property (nonatomic, copy) NSString *OAuth2Token;

/** 
 This is the authentication type to use to connect.
 `MCOAuthTypeSASLNone` means that it uses the clear-text is used (and is the default).
 @warning *Important*: Over an encrypted connection like TLS, the password will still be secure
*/
@property (nonatomic, assign) MCOAuthType authType;

/**
 This is the encryption type to use.
 See MCOConnectionType for more information.
*/
@property (nonatomic, assign) MCOConnectionType connectionType;

/** This is the timeout of the connection. */
@property (nonatomic, assign) NSTimeInterval timeout;

/** When set to YES, the connection will fail if the certificate is incorrect. */
@property (nonatomic, assign, getter=isCheckCertificateEnabled) BOOL checkCertificateEnabled;

/**
 If set to YES, when sending the EHLO or HELO command, use IP address instead of hostname.
 Default is NO.
*/
@property (nonatomic, assign, getter=isUseHeloIPEnabled) BOOL useHeloIPEnabled;

/**
 Sets logger callback. The network traffic will be sent to this block.
 
 [session setConnectionLogger:^(void * connectionID, MCOConnectionLogType type, NSData * data) {
   ...
 }];
 */
@property (nonatomic, copy) MCOConnectionLogger connectionLogger;

/** This property provides some hints to MCOSMTPSession about where it's called from.
 It will make MCOSMTPSession safe. It will also set all the callbacks of operations to run on this given queue.
 Defaults to the main queue.
 This property should be used only if there's performance issue using MCOSMTPSession in the main thread. */
#if OS_OBJECT_USE_OBJC
@property (nonatomic, retain) dispatch_queue_t dispatchQueue;
#else
@property (nonatomic, assign) dispatch_queue_t dispatchQueue;
#endif

/** @name Operations */

/**
 Returns an operation that will send the given message through SMTP.
 It will use the recipient set in the message data (To, Cc and Bcc).
 It will also filter out Bcc from the content of the message.

 Generate RFC 822 data using MCOMessageBuilder

     MCOSMTPOperation * op = [session sendOperationWithData:rfc822Data];
     [op start:^(NSError * error) {
          ...
     }];
*/
- (MCOSMTPSendOperation *) sendOperationWithData:(NSData *)messageData;

/**
 Returns an operation that will send the given message through SMTP.
 It will use the sender and recipient set from the parameters.
 It will also filter out Bcc from the content of the message.
 
 Generate RFC 822 data using MCOMessageBuilder
 
 MCOSMTPOperation * op = [session sendOperationWithData:rfc822Data
                                                  from:[MCOAddress addressWithMailbox:@"hoa@etpan.org"]
                                            recipients:[NSArray arrayWithObject:[MCOAddress addressWithMailbox:@"laura@etpan.org"]]];
 [op start:^(NSError * error) {
 ...
 }];
 */
- (MCOSMTPSendOperation *) sendOperationWithData:(NSData *)messageData
                                            from:(MCOAddress *)from
                                      recipients:(NSArray *)recipients;

/**
 Returns an operation that will check whether the SMTP account is valid.

     MCOSMTPOperation * op = [session checkAccountOperationWithFrom:[MCOAddress addressWithMailbox:@"hoa@etpan.org"]];
     [op start:^(NSError * error) {
          ...
     }];
*/
- (MCOSMTPOperation *) checkAccountOperationWithFrom:(MCOAddress *)from;

/**
 Returns an operation that will perform a No-Op.
 
 MCOSMTPOperation * op = [session noopOperation];
 [op start:^(NSError * error) {
 ...
 }];
 */
- (MCOSMTPOperation *) noopOperation;

@end

#endif