在 Django 中寻找 Github 风格的私人消息系统
我看过各种 django 私人消息系统,但没有看到任何实现 github 风格消息的系统。
在 gitHub 上,当有人向您发送消息时,您会通过电子邮件收到完整消息。 您可以直接回复电子邮件(回复到标记化的电子邮件地址,对于发件人-收件人线程三人组来说是唯一的),因此它会隐藏发件人和收件人的电子邮件地址,跟踪/复制 GitHub 站点收件箱中的所有交换,并且不会要求收件人或发件人访问 GitHub 进行回复。
这是很棒的用户体验,我很好奇是否有人在 Django 中实现了它。
谢谢,
I've looked at various django private message systems but haven't seen anything that has implemented github-style message.
On gitHub, when someone sends you a message, you receive the full message by email.
You can reply directly to the email (to a tokenized email adress, unique to the sender-recipient-thread trio), so it keeps both sender and recipient email address hidden, track/copy all exchange in the GitHub site inbox and doesn't require recipient or sender to visit GitHub to reply.
That's great UX and I was curious to know if someone had implemented it in Django.
thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个可重用的应用程序会很棒:)
这里的问题是该实现不是一个纯粹的 django 解决方案,并且必须与邮件服务器和 cron 作业集成。
我知道 jutdahelpdesk 可以从邮件消息创建票证 https://github.com/justquick/jutdahelpdesk
检查 5自述文件中的初始配置部分。
另外,像 Lamson (http://lamsonproject.org/) 这样的东西也可以添加到其中,以使其更加Python化。
如果您继续创建此类应用程序,请与我联系:)
A reusable app for this will be great :)
The problem here is that the implementation is not a pure django solution, and must be integrated with a mail server and cron jobs.
I know jutdahelpdesk can create tickets from mail messages https://github.com/justquick/jutdahelpdesk
Check the 5. Initial Configuration section in the readme file.
Also, something like Lamson (http://lamsonproject.org/) could be added to the mix to make it more pythonic.
If you go ahead creating this kind of app get in touch with me :)