Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Pro

 AfterLogic Forum : AfterLogic WebMail Pro
Subject Topic: Custom "Spam"-Folder? Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
marci
Valued Community Member
Valued Community Member


Joined: 15 August 2007
Location: Denmark
Online Status: Offline
Posts: 22
Posted: 07 August 2009 at 4:48pm | IP Logged Quote marci

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 View marci's Profile Search for other posts by marci
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6092
Posted: 10 August 2009 at 2:06am | IP Logged Quote Igor

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 View Igor's Profile Search for other posts by Igor
 
MACscr
Newbie
Newbie


Joined: 28 May 2009
Online Status: Offline
Posts: 19
Posted: 23 August 2010 at 4:05am | IP Logged Quote MACscr

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 View MACscr's Profile Search for other posts by MACscr
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6092
Posted: 23 August 2010 at 4:31am | IP Logged Quote Igor

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 View Igor's Profile Search for other posts by Igor
 
MACscr
Newbie
Newbie


Joined: 28 May 2009
Online Status: Offline
Posts: 19
Posted: 23 August 2010 at 7:08am | IP Logged Quote MACscr

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 View MACscr's Profile Search for other posts by MACscr
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6092
Posted: 23 August 2010 at 7:25am | IP Logged Quote Igor

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 View Igor's Profile Search for other posts by Igor
 
MACscr
Newbie
Newbie


Joined: 28 May 2009
Online Status: Offline
Posts: 19
Posted: 23 August 2010 at 8:27am | IP Logged Quote MACscr

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 View MACscr's Profile Search for other posts by MACscr
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide