Skip to content
This repository has been archived by the owner on Mar 28, 2021. It is now read-only.

IMAP server configuration #14

Closed
wmantly opened this issue Jan 22, 2017 · 4 comments
Closed

IMAP server configuration #14

wmantly opened this issue Jan 22, 2017 · 4 comments

Comments

@wmantly
Copy link

wmantly commented Jan 22, 2017

I am trying to set this project up on Ubuntu 16.04 container. I am running into some issues setting up the IMAP server. If i can get some guidance on how and what IMAP server you or others who have set this up with, that would be great.

What OS do you have this set up on?
What IMAP server do you use?
What configuration does the IMAP server have?

@synox
Copy link
Owner

synox commented Jan 24, 2017

It should work on any standard imap server. In Production I'm using a simple webhosters imap server.

For testing I used ubuntu with dovecot:

  •    sudo mkdir /home/vagrant/Maildir
    
  •    sudo chown -R vagrant:vagrant /home/vagrant/Maildir
    
  •    sudo chmod a+rw /home/vagrant/Maildir
    
  •    echo 'Installing Dovecot'
    
  •    sudo apt-get -qq -y install dovecot-imapd
    
  •    sudo touch /etc/dovecot/local.conf
    
  •    sudo chmod go+rw /etc/dovecot/local.conf
    
  •    echo 'mail_location = maildir:/home/vagrant/Maildir' >> /etc/dovecot/local.conf
    
  •    echo 'disable_plaintext_auth = no' >> /etc/dovecot/local.conf
    
  •    echo 'mail_max_userip_connections = 10000' >> /etc/dovecot/local.conf
    
  •    sudo restart dovecot
    

@synox
Copy link
Owner

synox commented Jan 24, 2017

see also #3 and #9
let me know if it works.

@synox
Copy link
Owner

synox commented Jan 27, 2017

did it work for you?

@synox
Copy link
Owner

synox commented Jan 31, 2017

You should find all the flags on http://php.net/manual/en/function.imap-open.php

example for gmail: http://stackoverflow.com/a/32224399/79461

@synox synox closed this as completed Jan 31, 2017
@synox synox changed the title IMAP sever configuration IMAP server configuration Mar 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants