What is the current theoretical maximum number of email addresses that can exist, given the following:
The maximum length of an email address is 320 characters (255 + 64 + @), and:
the domain part (everything after the '@') must not exceed 255 characters
the local part (everything before the '@') must not exceed 64 characters
the local part can be any variation of:
* Uppercase and lowercase English letters (a-z, A-Z)
* Digits 0 to 9
* Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
* Character . (dot, period, full stop) provided that it is not the first or last character, and provided also that it does not appear two or more times consecutively.
(For the purpose of this question I'm ignoring uncommon practices like quoted strings).
If you know the answer, please explain how!
The maximum length of an email address is 320 characters (255 + 64 + @), and:
the domain part (everything after the '@') must not exceed 255 characters
the local part (everything before the '@') must not exceed 64 characters
the local part can be any variation of:
* Uppercase and lowercase English letters (a-z, A-Z)
* Digits 0 to 9
* Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
* Character . (dot, period, full stop) provided that it is not the first or last character, and provided also that it does not appear two or more times consecutively.
(For the purpose of this question I'm ignoring uncommon practices like quoted strings).
If you know the answer, please explain how!












