зеркало из https://github.com/mozilla/pjs.git
disallow copy or move messages to Unsent Messages folder;bug #40695; r=scottip
This commit is contained in:
Родитель
d2cceda963
Коммит
e562cefc0f
|
@ -724,6 +724,14 @@ nsMsgFolder::GetCanFileMessages(PRBool *aResult)
|
|||
{
|
||||
NS_ENSURE_ARG_POINTER(aResult);
|
||||
|
||||
//varada - checking folder flag to see if it is the "Unsent Messages"
|
||||
//and if so return FALSE
|
||||
if (mFlags & MSG_FOLDER_FLAG_QUEUE)
|
||||
{
|
||||
*aResult = PR_FALSE;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
PRBool isServer = PR_FALSE;
|
||||
nsresult rv = GetIsServer(&isServer);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
|
Загрузка…
Ссылка в новой задаче