This commit is contained in:
Nick Bebout 2021-08-04 14:14:36 -05:00
parent 4ce248c075
commit f26b2573c3
370 changed files with 14441 additions and 136699 deletions

15
X/domains_servers_map Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/perl
use strict ;
use warnings ;
# Is there a map between account xxx@domain and the imap host server
# cat G_success_login_on.txt | ./domains_servers_map | sort | uniq -c | sort -g
while ( my $line = <> )
{
if ( $line =~ /success login on \[(.*)\] with user \[.*\@(.*)\] auth / )
{
print "$2 $1\n" ;
}
}