emailservices/nmutilities/src/emailmailboxinfo_p.cpp
changeset 76 38bf5461e270
parent 74 6c59112cfd31
equal deleted inserted replaced
74:6c59112cfd31 76:38bf5461e270
   126 {
   126 {
   127     NM_FUNCTION;
   127     NM_FUNCTION;
   128     
   128     
   129     QString returnValue = "";
   129     QString returnValue = "";
   130 
   130 
   131     if (identifier.length() > 0) {
   131     QString domainName = identifier;
   132         processCenRepRecords(identifier);
   132     int delimIndex = domainName.lastIndexOf('@');
       
   133     if(delimIndex >= 0) {
       
   134         domainName = domainName.mid(delimIndex + 1);
       
   135     }
       
   136 
       
   137     if (domainName.length() > 0) {
       
   138         processCenRepRecords(domainName);
   133         returnValue = mTempIcon;
   139         returnValue = mTempIcon;
   134     }
   140     }
   135 
   141 
   136     return returnValue;
   142     return returnValue;
   137 }
   143 }