mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-11 23:24:30 +02:00
2.140
This commit is contained in:
parent
4ce248c075
commit
f26b2573c3
370 changed files with 14441 additions and 136699 deletions
15
X/domains_servers_map
Executable file
15
X/domains_servers_map
Executable 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" ;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue