On Friday, March 15, 2013 5:11:50 AM UTC-7, ocagdas wrote: > > Hi, > > Below settings are extracted from my trac.ini file (mail settings under > notification are modified for obvious reasons). With these, I don't get the > 'Forgot Password' link either at top right or below login credentials on > the login screen. Can anyone spot any obvious mistake? > > Please also bare in mind that I want to keep the user registration by > anonymous users disabled. So, any suggested solution should comply with > this too. > > Kind regards, > > O. > > [account-manager] > account_changes_notify_addresses = > allow_delete_account = false > force_passwd_change = true > htpasswd_file = /var/tracprojects/.htpasswd > htpasswd_hash_type = md5 > password_store = HtPasswdStore > persistent_sessions = false > reset_password = true > verify_email = true > > [components] > acct_mgr.admin.accountmanageradminpanel = enabled > acct_mgr.api.* = enabled > acct_mgr.db.sessionstore = disabled > acct_mgr.guard = enabled > acct_mgr.htfile.htdigeststore = disabled > acct_mgr.htfile.htpasswdstore = enabled > acct_mgr.http.* = disabled > acct_mgr.notification.* = enabled > acct_mgr.notification.accountchangelistener = enabled > acct_mgr.pwhash.* = disabled > #acct_mgr.register.* = disabled > #acct_mgr.register.RegistrationModule = enabled > acct_mgr.register.EmailVerificationModule = enabled > acct_mgr.svnserve.svnservepasswordstore = disabled > acct_mgr.web_ui.* = enabled > acct_mgr.web_ui.accountmodule = enabled > acct_mgr.web_ui.loginmodule = enabled > #acct_mgr.web_ui.registrationmodule = disabled > acct_mgr.web_ui.resetpwstore = enabled > cct_mgr.admin.* = enabled > trac.web.auth.loginmodule = disabled > > [notification] > admit_domains = > always_notify_owner = true > always_notify_reporter = true > always_notify_updater = true > ambiguous_char_width = single > email_sender = SmtpEmailSender > ignore_domains = > mime_encoding = base64 > sendmail_path = sendmail > smtp_always_bcc = > smtp_always_cc = > smtp_default_domain = > smtp_enabled = true > smtp_from = my_trac_mail > smtp_from_name = "" > smtp_password = pwdabc > smtp_port = 587 > smtp_replyto = noreply_my_trac_mail > smtp_server = smtp.localhost > smtp_subject_prefix = __default__ > smtp_user = gsomanager > ticket_subject_template = $prefix #$ticket.id: $summary > use_public_cc = false > use_short_addr = false > use_tls = true > >
First, make sure you are running 0.4.3 of AccountManager. I think that the "Forgot Password" link will appear on the login page when LoginModule is enabled, rather than displaying on the metanav: http://trac-hacks.org/ticket/8697 It looks like you need to enabled one of the acct_mgr.pwhash methods, either HtDigestHashMethod or HtPasswdHashMethod: http://trac-hacks.org/wiki/CookBook/AccountManagerPluginConfiguration#Advancedconfigurations -- 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 http://groups.google.com/group/trac-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
