mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-26 17:36:01 +03:00
[GH-ISSUE #1856] No sent mail in sentbox(smtp) #1454
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#1454
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 @mem0rz on GitHub (Mar 18, 2020).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/1856
Impacted versions
Steps to reproduce
use smtp to sent
Current behavior
Sending mail using smtp protocol but there is no sent mail in the sentbox.
Expected behavior
The server can automatically save the emails that have been sent using the smtp protocol so that they we can be easily queried in webmail.
Video/Screenshot link (optional)
@tonioo commented on GitHub (Mar 18, 2020):
@cybmp3 Can you please provide more info? (logs, screenshots, ...)
@Toniob commented on GitHub (Mar 18, 2020):
@cybmp3 From your message, I understand that you're not using a mail client to send your emails. Maybe I'm wrong, tell me. If those are emails sent using a script or something automated, it can't be done. SMTP is a protocol made to send email, that's all. It doesn't store them. For that, you need IMAP (let's forget about POP).
@mem0rz commented on GitHub (Mar 18, 2020):
Such as wordpress send email via smtp.
@Toniob commented on GitHub (Mar 18, 2020):
So that's something to see with wordpress, for them to support IMAP storage when emails are sent. Not an issue with Modoboa.
@mem0rz commented on GitHub (Mar 18, 2020):
correct.
But if wordpress uses gmail's smtp protocol to send mail, you can find the sent mail in the sentbox of gmail.
@Toniob commented on GitHub (Mar 18, 2020):
Gmail is everything but standard SMTP et IMAP.
We shouldn't store email sent via SMTP. If we do this, when you'll send emails with your mail client, you'll have duplicates in your sendbox : one mail stored via your mail client, another one with a trick on SMTP.
@mem0rz commented on GitHub (Mar 18, 2020):
Thank you.