Page 1 of 1
New Vesta Update - Problem Reading Emails
Posted: Thu Dec 15, 2016 5:25 pm
by BigBoss
Hey everyone!
So after doing yum update on my server, I noticed that my default iOS email client was failing to get emails from my server. I tried investigating and noticed the Mail option had some new settings. I had previously need using domain hostname as my hostname and in the new version, I select that (not sure if it saves or not although it does say it successfully saved) and click save. But my problem still persists. I've also tried changing passwords but no result.
Does anyone else have the same issue? Or knows a way to fix this?
Thank you for your time!
Re: New Vesta Update - Problem Reading Emails
Posted: Thu Dec 15, 2016 7:27 pm
by loderx
Re: New Vesta Update - Problem Reading Emails
Posted: Fri Dec 16, 2016 1:30 am
by BigBoss
Hello,
Thank you for your reply.
So I added that line in my /etc/dovecot/conf.d/15-mailboxes.conf like this:
Code: Select all
##
## Mailbox definitions
##
inbox = yes
# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
namespace inbox {
#mailbox name {
# auto=create will automatically create this mailbox.
# auto=subscribe will both create and subscribe to the mailbox.
#auto = no
# Space separated list of IMAP SPECIAL-USE attributes as specified by
# RFC 6154: \All \Archive \Drafts \Flagged \Junk \Sent \Trash
#special_use =
#}
# These mailboxes are widely used and could perhaps be created automatically:
mailbox Drafts {
special_use = \Drafts
}
mailbox Junk {
special_use = \Junk
}
mailbox Trash {
special_use = \Trash
}
# For \Sent mailboxes there are two widely used names. We'll mark both of
# them as \Sent. User typically deletes one of them if duplicates are created.
mailbox Sent {
special_use = \Sent
}
mailbox "Sent Messages" {
special_use = \Sent
}
# If you have a virtual "All messages" mailbox:
#mailbox virtual/All {
# special_use = \All
#}
# If you have a virtual "Flagged" mailbox:
#mailbox virtual/Flagged {
# special_use = \Flagged
#}
}
And systemctl restart dovecot. But my iOS device still says failed to connect to both my domain hostname and server hostname. Via IMAP.
Is there anything I'm doing wrong?
I am able to send emails from my server. I am just not able to read/send emails from my iOS client.
Re: New Vesta Update - Problem Reading Emails
Posted: Fri Dec 16, 2016 3:22 am
by SS88
Place it AFTER
namespace inbox {
Re: New Vesta Update - Problem Reading Emails
Posted: Fri Dec 16, 2016 9:50 pm
by BigBoss
SS88 wrote:Place it AFTER
namespace inbox {
Thank you! That worked!!