1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/re_backslashb
Nick Bebout b7c835d670 1.670
2015-12-03 11:16:32 -06:00

16 lines
319 B
Perl
Executable File

#!/usr/bin/perl -w
if ( not( grep /\b\\Noselect\b/i, ('* LIST (\Noselect \HasChildren) "/" Archive') ) ) {
print "Selectable\n" ;
}else{
print "Not selectable\n" ;
}
if ( not( grep /\\Noselect\b/i, ('* LIST (\Noselect \HasChildren) "/" Archive') ) ) {
print "Selectable\n" ;
}else{
print "Not selectable\n" ;
}