mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 19:59:12 +00:00
support ticket fix
This commit is contained in:
@@ -87,5 +87,5 @@ def update_feed(controller, method=None):
|
|||||||
doc = controller.doc
|
doc = controller.doc
|
||||||
if method in ['on_update', 'on_submit']:
|
if method in ['on_update', 'on_submit']:
|
||||||
subject, color = feed_dict.get(doc.doctype, [None, None])
|
subject, color = feed_dict.get(doc.doctype, [None, None])
|
||||||
if subject:
|
if subject:
|
||||||
make_feed('', doc.doctype, doc.name, doc.owner, subject % doc.fields, color)
|
make_feed('', doc.doctype, doc.name, doc.owner, subject % doc.fields, color)
|
||||||
|
|||||||
@@ -112,11 +112,7 @@ class SupportMailbox(POP3Mailbox):
|
|||||||
except:
|
except:
|
||||||
d.description = 'Unable to extract message'
|
d.description = 'Unable to extract message'
|
||||||
d.save(1)
|
d.save(1)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# update feed
|
|
||||||
update_feed(d, 'on_update')
|
|
||||||
|
|
||||||
# send auto reply
|
# send auto reply
|
||||||
if cint(self.email_settings.send_autoreply):
|
if cint(self.email_settings.send_autoreply):
|
||||||
if "mailer-daemon" not in d.raised_by.lower():
|
if "mailer-daemon" not in d.raised_by.lower():
|
||||||
|
|||||||
Reference in New Issue
Block a user