• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved After Migration Gmail Android App can't see SPAM folder

ManuelGDot

Basic Pleskian
Hi there,

I needed migrate a whole server via Plesk Migrator. Now the issue arouse that the GMail Android App no longer can see the SPAM folder. It's there in webmail or Thunderbird, it can be accessed just fine. Just no mobile client can see or access it.

BTW: Is there an option in GMail app to select which IMAP folders to subscribe to? I can't seem to find anything about that.

Anyway, it worked fine before the migration and the SPAM folder exists. Why can't we access it via Android, any clues?

Thanks.
 
We just realized it's the same issue for Draft and some other folders. Also manually removing and re-adding the account doesn't fix the issue. Logs show nothing,
 
Found the solution myself. This might be important for others, the issue seems common while solutions are rare.

Old server: Ubuntu 16.04
New server: Ubuntu 18.04

Both running Dovecot for IMAP. When comparing dovecot.conf I realized the old server had a much shorter "namespace inbox" section.

Old (working)
Code:
namespace inbox {
  separator = .
  prefix = INBOX.
  inbox = yes
}

New (not-working)
Code:
namespace inbox {
  separator = .
  prefix = INBOX.
  inbox = yes
 

   mailbox Sent {
     auto = subscribe # autocreate and autosubscribe the Sent mailbox
     special_use = \Sent
  }
   mailbox Spam {
  [...]
}

Replacing the new namespace section with the old one did the trick. Removing all mailbox / special use folders had Outlook, Gmail etc. seeing and using the folders again.
Weird enough in a lot of solutions it's proposed to do it other way round, to ADD the mailbox folders to dovecot.conf. There's also a Plesk article claiming that as solution.
 
Back
Top