Check whether the address string specified in the constructor is
a substring of the From address of this Message.
Address[] from;
try {
from = msg.getFrom();
} catch (Exception e) {
return false;
}
if (from == null)
return false;
for (int i=0; i < from.length; i++)
if (super.match(from[i]))
return true;
return false;