Author |
|
bayronpantoja Newbie
Joined: 19 January 2013 Location: Colombia
Online Status: Offline Posts: 24
|
Posted: 25 September 2013 at 6:10am | IP Logged
|
|
|
Good day, I would like to know how I can do to raise the completed application to a web domain, except the data folder, because they become too heavy as the emails are saved. Greetings and thanks. - Bayron
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 25 September 2013 at 6:11am | IP Logged
|
|
|
Sorry, can you explain that in a bit more detail? Especially the "emails are saved" part, as WebMail Lite doesn't store mail locally, at least the current version.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
bayronpantoja Newbie
Joined: 19 January 2013 Location: Colombia
Online Status: Offline Posts: 24
|
Posted: 26 September 2013 at 1:31pm | IP Logged
|
|
|
We are working with version 6 Webmail Lite, it happens that there is a folder called data / mail / where files are saved with .eml, my question is if you could save those files .eml on a local server with IP public, while the rest of the application runs on a web hosting with which we.
Greetings and thanks
-
Bayron
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 26 September 2013 at 9:37pm | IP Logged
|
|
|
So, if I'm getting this right, you'd like to move the installation onto a different location (within the same server) but keep the data directory where it's now, correct?
If so, that's done in a very simple way. Check if you have inc_settings_path.php file in root WebMail directory - and if it's not there, create it. The content is as follows:
Code:
<?php
$dataPath = 'data'; |
|
|
You can move your entire installation to a different directory, just make sure that inc_settings_path.php file is in place and that $dataPath there holds an actual path to your data directory. With WebMail relocated, it'll be something like:
Code:
<?php
$dataPath = '/var/www/archive/wmaildata'; |
|
|
Note that it's perfectly fine to rename the directory, as long as correct filesystem path to it is specified.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|