I did finally find the answer. In our case it was Postfix that was rejecting the e-mail because it didn’t recognize the user “postuser+info” or whatever.
To solve this, I created a file in /etc/postfix named local_recipients_regexp with this regular expression: /^[email protected]/i OK and added this file to the local_recipient_maps in Postfix. See below:
postconf local_recipient_maps
local_recipient_maps = proxy:unix:passwd.byname regexp:/etc/postfix/local_recipients_regexp $alias_maps
This tells postfix that addresses with a + in them can be accepted. Once Postfix accepted the e-mails, they were delivered to the shared folders correctly. Note that I had to also set postuser in /etc/imapd.conf.
Comments are closed