-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Newbie question #27
Comments
Go to your favorite mongodb client and you should see a collection called "email_delivery_results" (you can set the name of the collection in the mongodb.ini file). Query the collection and you will see the documents :) Hope this helps. |
Yes, I have checked, that is all I see: On the other hand, I don't see email_incoming_haraka collection: Config:
Last question, will I see the message content? sometimes I need the message content to check if not spam. |
The delivery looks correct. There are three hooks: delivery, send, mx. Each one is a separate document, but they all contain the same message_id. This is what Haraka returns. Regarding incoming, once you have Haraka set up and MongoDB added to the plugin section, you should see the emails in the incoming collection. Everything is stored. |
Per the code, I see that more data is stored like Subject, sender, and recipient, where can I see this? |
Here is the part of the code I saw, that is not stored:
In the code, I also saw this:
I never saw the above output, I see only this:
I don't rcpt, sender, subject etc. |
As mentioned, delivery results are based on what Haraka provides. All fields are stored in incoming emails. |
I don't see that fields... subject etc are not there. |
Can you tell me where that part is saved and why is in the code?
|
This function does not store, and I need this function badly: Any idea why? |
No, I don't know. We use the very same plugin with a million emails a day, so I can say with certainty that it works :) |
Nothing seems to go smoothly for me, not even getting fired for that function. |
I found the issue, in your code you call queue: Seems like this wrong, how that working for you?? And now working, am I missing something? I want to ask if you can store a message (in message/rfc822 format)? I saw this message:
|
Hello
I can see:
But I don't see the email delivery object, with the subject, mail from etc, should i enable this in the config?
The text was updated successfully, but these errors were encountered: