It turns out that an employee's name happens to be a very close anagram of our server name. Both contain 13 letters. The employee's name is 1 letter different, although the letter is also only 1 position away from the right letter.
My first thought is that the chance of a perfect anagram is one in $26^{13}$.
And then including the chance of being 1 letter and only 1 position away provides an additional $23$ ways to match. (There are $3$ letter $a$s, so if we don't roll from $a$ to $z$ and vice-versa then there are $26 - 3 = 23$ more ways.)
Including the perfect way to match gives $24$ total ways to match, so the chance of the name being that close is then one out of $26^{13} / 24 \approx 1.03 * 10^{17}$.
Is this correct, or am I missing removing a bunch of duplicates? I notice that order does not matter, since it's an anagram, which makes me think I am missing something.
There are three groups of repeated letters. The $3$ $a$s mentioned, and two other pairs. This could mean I should divide by $3!2!2!$, but I'm not sure. That would make the chance of a perfect anagram the one out of $1.03 * 10^{17}$, and the chance of a "close but not perfect" one would be one out of $26^{13} / 24 / 24 \approx 4.3 * 10^{15}$.