Author |
|
marci Valued Community Member
Joined: 15 August 2007 Location: Denmark
Online Status: Offline Posts: 22
|
Posted: 07 August 2009 at 4:48pm | IP Logged
|
|
|
Mjello,
Isn't it possible to make a custom spam folder(Kind a second trash-folder)?
I'm running webmail pro .net, with an alternative mail server, so the spam function doesnt seems to work in any way..
My Mail server mark spam messages and move it automatic to the spam folder, but it is very unhandy to delete the spam, because you need to open the folder, mark all messages, delete them (then they go to trash, and you empty trash)..
It would be really cool if you could set a "Custom spam-folder" so that the user easy would be able to empty the spam folder, like the trash..
Best regards, Jeppe Richardt
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 10 August 2009 at 2:06am | IP Logged
|
|
|
Quote:
I'm running webmail pro .net, with an alternative mail server, so the spam function doesnt seems to work in any way.. |
|
|
Spam folder is available in WebMail Pro only if it's used along with AfterLogic XMail Server Pro. Anyway, I've forwarded your suggestion to WebMail Pro developers, maybe they'll implement this in future.
If you'd like our experts to add this feature into standalone WebMail Pro for you in terms of a custom project, please contact our Professional Services team.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
MACscr Newbie
Joined: 28 May 2009
Online Status: Offline Posts: 19
|
Posted: 23 August 2010 at 4:05am | IP Logged
|
|
|
Why is it showing for me if I am not using your xmail server? Though i would like to keep the setting as it does move emails to the spam folder, though i need it to move to the junk folder as i do have that imap folder setup to teach my system about spam.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 23 August 2010 at 4:31am | IP Logged
|
|
|
Well I guess you're referring to posts dated 2009, that information is no longer correct. If you do have Spam folder on your email account, you can use Spam buttons to move mails to that folder. WebMail Pro attempts locating the respective folder itself, and if it doesn't, you can adjust it manually in Manage Folders screen,
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
MACscr Newbie
Joined: 28 May 2009
Online Status: Offline Posts: 19
|
Posted: 23 August 2010 at 7:08am | IP Logged
|
|
|
But obviously I dont want to have to manually change it for every account, thats pretty inefficient. This needs to be an admin setting.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 23 August 2010 at 7:25am | IP Logged
|
|
|
If that folder is called "Spam" it will be recognized automatically. If not, you can modify Folder function found in common/class_folders.php file (~164):
Code:
case strtolower(FOLDERNAME_Spam):
$this->Type = FOLDERTYPE_Spam;
break; |
|
|
Let's say the folder is called Junk in your case. Modify the code as follows:
Code:
case strtolower(FOLDERNAME_Spam):
case "junk":
$this->Type = FOLDERTYPE_Spam;
break; |
|
|
Be sure to use lowercase names as the real folder name will be converted to lowercase before comparison as well.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
MACscr Newbie
Joined: 28 May 2009
Online Status: Offline Posts: 19
|
Posted: 23 August 2010 at 8:27am | IP Logged
|
|
|
Thanks, will do that. Feature request: make it an admin setting (we obviously should be picking default folders anyway) so that everything is upgrade proof. Thanks again!
|
Back to Top |
|
|