Skip to content

Commit 878bbb1

Browse files
Johannes SchneiderJohannes Schneider
authored andcommitted
implemented ICEndPoint and connection establishment
Commands: * NOOP * Login
1 parent 8b943fe commit 878bbb1

32 files changed

+186
-1
lines changed

.filetree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{"propertyFileExtension" : ".json",
2+
"packageExtension" : ".package" }

packages/IMAPClient-Core.package/ICEndpoint.class/README.md

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
responses
2+
commandFailed
3+
4+
^ ICStringFormatter concatinate: (self protocolCommandStart, 'NO') with: self protocolBlank
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
responses
2+
commandSucceeded
3+
4+
^ ICStringFormatter concatinate: (self protocolCommandStart, 'OK') with: self protocolBlank
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
errors
2+
errorBadProtocol
3+
4+
^ 'server protocol not supported'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
errors
2+
errorLoginFailed
3+
4+
^ 'authentification failed'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
errors
2+
errorNoConnection
3+
4+
^ 'connection not established'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
errors
2+
errorNoPasswordSet
3+
4+
^ 'no password set'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
errors
2+
errorNoUsernameSet
3+
4+
^ 'username not set'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
commands
2+
loginCommand
3+
4+
^ ICStringFormatter concatinate: (self protocolCommandStart, 'LOGIN') with: self protocolBlank

0 commit comments

Comments
 (0)