Author Topic: Spam folder is always as Junk folder  (Read 3008 times)

Offline Helios

  • Newbie
  • *
  • Posts: 3
Spam folder is always as Junk folder
« on: October 29, 2014, 06:34:34 AM »
This is that I see in the server folder manager for account:


And in the Thunderbird:


And in the RC 1.0.3


Config variables set to:
Code: [Select]
$config['junk_mbox'] = 'Spam';
$config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam', 'Trash');

What's wrong?

Offline ABerglund

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 673
Re: Spam folder is always as Junk folder
« Reply #1 on: October 29, 2014, 11:10:57 AM »
Try this:

Code: [Select]
// Disable localization of the default folder names listed above
$config['show_real_foldernames'] = true;
Arne Berglund
SysAdmin, Internet Services
Lane Education Service District
Eugene, OR, USA

Offline Helios

  • Newbie
  • *
  • Posts: 3
Re: Spam folder is always as Junk folder
« Reply #2 on: October 30, 2014, 03:26:15 AM »
Try this:

Code: [Select]
// Disable localization of the default folder names listed above
$config['show_real_foldernames'] = true;

Thanks. It's helped.