Looking for some help troubleshooting this error message. Even with debug enabled, this is the only message being printed in the logs.
We upgraded from 0.12 to 1.0.9. This message is seen when making updates/closing a ticket. There are no traceback's. Tickets are created via email2trac and web frontend. There are no entries in the maillog to show connections being made on ticket creation. There are two issues that are probably related: 1. Trac not sending any emails when ticket gets created 2. The error message - Trac[web_ui] ERROR: Failure sending notification on change to ticket #nnnn: AttributeError: 'TicketNotifyEmail' object has no attribute 'db' Here is the trac.ini. # -*- coding: utf-8 -*- [components] acct_mgr = enabled acct_mgr.admin.accountmanageradminpage = disabled acct_mgr.api.accountmanager = disabled acct_mgr.db.sessionstore = disabled acct_mgr.htfile.abstractpasswordfilestore = disabled acct_mgr.htfile.htdigeststore = disabled acct_mgr.htfile.htpasswdstore = disabled acct_mgr.http.httpauthstore = disabled acct_mgr.pwhash.htdigesthashmethod = disabled acct_mgr.pwhash.htpasswdhashmethod = disabled acct_mgr.web_ui.accountmodule = disabled acct_mgr.web_ui.loginmodule = disabled acct_mgr.web_ui.registrationmodule = disabled autocomplete.* = enabled timingandestimationplugin.* = enabled timingandestimationplugin.api.timetrackingsetupparticipant = disabled timingandestimationplugin.ticket_daemon.timetrackingticketobserver = disabled timingandestimationplugin.ticket_webui.ticketwebuiaddon = disabled timingandestimationplugin.webui.timingestimationandbillingpage = disabled tracext.git.* = disabled tracopt.mimeview.enscript.enscriptrenderer = enabled tracopt.ticket.commit_updater.committicketreferencemacro = enabled tracopt.ticket.commit_updater.committicketupdater = enabled tracopt.versioncontrol.svn.svn_fs.subversionconnector = enabled tracopt.versioncontrol.svn.svn_prop.subversionmergepropertydiffrenderer = enabled tracopt.versioncontrol.svn.svn_prop.subversionmergepropertyrenderer = enabled tracopt.versioncontrol.svn.svn_prop.subversionpropertyrenderer = enabled #trac.ticket.notification.TicketAttachmentNotifier = disabled [logging] #log_level = ERROR log_level = DEBUG log_type = syslog [notification] always_notify_owner = false always_notify_reporter = false always_notify_updater = false mime_encoding = base64 smtp_always_bcc = smtp_always_cc = [email protected] smtp_default_domain = domain.com smtp_enabled = true smtp_from = [email protected] smtp_password = smtp_port = 25 smtp_replyto = [email protected] smtp_server = localhost smtp_subject_prefix = __default__ smtp_user = use_public_cc = false use_short_addr = false use_tls = false email_sender = SmtpEmailSender [ticket] default_component = General default_milestone = default_priority = standard default_type = todo default_version = n/a restrict_owner = false max_summary_size = 500000 max_description_size = 2000000 restrict_owner = true [ticket-workflow] accept = new -> assigned accept.operations = set_owner_to_self accept.permissions = TICKET_MODIFY leave = * -> * leave.default = 1 leave.operations = leave_status reassign = new,assigned,reopened -> new reassign.operations = set_owner reassign.permissions = TICKET_MODIFY reopen = closed -> reopened reopen.operations = del_resolution reopen.permissions = TICKET_CREATE resolve = new,assigned,reopened -> closed resolve.operations = set_resolution resolve.permissions = TICKET_MODIFY [timeline] changeset_long_messages = false changeset_show_files = 0 default_daysback = 30 ticket_show_details = false [trac] authz_file = authz_module_name = base_url = https://trac/ cached_repository = false check_auth_ip = true database = mysql://root:password@ip default_charset = iso-8859-15 default_handler = WikiModule htdocs_location = ignore_auth_case = false mainnav = wiki,timeline,browser,tickets,newticket,search metanav = login,logout,settings,help,about permission_store = DefaultPermissionStore #permission_policies = DefaultPermissionPolicy persistent_cache = false repository_type = svn timeout = 20 Appreciate any insight. -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
