Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

List and describe new manager methods, Struts actions, JSP pages, macros, etc.

  • New runtime properties with these defaults:
    • user.account.activation.enabled=true
    • user.account.activation.code.length=128
    • user.account.activation.code.generation.retry=3false
    • user.account.activation.mail.from=activate@localhost
    Code in UserNewAction.java to send activation email
  • New field in UserData object and corresponding rolleruser table:
    Code Block
    
        activationcode varchar(48)
    
  • New method un UserManager to retrieve user via activation code:
    Code Block
        public UserData getUserByActivationCode(String activationCode) throws RollerException;
    
  • New field in rolleruser table:
    Code Block
    
        activationcode varchar(255)
    

...

  • Code in UserNewAction.java to generate & store activation code and send email

Comments

Please comment on mailing list.