Unable Edit Timing for Email Pull

Hi @Prasath_Sekar:

This behavior is editable on your hooks.py file.

scheduler_events = {
	"cron": {
		"0/15 * * * *": [
			"frappe.oauth.delete_oauth2_data",
			"frappe.website.doctype.web_page.web_page.check_publish_status",
			"frappe.twofactor.delete_all_barcodes_for_users",
		],
		"0/10 * * * *": [
			"frappe.email.doctype.email_account.email_account.pull",
		],
	},
	"all": [
		"frappe.email.queue.flush",

Hope this helps.