hello every1:
now i want to turn off the sound notification for incoming message and move the message to a designated folder!
below is my code in HandleSessionEventL() :
case EMsvEntriesChanged:
{
..........
..........
TMsvEntry entry(iMsvEntry->Entry());
if(entry.Unread())
{
entry.SetInPreparation(EFalse);
//entry.SetNew(EFalse);
entry.SetUnread(EFalse);
//entry.SetVisible(EFalse);
iMsvEntry->ChangeL(entry);
}
//iMsvEntry->MoveL(iNewMessageId,iFolderId);
iMsvEntry->MoveL(iNewMessageId , KMsvDraftEntryIdValue);
}
break;
i can move the message to a designated folder,but i can not mute the sound notification ! it bother me much!
if anyone can help me ? thank u!





