1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

ValidateLocalPart: Handle backslash quoted chars

This commit is contained in:
James Hillyerd
2013-11-03 20:53:37 -08:00
parent ba943cb682
commit bd4db645bb
2 changed files with 33 additions and 2 deletions

View File

@@ -104,26 +104,41 @@ func ValidateLocalPart(local string) bool {
}
prev := byte('.')
inCharQuote := false
for i := 0; i < length; i++ {
c := local[i]
switch {
case ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'):
// Letters are OK
inCharQuote = false
case '0' <= c && c <= '9':
// Numbers are OK
inCharQuote = false
case bytes.IndexByte([]byte("!#$%&'*+-/=?^_`{|}~"), c) >= 0:
// These specials can be used unquoted
inCharQuote = false
case c == '.':
// A single period is OK
if prev == '.' {
// Sequence of periods is not permitted
return false
}
default:
case c == '\\':
inCharQuote = true
case c > 127:
return false
default:
if ! inCharQuote {
return false
}
inCharQuote = false
}
prev = c
}
if inCharQuote {
// Can't end with unused backslash quote
return false
}
return true
}

View File

@@ -63,11 +63,27 @@ func TestValidateLocal(t *testing.T) {
{"FirstLast", true, "Mixed case permitted"},
{"user123", true, "Numbers permitted"},
{"a!#$%&'*+-/=?^_`{|}~", true, "Any of !#$%&'*+-/=?^_`{|}~ are permitted"},
{"james@mail", false, "Unquoted @ not permitted"},
{"first.last", true, "Embedded period is permitted"},
{"first..last", false, "Sequence of periods is not allowed"},
{".user", false, "Cannot lead with a period"},
{"user.", false, "Cannot end with a period"},
{"james@mail", false, "Unquoted @ not permitted"},
{"first last", false, "Unquoted space not permitted"},
{"no,commas", false, "Unquoted comma not allowed"},
{"t[es]t", false, "Unquoted square brackets not allowed"},
{"james\\", false, "Cannot end with backslash quote"},
{"james\\@mail", true, "Quoted @ permitted"},
{"quoted\\ space", true, "Quoted space permitted"},
{"no\\,commas", true, "Quoted comma is OK"},
{"t\\[es\\]t", true, "Quoted brackets are OK"},
{"user\\name", true, "Should be able to quote a-z"},
{"USER\\NAME", true, "Should be able to quote A-Z"},
{"user\\1", true, "Should be able to quote a digit"},
{"one\\$\\|", true, "Should be able to quote plain specials"},
{"return\\\r", true, "Should be able to quote ASCII control chars"},
{"high\\\x80", false, "Should not accept > 7-bit quoted chars"},
//{"\"james\"", true, "Quoted a-z is permitted"},
{"user+mailbox", true, "RFC3696 test case should be valid"},
{"customer/department=shipping", true, "RFC3696 test case should be valid"},
{"$A12345", true, "RFC3696 test case should be valid"},