My server only handles IMAP. I have php-imap installed.
How do I configure config.php or config_extension.php to handle imap for bounces.
Additional Info:
I enabled pop3 and set port to 995 ssl in dovecot
I can telnet localhost to 995 and 993
I have tried (in both config.php and config_extended.php) :
$bounce_protocol = ‘pop’;
$bounce_protocol = ‘mbox’;
I tried (since all email sits in /home/[user]/Maildir a link from /var/spool/mail/xxx to the Maildir (didn’t work).
I’ve changed the mailbox command from “/home/[User]” to “/home/[User]/Maildir” to [User] to no avail.
$bounce_mailbox_port = ‘995/pop3/ssl’;
$bounce_mailbox_port = ‘995/pop3/tls’;
$bounce_mailbox_port = ‘995/imap/ssl’;
$bounce_mailbox_port = ‘995/imap/tls’;
I don’t show a connection to dovecot being made.
PHP shows imap implemented and I also loaded php-imap module.
Any ideas?
Thanks