| 252 | } |
| 253 | |
| 254 | SMTPOperation * SMTPAsyncSession::checkAccountOperation(Address * from) |
| 255 | { |
| 256 | SMTPCheckAccountOperation * op = new SMTPCheckAccountOperation(); |
| 257 | op->setFrom(from); |
| 258 | op->setSession(this); |
| 259 | return (SMTPOperation *) op->autorelease(); |
| 260 | } |
| 261 | |
| 262 | SMTPOperation * SMTPAsyncSession::noopOperation() |
| 263 | { |
nothing calls this directly
no test coverage detected