mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-29 18:04:46 +00:00
email receive bugfix
This commit is contained in:
@@ -21,8 +21,8 @@ from webnotes.utils.email_lib.receive import POP3Mailbox
|
||||
from core.doctype.communication.communication import make
|
||||
|
||||
class JobsMailbox(POP3Mailbox):
|
||||
def setup(self):
|
||||
self.settings = webnotes.doc("Jobs Email Settings", "Jobs Email Settings")
|
||||
def setup(self, args=None):
|
||||
self.settings = args or webnotes.doc("Jobs Email Settings", "Jobs Email Settings")
|
||||
|
||||
def check_mails(self):
|
||||
return webnotes.conn.sql("select user from tabSessions where \
|
||||
|
||||
Reference in New Issue
Block a user