Hi all,
I have been trying a script to count and display messages in two Imap
accounts. I’m iterating each account and I create two hashes like this:
Hash1 {name, count}
Hash2 {name, count}
I’m trying to figure out a way to display both hashes with their
differences
(folders that exist or dont exist in both accounts) like that :
Hash1{name, count} , Hash2{name, count} (folders exist in both)
Hash1{name, count} , Hash2{} (folder exist only in1)
Hash1{}, Hash2{name, count} (folder exist only in 2)
what would be the way to solve this problem?
thanks in advance