CWPOP3Store


Pantomime POP3 client code.

Discussion

This class, which extends the CWService class and implements the CWStore protocol, is Pantomime's POP3 client code.

Conforms to

CWStore

Superclass

CWService

Declared In

CWPOP3Store.h



Methods

-sendCommand:arguments:
-sendCommand:arguments:...
-timestamp

sendCommand:arguments:


- (void) sendCommand: (POP3Command) theCommand arguments: (NSString *) theFormat, ...; 
Parameters
theCommand

The POP3 command to send.

theFormat

The format defining the variable arguments list.

Discussion

This method is used to send commands to the POP3 server. Normally, you should not call this method directly.

See Also

sendCommand:arguments:...


sendCommand:arguments:...


- (void) sendCommand: (POP3Command) theCommand arguments: (NSString *) theFormat, ...; 
Parameters
theCommand

The POP3 command to send.

theFormat

The format defining the variable arguments list.

Discussion

This method is used to send commands to the POP3 server. Normally, you should not call this method directly.

See Also

sendCommand:arguments:


timestamp


- (NSString *) timestamp; 
Return Value

The timestamp, as a NSString instance.

Discussion

This method is used to obtain the timestamp in the server's greeting. Servers must send that if they do support APOP.


Member Data

_folder
_timestamp

_folder


private

CWPOP3Folder *_folder;

_timestamp


private

NSString *_timestamp;