module Mail::Utilities

def token_safe?( str )

Returns true if the string supplied is free from characters not allowed as a TOKEN
def token_safe?( str )
  not TOKEN_UNSAFE === str
end