Changing the Spool Coldfusion folder

In my file NEO-MAIL.xmlI see an entry like:

<var name='spooldir'>
    <string>{neo.rootdir}/Mail/Spool</string>
</var>

My ColdFusion is set to C:\, which runs low, so I want to move the coil to another directory, say D:\. Is it possible?

I haven't tried it yet, because I'm not sure if it can break the ColdFusion Administrator. Therefore, I am looking for advice. Is it possible to change the path without breaking anything? If not, how can I make this change?

+4
source share
1 answer

To make sure that you get this and as a link to a future viewer, do the following:

  • Find neo-mail.xml file under coldfusion 10/11> cfusion> lib
  • backing up the neo-mail.xml file
  • neo-mail.xml : <var name="spooldir"> <string>{neo.rootdir}/Mail/Spool</string> </var>

    <var name="spooldir"> <string>Your path</string> </var>
    , <var name="spooldir"> <string>D:/MyMails/Spool</string> </var>
  • - <var name="undeliverdir"> <string>{neo.rootdir}/Mail/Undelivr</string> </var>

    <var name="undeliverdir"> <string>Your Path</string> </var>
    .
    <var name="undeliverdir"> <string>D:/MyMails/Undelivr</string> </var>
  • Undelivr Spool .
  • , .
0

All Articles