mirror of
https://github.com/anonaddy/anonaddy.git
synced 2026-04-25 06:05:55 +03:00
[GH-ISSUE #48] Self-Hosted | Not working with incoming emails. #93
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/anonaddy#93
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tommyvange on GitHub (Jun 4, 2020).
Original GitHub issue: https://github.com/anonaddy/anonaddy/issues/48
I recently installed the self-hosted version on my server but I cant for the life of me get incoming emails to work. It can send emails just fine (verification and password reset), but it doesn't recognize incoming emails.
The emails are not bouncing either, they are just not being handled by anonaddy.
Any ideas as to what error logs I can check or configs I can dubblecheck?
@willbrowningme commented on GitHub (Jun 4, 2020):
Have you checked /var/log/mail.log to see what happens when the email arrives at your server?
Have you made sure that your /etc/postfix/master.cf is correct and is set to pipe incoming emails to your web application?
@tommyvange commented on GitHub (Jun 4, 2020):
Here is the error:
I have redacted personal details like domains, emails and IP-addresses.
From what I can see it looks like gmail is bouncing the forwarded emails, would this also cause it to not show up in the statistics on the dashboard?
More importantly, do you have any idea how to fix it? I really don't understand the article google linked.
@willbrowningme commented on GitHub (Jun 4, 2020):
The error looks like the issue is that you do not have the mailparse php module installed.
Please try running
php -mfrom the server and see if the mailparse module is shown.@tommyvange commented on GitHub (Jun 4, 2020):
That was it, thank you so much!
For anyone else running into the same issue, you can install mailparse by using to following command:
sudo apt-get install php-mailparse