You need to sign in to do that
Don't have an account?

RE: Migration using Ant Tool
Hi,
I'm using the following package.xml snippet to retrieve email template from an organisation. The execution of "retrieveUnpackaged" command was successful and retrieved retrieveUnpackaged\email\unfiled$public\Test_Notification.email and retrieveUnpackaged\email\unfiled$public\Test_Notification.email-meta.xml files. I then ran "deployUnpackaged" to deploy the downloaded email template and received this error:
Error: package.xml(unfiled$public):An object 'unfiled$public' of type EmailTemplate was named in package.xml, but was not found in zipped directory
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>unfiled$public</members>
<members>unfiled$public/Test_Notification</members>
<name>EmailTemplate</name>
</types>
<version>23.0</version>
</Package>
Any suggestions would be appreciated.
Thanks!
Ran into same problem.
Fix was to rempve the following line
<members>unfiled$public</members>
from the package.xml file, I guess it only likes files name and not directories in there...
Hope that helps!
Works just fine, but only the unfiled$public folder fails. Removed unfiled public folder and kept everything else the same - deployed just fine.